DeepSeek Harness plugin

dsh-cc-ecosystem

Load Claude Code .claude/agents (identity-anchored subagents: frontmatter + system-prompt body) into DSH delegation via the persona channel.

Jump to install

Source facts

Repository
Bcy2020/dsh-cc-ecosystem
Latest update
Aug 19, 2026
Category
Tools & Capabilities
GitHub stars
4
Format
plugin
Package path
packages/cc-agents
Catalog evidence
Upstream dsh.bundle evidence
Evidence path
packages/cc-agents/package.json#dsh.bundle
Checked against
0.1.0-rc.8
Upstream check date
2026-08-20

This evidence comes from the upstream catalog. This site has not installed, run, or security-reviewed the plugin.

Install

Start with a prompt that asks an agent to review the GitHub repository and source. Switch to the command if you want to install it yourself.

Copy this prompt into DSH, Codex, or another agent and ask it to review the GitHub repository and source first.

Do not install or run any commands yet. Read this plugin's GitHub repository, README, and relevant source code. Then answer the questions below clearly and directly so I can decide whether it fits my needs:

1. What is this plugin, and what problem does it solve?
2. Who is it for, and what are its typical use cases?
3. How is it used after installation? Include one minimal example.
4. What known limitations or privacy, security, compatibility, or maintenance risks does it have?
5. Give a clear recommendation: recommend, conditionally recommend, or do not recommend, with reasons.

Distinguish statements documented by the repository, inferences from source code, and unknowns. If evidence is insufficient, say so explicitly. Do not guess or simply repeat the README.

GitHub: https://github.com/Bcy2020/dsh-cc-ecosystem/tree/HEAD/packages/cc-agents
Plugin: dsh-cc-ecosystem
Author: Bcy2020

Check the source files

Read the README and other files from this plugin directory before installing.

File explorer2 files
README.mdSource · read only

dsh-cc-agents

Load Claude Code "first kind" agents (.claude/agents/*.md) into DSH as delegatable subagents with identity anchoring.

What it does

CC agents are identity-anchored subagents: a frontmatter block (name / description / tools / disallowedTools / model / skills / background / initialPrompt …) plus a Markdown body that is the agent's system prompt. DSH's subagent seam has no pre-registered agent directory, so this adapter provides both halves:

1. Catalog injection — at every session start, a user-role message lists the available agents (name: description), reproducing CC's @-mention semantics: the model sees which agents exist and when to delegate. 2. cc_agent delegation tool — the model calls cc_agent(agent, description, prompt); the adapter: - looks the agent up in the loaded IR catalog, - starts a subagent via ctx.subagents.start(provider, …) with persona = the agent body (DSH's native identity channel), - scopes the child's tools with toolFilter from disallowedTools (applied first) then tools (CC semantics; buckets like Read/Bash expand to DSH tool names, mcp__… names pass through), - preloads skills (frontmatter skill names → full skill bodies), - maps modelagentOptions.model, background → background job, - maps initialPrompt → prompt prefix.

Config

keydefaultmeaning
providerspawnctx.subagents provider to delegate on (spawn / fork)
toolNamecc_agentmodel-facing tool name
injectCatalogtrueinject agent catalog into session start
enableRunInBackgroundtrueexpose run_in_background
maxDepth3absolute delegation-depth cap
enableGlobaltrueinclude global ~/.claude/agents
globalClaudeDir~/.claudeoverride global dir

Scope precedence

Project .claude/agents/ beats global ~/.claude/agents/ on name clashes (fail loud — a warning is logged). Plugin agents arrive with the plugin source (M4).

Classification (from dsh-cc-loader)

  • DIRECT — delegatable.
  • ADAPTED — delegatable with degraded fields (memory, unknown fields).
  • UNSUPPORTED — fields DSH cannot honor (hooks / mcpServers /

permissionMode — CC itself forbids these on plugin agents); the agent still delegates without them.

  • BLOCKEDisolation: worktree; never offered for delegation.

Install

dsh plugin --profile <p> add dsh-cc-agents

Dev checkout (hot user layer, file:/// required on Windows):

- insert:
    - id: cc-agents
      name: 'file:///C:/Users/.../packages/cc-agents/src/index.js'
      config: { provider: spawn }

Requirements

  • @deepseek-ai/dsh-subagent with an in-process provider (spawn) registered.
  • @deepseek-ai/dsh-jobs + @deepseek-ai/dsh-tool-jobs only for background

runs.

License

MIT. Shared parse layer is dsh-cc-loader (MIT, part of this repo).