DSH HUB
首页插件商店插件包社区排行榜资源发布指南
插件源码
返回插件目录

greatwhitesharklab /

greatwhitesharklab/dsh-plugin-subagent-manager

仅 Topic 仓库

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 社区评分0 已确认安装
查看 GitHub
README来源: 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

暂无评分

需要先验证清单

Commit bb55c2124a81

社区评论

还没有评论,来写第一条。

DSH HUB

社区维护的 DSH 插件索引。不是 GitHub 或 DeepSeek AI 的官方产品。

社区资源API关于