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.

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

@andrepontesmelo/dsh-suite

Suite

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

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

npx -y @deepseek-ai/dsh plugin --profile web add github:andrepontesmelo/dsh-suite#8ecd13203b3ad6bc336541a6fe3060c85a9a0fc9
READMECompatibilityVersions

Compatibility and provenance

Suite is published as @andrepontesmelo/dsh-suite and currently resolves to version 0.1.1. The Hub verifies its manifest and preserves the exact installation source for reproducible installs.

DSH compatibility
*
Runtime surfaces
any
Release source
github
Registry updated
9/12/2026

Versions

0.1.1stable
9/12/2026

Related plugins

Loading related plugins…

Latest
0.1.1
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
9/11/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 productivity-workflow.

Acp App@deepseek-ai/dsh-acp-appThe dsh ACP profile bundle: automation-only JSON-RPC stdio and process lifecycle over dsh-baseClient Ui Task Board@linxin666/dsh-client-ui-task-boardHost-authoritative task board for the DSH Web GUI with real session execution, Host cron scheduling, and optional cross-platform idle-sleep protection; mounted without DSH source changes.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: multi-agent team collaboration (captain, members, tasks with dependencies, messaging) driven by natural language, with a tree monitor in the 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