READMESource: main@bb55c212
dsh-plugin-subagent-manager
English · 中文
Subagent routing convention for the DeepSeek Harness, as a profile-mounted static plugin. Two focused contributions:
- Routing prompt — a
systemPrompt.contextsection 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. subagent_run— the only delegation tool that can pin a provider/model per call (the nativesubagent/subagent_forkexpose no model parameters). Defaults to the worker route; explicitprovider/modeloverrides it per task (e.g. send one job toglm-5.3ordeepseek-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)
link:dependency in~/.dsh/profiles/web/package.json, thenpnpm installthere.- Loader row in the profile's
cordis.patch.yml:- insert: - id: subagent-manager name: dsh-plugin-subagent-manager - Restart
dsh web. Verify withdsh web --dump-config.
🔒 Notes
- Optional services (
subagents,agentDefaultModel,systemPrompt) are read lazily at use time — boot ordering can never strand them asundefined. - 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)
No comments yet. Be the first to write one.