icanfinish11/dsh_superpowers ↗★ 0
dsh_superpowers
Superpowers for the DeepSeek Harness: registers the Superpowers skills as a dsh skill catalog and injects the using-superpowers bootstrap into the system prompt.
AI Analysis
核心用途是为 DSH 智能体注入强大的 Superpowers 技能集,通过系统提示词引导其高效调用。适合需要扩展智能体专业技能、提升复杂任务解决能力的 DSH 用户。
Install
$
npx -p @deepseek-ai/dsh dsh plugin --profile web add github:icanfinish11/dsh_superpowersREADME
Read the full README ↗Configuration
The patch mounts the row as id: superpowers. Override it per profile in
$DSH_HOME/profiles//cordis.patch.yml (a patch layer replaces the row's whole config,
so restate every key you want to keep):
- id: superpowers
config:
skills: true # register the skills catalog
bootstrap: true # inject the using-superpowers bootstrap
toolMapping: true # append the dsh tool mapping to the bootstrap
order: 121 # system-prompt section order
skillsDir: '' # empty = automatic resolution
| Key | Default | Meaning |
|---|---|---|
skills | true | Register the skills catalog as a skill provider. |
bootstrap | true | Contribute the superpowers:bootstrap system-prompt section. |
toolMapping | true | Append the dsh tool mapping to the bootstrap. |
order | 121 | Section order; dsh renders ascending (100–199 is the tool/behavior band). |
skillsDir | '' | Explicit skills root; empty resolves automatically. |