jeremy9682/dsh-skill-pack

DeepSeek Harness 的11项可共享工作流技能:交接、分诊、规格说明、工单、路径引导、教学、模式路由、隔夜运行

Project Overview项目介绍

dsh-skill-pack is a DeepSeek Harness plugin bundling 12 workflow skills into a single FileSystemSkillProvider injected into a dsh profile, covering session-mode routing, conversation handoff, triage, spec publishing, ticket breakdown, wayfinder planning, restating, teaching, skill routing, overnight execution, full-throttle escalation, and proactive skill advising. The skills are registered as a custom root at rank 300, layered beneath project skills and above user skills, so existing setups keep working alongside the pack. It requires dsh >= 0.1.0-rc.6 and declares no @deepseek-ai/* dependencies; official packages are injected by the profile's closure at boot. Caveat: overnight-execution and full-throttle are high-cost or permissioned and require explicit approval before running.

dsh-skill-pack 是一款 DeepSeek Harness 插件,将 12 个工作流技能打包为单一 FileSystemSkillProvider 注入到 dsh profile,覆盖会话模式路由、handoff 文档压缩、triage、to-spec、to-tickets、wayfinder、wait-what、teach、ask-matt、overnight-execution、full-throttle、skill-advisor 等场景,技能以自定义根(rank 300)加载,与项目级和用户级技能并存而不覆盖。需 dsh >= 0.1.0-rc.6,且本包不声明 @deepseek-ai/* 依赖,官方包由 profile 闭包在启动时注入。注意 overnight-execution 与 full-throttle 涉及高成本或权限操作,必须经显式批准方可执行。

Or use CLI install (for developers)或使用命令行安装(适合开发者)

CLI Install命令行安装

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

jeremy9682/dsh-skill-pack 加入你的 DSH 配置(web profile)即可启用。

READMEREADME

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

Skill What it does
dsh-mode-routing DSH session mode (agent preset) selection and routing — the four built-in presets (standard / code / minimal / cordis) plus user-built presets.
handoff Compact the current conversation into a handoff document for another agent to pick up.
triage Move issues and external PRs through a triage state machine — categorise, verify, grill, and write agent-ready briefs.
to-spec Turn the current conversation into a spec and publish it to the project issue tracker.
to-tickets Break a plan, spec, or conversation into tracer-bullet tickets, each declaring its blocking edges.
wayfinder Plan a huge chunk of work as a shared map of decision tickets on the issue tracker.
wait-what Stop — that last message did not land; re-pitch it.
teach Teach the user a new skill or concept, within the workspace.
ask-matt Ask 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-throttle Explicit escalation protocol ($full-throttle only): deeper reasoning, multi-agent/background parallelism with explicit gears, optional cross-family blind review.
skill-advisor Proactively 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.

上一个 Prev ast-mcp-server 下一个 Next dsh-writing-remote