DSH HUB
HomePlugin StorePlugin PacksCommunityRankingsResourcesPublish Guide
Plugin source
Back to catalog

greatwhitesharklab /

dsh-plugin-subagent-manager

Topic repository only

Model-first subagent management for the DeepSeek Harness: list the model catalog, spawn subagents with a pinned provider/model, and enumerate session subagents.

★ 1 Stars0 Forks0 IssuesN/A Community rating0 Confirmed installs
View on GitHub
READMESource: main@bb55c212

dsh-plugin-subagent-manager

English · 中文

Subagent routing convention for the DeepSeek Harness, as a profile-mounted static plugin. Two focused contributions:

  1. Routing prompt — a systemPrompt.context section telling every session: analysis and implementation are delegated to subagents on the cheap/fast worker model; design decisions and final acceptance stay with the main model. Without it, the native tools' generic descriptions leave this discipline to chance.
  2. subagent_run — the only delegation tool that can pin a provider/model per call (the native subagent / subagent_fork expose no model parameters). Defaults to the worker route; explicit provider/model overrides it per task (e.g. send one job to glm-5.3 or deepseek-v4-pro).

Deliberately NOT included (covered elsewhere): the default model routes for the native tools live in the profile's cordis.patch.yml (tool-subagent / tool-subagent-fork rows); listing children is covered by the native list_agents.

⚙️ Configuration

Edit CONFIG at the top of src/index.js and restart dsh web:

const CONFIG = {
  workerProvider: 'deepseek-official',   // cheap/fast route for analysis + implementation
  workerModel: 'deepseek-v4-flash',
  mainProvider: 'deepseek-official',     // fallback label; live value follows agentDefaultModel
  mainModel: 'deepseek-v4-pro',
}

🚀 Install (profile-mounted, loads on every boot)

  1. link: dependency in ~/.dsh/profiles/web/package.json, then pnpm install there.
  2. Loader row in the profile's cordis.patch.yml:
    - insert:
        - id: subagent-manager
          name: dsh-plugin-subagent-manager
    
  3. Restart dsh web. Verify with dsh web --dump-config.

🔒 Notes

  • Optional services (subagents, agentDefaultModel, systemPrompt) are read lazily at use time — boot ordering can never strand them as undefined.
  • UI strings are in Simplified Chinese; the logic is locale-agnostic.

📦 Files

src/index.js    Static host plugin — routing prompt + subagent_run (per-call model override)

License

MIT

—/ 5

No ratings yet

Manifest verification required

Commit bb55c2124a81

Community comments

No comments yet. Be the first to write one.

DSH HUB

A community index for DSH plugins. Not an official GitHub or DeepSeek AI product.

CommunityResourcesAPIAbout