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.

Skill Pack — DSH Plugin for DeepSeek Harness
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins

@jeremy9682/dsh-skill-pack

Skill Pack

A shareable set of 12 workflow skills for the DeepSeek Harness

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

npx -y @deepseek-ai/dsh plugin --profile web add @jeremy9682/dsh-skill-pack@0.2.0
READMECompatibilityVersions

Compatibility and provenance

Skill Pack is published as @jeremy9682/dsh-skill-pack and currently resolves to version 0.2.0. The Hub verifies its manifest and preserves the exact installation source for reproducible installs.

DSH compatibility
*
Runtime surfaces
any
Release source
npm
Registry updated
9/20/2026

Versions

0.2.0stable
8/14/2026
0.1.0stable
8/14/2026

Related plugins

Loading related plugins…

Latest
0.2.0
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
118.1 kB
Files
26
Surface
any
License
MIT
Source
npm
GitHub
★ 4
Weekly downloads
80
Last push
8/19/2026
View source ↗Project homepage ↗
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-skill-pack

A shareable set of 12 workflow skills for the DeepSeek Harness (dsh). One plugin, one FileSystemSkillProvider, twelve skills.

The pack is a single-package dsh plugin (the same shape as a Hermes / DSH community bundle). Installing it registers a filesystem skill provider that points at the skills/ directory bundled inside this package — added alongside your own project and user skills, never replacing them.

Requirements

  • dsh >= 0.1.0-rc.6

This package declares no @deepseek-ai/* dependency. Like other DSH bundles, the official packages (@deepseek-ai/dsh-skill-filesystem, etc.) are injected by your profile's closure at boot time, so the plugin resolves them from the profile's own node_modules.

The 12 skills

SkillWhat it does
dsh-mode-routingDSH session mode (agent preset) selection and routing — the four built-in presets (standard / code / minimal / cordis) plus user-built presets.
handoffCompact the current conversation into a handoff document for another agent to pick up.
triageMove issues and external PRs through a triage state machine — categorise, verify, grill, and write agent-ready briefs.
to-specTurn the current conversation into a spec and publish it to the project issue tracker.
to-ticketsBreak a plan, spec, or conversation into tracer-bullet tickets, each declaring its blocking edges.
wayfinderPlan a huge chunk of work as a shared map of decision tickets on the issue tracker.
wait-whatStop — that last message did not land; re-pitch it.
teachTeach the user a new skill or concept, within the workspace.
ask-mattAsk which skill or flow fits your situation — a router over the shared skills set plus the user's own skills.
overnight-execution⚠️ Requires prior approval. Unattended overnight coding while you sleep or step away for hours.
full-throttleExplicit escalation protocol ($full-throttle only): deeper reasoning, multi-agent/background parallelism with explicit gears, optional cross-family blind review.
skill-advisorProactively suggest high-cost or permissioned skills (overnight runs, multi-session plans, shipping gates) with one-sentence reasons — but never execute without explicit approval.

Install

Choose one of the three install forms. Replace web with whichever profile you use (web, headless, tui, acp, …).

npm registry

dsh plugin --profile web add @jeremy9682/dsh-skill-pack

Git

dsh plugin --profile web add github:jeremy9682/dsh-skill-pack

Local path (file:)

dsh plugin --profile web add file:/path/to/dsh-skill-pack

dsh plugin forwards its arguments to pnpm inside the profile directory and then reconciles the profile's bundle list, so any spec pnpm add accepts works here.

Verify

dsh --profile web --dump-config | grep -A 2 dsh-skill-pack

Uninstall

dsh plugin --profile web remove @jeremy9682/dsh-skill-pack

dsh plugin forwards to pnpm, so remove is pnpm remove (alias pnpm rm): it drops the dependency from the profile's package.json and node_modules, and dsh then removes the bundle from the profile's layer list. If your dsh build lacks remove forwarding, delete the dependency from the profile's package.json and re-run dsh plugin --profile web install.

How it works

index.mjs is a Cordis function plugin (inject: ['skills']). Its apply registers a FileSystemSkillProvider over this package's skills/ directory:

ctx.skills.registerProvider((control) =>
  new FileSystemSkillProvider(ctx, control, {
    providerName: 'dsh-skill-pack',
    customSkillDirs: [skillDir],
  }),
)

Because includeDefaultRoots stays at its default (true), the shared skills join the provider's discovery ranks as a custom root (rank 300) — below project roots and above user roots — so your own skills keep working alongside them.

License

MIT — see LICENSE.