DeepSeek Harness Plugin Hub

发布与管理完整 Harness Profiles,发现适合你的插件。

探索

插件目录环境预设文档中心动态

社区

发布插件联系我们报告问题

相关链接

Plugin Hub GitHubDeepSeek Harness 官方项目系统状态隐私说明
© 2026 DeepSeek Harness Plugin HubPowered byPaxTech

独立、非官方社区项目,与 DeepSeek 官方无隶属、授权或背书关系。

Solo Agent — DeepSeek Harness 插件(DSH Plugin)
DeepSeek Harness Plugin Hub
ProfilesPlugins分类动态文档登录管理 Profiles
ProfilesPlugins分类动态文档登录
← Plugins
S

@the-heart-fickle/dsh-solo-agent

Solo Agent

注入包含 explore/editor/verify/general 子代理及仅限子代理的最小锚定机制的单人编排器预设的 DSH 插件。

插件会安装到这里;不确定时保持 web。

npx -y @deepseek-ai/dsh plugin --profile web add github:TheHeartFickle/dsh-solo-agent#88c778a453f048e5d7621a6961cc396f4c609573
README兼容性版本

兼容性与来源证明

Solo Agent 以 @the-heart-fickle/dsh-solo-agent 发布,当前版本为 0.1.0。Plugin Hub 会校验它的 manifest,并保存精确安装来源,便于复现安装结果。

DSH 兼容范围
*
运行环境
any
发布来源
github
Registry 更新时间
2026/8/21

版本

0.1.0stable
2026/8/21

相关插件

正在加载相关插件…

最新版
0.1.0
DSH
*
HMR
重启进程
Tree shaking
未声明可安全裁剪
解包体积
未提供
文件数
未提供
Surface
any
许可证
MIT
发布源
github
GitHub
★ 0
周下载
0
最近提交
2026/8/21
查看源码 ↗
README Badge

点击下方 Badge 复制 Markdown,粘贴到 README 即可。

这是你的 Plugin?认领权益 · 优先安全扫描

验证 package.json 声明的 GitHub 仓库,即可管理这个公开页面。认领后,Hub 会优先安排当前版本的安全扫描,并在通过后公开展示结果。

认领这个 Plugin →
报告问题

相关插件

继续浏览 agents-orchestration 分类下经过校验的插件。

Headless@deepseek-ai/dsh-headlessdsh one-shot bundle:基于 dsh-base 的直接核心 Agent/Session 运行器,不包含 Host、HTTP 或浏览器层Experimental Agent Team Web Profile@deepseek-ai/dsh-experimental-agent-team-web-profile用于 Agent Teams Remote 和 UI 插件的实验性 Web 配置层Subagent Codex@deepseek-ai/dsh-subagent-codex基于官方 app-server 协议的一次性 Codex 子代理提供程序Subagent Claude Code@deepseek-ai/dsh-subagent-claude-code基于官方 Agent SDK 的一次性 Claude Code 子代理提供方

README

dsh-solo-agent

DSH 插件:向用户 agent-presets 注入 solo preset,优化上下文占用和模型调度。

核心设计

  • Solo 主 agent 是纯编排者:
    • 模型可见目录里没有 bash / pwsh / read / write / edit / glob / grep / str_replace_editor。
    • 只保留 ask_user_question、todo_write、skill 和 4 个前台 subagent 工具。
    • shell / fs / web 工具在 preset 层挂载供子代理使用,由 solo-bootstrap.mjs 对主 agent 隐藏。
  • 闭环调度:
    1. subagent_explore 初始化一次,产出 target tests / test command / root-cause。
    2. 最多 5 轮:subagent_editor 修改 → subagent_general 跑测试并返回原始输出 → Solo 只依据原始测试输出决策。
    3. 大改动/高风险且测试通过后,subagent_verify 做对抗性验证。
  • 子代理 minimal 锚定:借鉴 anchored-standard,只对 delegationDepth > 0 的子代理生效;Solo 主 agent 不受锚定。
  • 压缩:dsh-compaction-basic + dsh-compaction-tool-result-pruner + dsh-command-compact 全开。

项目结构

dsh-solo-agent/
├── package.json                 # bundle 插件元数据 + dsh.bundle.patch
├── dsh.plugin.json              # 插件清单,contributes.presets = ["solo"]
├── cordis.patch.yml             # 挂载 dsh-solo-agent 插件行
├── lib/
│   ├── index.js                 # apply(): 写入/更新 ~/.dsh/.agent-presets/solo
│   ├── preset-renderer.js       # 生成 agent.cordis.yml / preset.yml
│   └── roles.js                 # 角色注册表(persona + toolFilter)
├── templates/
│   ├── solo-bootstrap.mjs       # 子代理 minimal 锚定 + 主 agent 目录过滤
│   ├── compaction-epoch.mjs     # 压缩后重新锚定的 epoch 跟踪
│   └── custom-bash.mjs          # Windows 下注册 bash 工具
├── scripts/
│   └── package-registry.mjs     # 生成 registry/ 本地注册表安装包
└── test/                        # node --test 测试

角色

toolName职责可见工具(toolFilter.allow)skill
subagent_explore只读研究,产出 target tests / test command / root-causeread, read_image, glob, grep, bash, web_search, web_fetch无
subagent_editor聚焦编辑,不自测read, write, edit, str_replace_editor, glob, grep, bash无
subagent_verify对抗性验证,返回 PASS/FAIL/PARTIALread, read_image, glob, grep, bash, skill有
subagent_general杂活/测试执行,返回原始输出read, write, edit, str_replace_editor, glob, grep, bash, web_search, web_fetch, skill有

角色注册表在 lib/roles.js,后续加角色只需新增一条记录。

开发

npm test
npm run package:registry