DeepSeek Harness Plugin Hub

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

探索

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

社区

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

相关链接

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

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

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

@andrepontesmelo/dsh-suite

Suite

DSH 生产力套件:适用于 DeepSeek Harness 的插件和代理技能,可通过一条命令安装。

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

npx -y @deepseek-ai/dsh plugin --profile web add github:andrepontesmelo/dsh-suite#8ecd13203b3ad6bc336541a6fe3060c85a9a0fc9
README兼容性版本

兼容性与来源证明

Suite 以 @andrepontesmelo/dsh-suite 发布,当前版本为 0.1.1。Plugin Hub 会校验它的 manifest,并保存精确安装来源,便于复现安装结果。

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

版本

0.1.1stable
2026/9/12

相关插件

正在加载相关插件…

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

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

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

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

认领这个 Plugin →
报告问题

相关插件

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

Acp App@deepseek-ai/dsh-acp-appdsh ACP 配置文件包:基于 dsh-base 的仅限自动化的 JSON-RPC stdio 和进程生命周期管理Client Ui Task Board@linxin666/dsh-client-ui-task-board面向 DSH Web GUI 的主机权威任务面板,支持实际会话执行、主机 cron 调度以及可选的跨平台空闲睡眠保护;以挂载方式提供,无需修改 DSH 源代码。Web All@linxin666/dsh-web-allDSH Web UI 全家桶聚合插件:一键安装全部功能插件(task-board / git-graph / pet / remote-web-ui / web-ui-settings / skin-center / community-plugins / compat shim)。compat 桥接层已并入本包(src/client),无需独立 compat npm 包。Agent Teams@nanmicoder/dsh-agent-teamsAgentTeams for DeepSeek Harness:通过自然语言驱动多智能体团队协作(队长、成员、具有依赖关系的任务、消息传递),并在 Web GUI 中提供树状监视器

README

dsh-suite

dsh-suite banner

The DeepSeek Harness productivity suite: self-authored plugins + agent skills for DSH, installable in one command.

What's inside

PieceTypeWhat it does
dsh-model-routerpluginVirtual model ids routed over real provider/model candidates — priority failover, round-robin rotation, sleep windows
deep-horizonpluginInjects the project's horizon (open gaps + about line) into every new session — cold-start project context shared across harnesses
strong-orchestratorskillSequential implement → review-loop orchestration with a persistent implementer
dex / dex-planskillsTask hierarchies: epics, subtasks, verification via the dex CLI
ponytail (+ audit, debt, gain, help, review)skillsLazy-senior-dev output style family: shortest working diff wins

What the one install command does — install, plugin registration, skills wired:

flowchart TD
    install["dsh plugin --profile myprofile add github:andrepontesmelo/dsh-suite"] --> pkg["package installed: cordis.patch.yml, skills/, scripts/"]
    pkg --> deps["plugin dependencies pulled: @andrepontesmelo/dsh-model-router + deep-horizon"]
    deps --> patch["bundle patch inserts three rows into the profile"]
    patch --> r1["model-router row: virtual model ids"]
    patch --> r2["deep-horizon row: cold-start project context"]
    patch --> r3["skill-suite row: dsh-skill-filesystem, customSkillDirs pointing at skills/"]
    r1 --> live["restart the harness: plugins live, 9 skills wired"]
    r2 --> live
    r3 --> live

Install

Requires a DSH profile to install into.

dsh plugin --profile <profile> add github:andrepontesmelo/dsh-suite

That single command installs this package, pulls the plugin dependencies (currently @andrepontesmelo/dsh-model-router and deep-horizon), and registers the bundle patch — which points DSH skill discovery at the nine bundled skills. Restart the harness and every suite piece is live in that profile.

[!WARNING] Installing this bundle registers nine agent skills into the target profile, and every plugin you list is real software your prompts will flow through. Routes and provider credentials stay yours — this bundle ships neither — but audit a bundle you did not write before installing it, and pin the install (tag) rather than floating on a branch.

Verify before installing:

npm test   # structural check: 9 skills present, valid names/frontmatter, bundle wiring intact — run this pre-install check first

That check confirms what the install pulls per the files list in package.json (cordis.patch.yml, skills/, scripts/, README.md, LICENSE) plus the plugin dependencies. Both dependencies are pinned to release tags (deep-horizon#v0.2.0, @andrepontesmelo/dsh-model-router#v0.2.1), so what an install pulls cannot drift between installs — pin your install of this bundle the same way (tag) rather than floating on a branch.

Useful commands once installed:

npm test                                    # re-run the structural gate any time
dsh plugin --profile <profile> list         # confirm model-router, deep-horizon, skill-suite rows

What the bundle patch inserts into your profile's composed config:

flowchart LR
    subgraph bundle["dsh-suite cordis.patch.yml (ships in the bundle)"]
        rows["insert rows:<br/>model-router<br/>deep-horizon<br/>skill-suite"]
    end
    subgraph profile["your profile config"]
        p1["model-router: virtual model ids<br/>(your routes live here, never in the bundle)"]
        p2["deep-horizon: cold-start project context"]
        p3["skill-suite: dsh-skill-filesystem with<br/>customSkillDirs pointing at the<br/>bundle's skills/ directory"]
    end
    rows --> p1
    rows --> p2
    rows --> p3

Plugin configuration (model-router routes, provider credentials) stays yours: add route rows to your profile's cordis.patch.yml.

Companion pieces

Standalone siblings that don't ride in this bundle:

  • archloop — overnight architecture-improvement loop driver
  • hkrc — Hermes Kanban blocker recovery controller

Docs

Start at the docs index:

  • Architecture — bundle wiring, patch rows, skill discovery.
  • Development — layout, the local gate, how to add a skill.

Contributing

PRs welcome — see CONTRIBUTING.md for the workflow and the local gate. Security issues: SECURITY.md (do not open a public issue).

Validate

npm test   # structural check: 9 skills present, valid names/frontmatter, bundle wiring intact

License

MIT — © 2026 André Pontes Melo