JunguangJiang/dsh-agent-lead ↗★ 0
dsh-agent-lead
DSH 带队模式插件:主 Agent 只规划派活监工,改动交给 subagent,每次派活弹窗选子模型
安装
$
npx -p @deepseek-ai/dsh dsh plugin --profile web add github:JunguangJiang/dsh-agent-lead说明文档
阅读完整 README ↗配置
在 cordis.patch.yml 的 insert 行中添加 config:
- insert:
- id: agent-lead
name: dsh-agent-lead
config:
llmProvider: hfai
models:
- id: anthropic/claude-opus-4.6
label: Opus 4.6
description: 强,贵,适合复杂实现与重构
- id: deepseek-v4-flash
label: DeepSeek-V4-Flash
description: 快,便宜,适合批量与机械改动
- id: anthropic/claude-sonnet-4
label: Sonnet 4
provider: hfai
description: 均衡选择
| 配置项 | 说明 | 默认值 |
|---|---|---|
llmProvider | 子 agent 默认 LLM 路由名 | 必填 |
models[] | { id, label?, provider?, description? } 固定候选 | 必填非空 |
includeCurrentModel | 是否把当前主模型置顶 | true |
recentCount | 「常用」段条数 | 3 |
recentWindow | 频次统计只看最近 N 条 | 50 |
toolName | 派活工具名 | assign |
commandName | 命令名 | lead |
maxDepth | 子 agent 深度上限 | 3 |
lockedTools[] | 带队模式下禁止主 Agent 的工具 | ['write','edit','str_replace_editor'] |