DeepSeek Harness Plugin Hub

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

探索

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

社区

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

相关链接

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

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

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

@jeremy9682/dsh-skill-pack

Skill Pack

适用于 DeepSeek Harness 的一组可共享的 12 个工作流技能

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

npx -y @deepseek-ai/dsh plugin --profile web add @jeremy9682/dsh-skill-pack@0.2.0
README兼容性版本

兼容性与来源证明

Skill Pack 以 @jeremy9682/dsh-skill-pack 发布,当前版本为 0.2.0。Plugin Hub 会校验它的 manifest,并保存精确安装来源,便于复现安装结果。

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

版本

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

相关插件

正在加载相关插件…

最新版
0.2.0
DSH
*
HMR
重启进程
Tree shaking
未声明可安全裁剪
解包体积
118.1 kB
文件数
26
Surface
any
许可证
MIT
发布源
npm
GitHub
★ 4
周下载
80
最近提交
2026/8/19
查看源码 ↗项目主页 ↗
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-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.