dsh-matt-pipeline
English | 简体中文
Matt Pocock 技能工作流流水线插件,用于 DeepSeek Harness(DSH)。
内置技能来自 Matt Pocock 的 mattpocock/skills 仓库——技能内容的所有功劳归属于他。

- 服务端:把内置的 matt 技能集(
matt-triage、matt-grill-me、matt-to-spec、matt-to-tickets、matt-tdd、matt-code-review、matt-research、matt-diagnosing-bugs等)注册为 DSH 技能,模型和用户均可调用。 - 浏览器端:在 dsh-better-sidebar 中新增 🔀 Pipeline 标签页,可视化展示工作流
💡 Idea → 🔍 Triage → 🔥 Grill → 📝 Spec → 🎫 Tickets → ⚡ Implement → ✅ Review
以及辅助工具(🐛 Debug / 📚 Research / 🎓 Teach / 📦 Handoff / ❓ Ask Matt)。点击 Start 会把官方的 /<技能名> 手势直接发送到当前会话(连接 API 不可用时自动降级为复制到剪贴板)。
环境要求
- DSH 的 web 或 desktop profile 中已安装
dsh-better-sidebar(流水线面板寄生于它;技能注册不依赖它)。
安装
dsh plugin --profile web add https://github.com/sa998aaron/deepseek-harness-matt-plugin.gitDSH Desktop 图形界面请使用 desktop profile:
dsh plugin --profile desktop add https://github.com/sa998aaron/deepseek-harness-matt-plugin.git然后重启 DSH(或在 设置 → 插件 中将本插件关闭再启用),并硬刷新页面(Ctrl+F5)。
手动安装
1. 把本仓库克隆到 <profile>/node_modules/dsh-matt-pipeline(例如 ~/.dsh/profiles/desktop/node_modules/)。 2. 在 <profile>/package.json 中添加依赖和 bundle 条目: ``json "dependencies": { "dsh-matt-pipeline": "file:./node_modules/dsh-matt-pipeline" }, "dsh": { "profile": { "bundles": [ ..., "dsh-matt-pipeline" ] } } `` 3. 重启 DSH 并硬刷新。
仓库已提交构建产物(dist/),安装时无需执行构建。
使用
1. 打开侧边栏 + 菜单 → 🔀 Pipeline。 2. 点击某个阶段,查看它的说明和预期产物。 3. 点击 Start \<阶段名\> —— 面板会把 /<技能名> 发送到当前会话,agent 随即按照该技能的工作流执行。 4. 底部的辅助工具可随时触发(调试、调研、交接等)。
内置技能也可以直接使用:在输入框输入 /,找到 matt-* 条目,或直接在对话中按名称调用。
开发
pnpm install
pnpm build # tsdown:服务端 ESM(dist/index.mjs)+ 客户端 CJS(dist/client.cjs)
pnpm dev # watch 模式目录结构:
src/index.ts 服务端:注册内置技能(ctx.skills)
src/skills.ts SKILL.md frontmatter 解析与注册
src/stages.ts 流水线阶段与辅助工具(唯一数据源)
client/index.tsx 浏览器端:注册 Pipeline 标签页(ctx.betterSidebar)
assets/skills/ 内置的 matt SKILL.md 文件
cordis.patch.yml profile bundle 补丁(挂载插件条目)注意:ctx.betterSidebar 只存在于浏览器 cordis 上下文中——UI 代码必须放在 client/,绝不能放在服务端。
致谢
- Matt Pocock ——
assets/skills/中内置的技能全部取自他的 mattpocock/skills 仓库。本插件只是把它们打包进 DSH 并加上了可视化流水线面板,工作流本身是他的作品。感谢 Matt! - dsh-better-sidebar —— 流水线面板所寄生的侧边栏宿主。
许可证
MIT