DeepSeek Harness Plugin Hub

Publish and manage complete Harness Profiles. Discover Plugins for your next setup.

Explore

PluginsPresetsDocsNews

Community

Publish a pluginContactReport an issue

Resources

Plugin Hub on GitHubDeepSeek HarnessSystem statusPrivacy notice
© 2026 DeepSeek Harness Plugin HubPowered byPaxTech

Independent and unofficial. Not affiliated with, authorized by, or endorsed by DeepSeek.

Solo Agent — DSH Plugin for DeepSeek Harness
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins
S

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

Solo Agent

DSH plugin that injects a solo orchestrator preset with explore/editor/verify/general subagents and subagent-only minimal anchoring.

The plugin will be installed here. Keep web if you are unsure.

npx -y @deepseek-ai/dsh plugin --profile web add github:TheHeartFickle/dsh-solo-agent#88c778a453f048e5d7621a6961cc396f4c609573
READMECompatibilityVersions

Compatibility and provenance

Solo Agent is published as @the-heart-fickle/dsh-solo-agent and currently resolves to version 0.1.0. The Hub verifies its manifest and preserves the exact installation source for reproducible installs.

DSH compatibility
*
Runtime surfaces
any
Release source
github
Registry updated
8/21/2026

Versions

0.1.0stable
8/21/2026

Related plugins

Loading related plugins…

Latest
0.1.0
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
Unavailable
Files
Unavailable
Surface
any
License
MIT
Source
github
GitHub
★ 0
Weekly downloads
0
Last push
8/21/2026
View source ↗
README badge

Click the badge to copy Markdown for your README.

Do you maintain this Plugin?Claim benefit · Priority security scan

Verify the GitHub repository declared in package.json to manage this listing. After you claim it, Hub will prioritize a security scan of the current version and publish the result when it passes.

Claim this Plugin →
Report an issue

Related plugins

More verified plugins in agents-orchestration.

Headless@deepseek-ai/dsh-headlessThe dsh one-shot bundle: a direct core Agent/Session runner over dsh-base with no Host, HTTP, or browser layerExperimental Agent Team Web Profile@deepseek-ai/dsh-experimental-agent-team-web-profileExperimental Web profile layer for Agent Teams Remote and UI pluginsSubagent Codex@deepseek-ai/dsh-subagent-codexOne-shot Codex subagent provider over the official app-server protocolSubagent Claude Code@deepseek-ai/dsh-subagent-claude-codeOne-shot Claude Code subagent provider over the official Agent SDK

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