dsh-skill-authoring
Manifest validShips a skill about writing DSH skills - SKILL.md frontmatter and root precedence, how to phrase a description so it actually triggers, length and splitting rules, and an A/B check that the finished s
dsh-skill-authoring
一个 DSH 插件,内容只有一份技能:安装时把包内的 skills/ 注册为一个技能根,于是这份技能随插件进入 agent 的技能目录。
dsh plugin --profile web add dsh-skill-authoring
技能覆盖什么
- frontmatter 规范:必填 / 可选字段、布尔字段的合法写法,以及「一个字符写错就让技能静默消失」的机制
- 技能根与优先级:rank 100–600 的扫描顺序、同名技能怎么靠项目级根覆盖用户级根、变更检测管到哪一层
- description 写触发面:为什么只有它进模型视野、触发线索该怎么堆、边界与兜底怎么写
- 篇幅与拆分:300–500 行的目标区间、什么时候该拆
references/、什么情况不该为数字硬拆 - 静态校验:
scripts/check-skill.js一次查 frontmatter / 必填字段 / 文件引用 / 站内锚点 /§N交叉引用 / 篇幅,可传技能目录或技能根目录,支持--json - 行为验证:带技能与不带技能做同一件事的 A/B 对照,对比产物而不是对比自我报告,以及派子 agent 时该写死的纪律
布局
package.json # dsh.bundle.patch → cordis.patch.yml
cordis.patch.yml # 插入一行 @deepseek-ai/dsh-skill-filesystem,customSkillDirs 指向 skills/
skills/
dsh-skill-authoring/
SKILL.md
scripts/
check-skill.js
cordis.patch.yml 用的机制和 DSH 自带 agent preset 装载自己的技能是同一套:!!js 里的 baseUrl 解析到本包,所以路径跟着安装位置走。
scripts/check-skill.js 是零依赖的 Node 脚本(scripts/package.json 里只写了一行 {"type": "commonjs"},用来抵消本包 "type": "module" 对 .js 的作用域,让脚本在包内仍按 CommonJS 跑)。它只读文件、不修改任何东西,可以脱离 DSH 直接跑:
node skills/dsh-skill-authoring/scripts/check-skill.js <技能目录>
License
MIT
Comments
Loading…
Similar plugins
Ships a skill about handing work to subagents instead of doing it inline - which tasks are worth fanning out, how many to run at once, how to send them in parallel, and how to check what they returned
★ 0
dsh plugin --profile web add dsh-subagent-delegationby Sparrived
DSH Cordis plugin: skill-create authoring guide + workspace-level skill isolation for .dsh/skills
★ 0
MIT
JavaScript
Aug 22, 2026
dsh plugin --profile web add dsh-plugin-workspace-skillby xiaoxianyu-office
DSH Skills 管理器:设置页系统/用户技能分类,用户技能开关/编辑/删除/新建。Skills manager for DeepSeek Harness: system/user skill management (toggle/edit/delete/create) in Settings.
★ 3
JavaScript
Aug 14, 2026
dsh plugin --profile web add dsh-skills-managerExperience validation layer for DSH: zero-token collection of tool-failure/retry/search signals, AI refinement into verified skill books (three-layer verification), looked up at task start. Ships 10 t
★ 0
↓ 28/wk
dsh plugin --profile web add dsh-experience-libraryby SLin-code
View local Skills and edit automatic and /name invocation policies from DSH Web settings, with bundled and symbolic-link entries kept read-only.
★ 1
MIT
TypeScript
Aug 27, 2026
dsh plugin --profile web add dsh-skill-managerShips a skill that documents how to build, debug and publish DSH plugins - host and client package skeleton, developing a forked plugin inside a throwaway profile, publishing to GitHub and npm, and th
★ 0
dsh plugin --profile web add dsh-plugin-development