DeepSeek Harness Plugin Hub

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

探索

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

社区

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

相关链接

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

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

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

@jasonfreelab/dsh-superpowers

Superpowers

obra/superpowers 的 DSH 移植版——将完整的多代理软件开发方法论(TDD、规划、调试、审查)作为原生 DSH 技能提供

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

npx -y @deepseek-ai/dsh plugin --profile web add @jasonfreelab/dsh-superpowers@0.2.0
README兼容性版本

兼容性与来源证明

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

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

版本

0.2.0stable
2026/9/5
0.1.3stable
2026/8/29
0.1.2stable
2026/8/28
查看其余 1 个版本收起版本
0.1.1stable
2026/8/28

相关插件

正在加载相关插件…

最新版
0.2.0
DSH
*
HMR
重启进程
Tree shaking
未声明可安全裁剪
解包体积
258.9 kB
文件数
37
Surface
any
许可证
MIT
发布源
npm
GitHub
★ 1
周下载
174
安全扫描
✓ v0.2.0 扫描通过
最近提交
2026/9/5
查看源码 ↗项目主页 ↗
README Badge

点击下方 Badge 复制 Markdown,粘贴到 README 即可。

这是你的 Plugin?认领权益 · 优先安全扫描

验证 package.json 声明的 GitHub 仓库,即可管理这个公开页面。认领后,Hub 会优先安排当前版本的安全扫描,并在通过后公开展示结果。

认领这个 Plugin →
报告问题

README

dsh-superpowers

English | 中文

A DSH (DeepSeek Harness) port of obra/superpowers — the full multi-agent software-development methodology, available out of the box as native DSH skills.

Ported from upstream obra/superpowers (v6.3.0, by Jesse Vincent / Prime Radiant). Skill content is taken directly from upstream and mapped onto the DSH toolset.

Table of Contents

  • Features
  • Install
  • Usage
  • Included skills
  • Tool mapping
  • Layout
  • Development
  • Contributing
  • License

Features

  • 14 methodology skills — brainstorm → plan → TDD → systematic debugging → code review → integrate.
  • Native DSH skills — injected into ctx.skills via a SkillProvider (rank 550; overridable by project/user skills).
  • English (i18n) — skill content kept in original English; Chinese docs in README.zh.md.
  • Zero-build install — lib/ is committed, so GitHub installs need no build step.
  • Automated releases — release-please (versioning + CHANGELOG + release notes) plus trusted publishing to npm and GitHub Packages.

Install

Using the web profile as the example (change --profile for others). Requires Node >= 20, pnpm >= 9, and dsh.

# From npm (recommended)
dsh plugin --profile web add @jasonfreelab/dsh-superpowers

# Local path install (dev / offline)
git clone https://github.com/JasonFreeLab/dsh-superpowers.git && cd dsh-superpowers
pnpm install && pnpm build
dsh plugin --profile web add ./

# Verify: you should see id: superpowers
dsh --profile web --dump-config | grep -A2 '@jasonfreelab/dsh-superpowers'

# Update / uninstall
dsh plugin --profile web add @jasonfreelab/dsh-superpowers
dsh plugin --profile web remove @jasonfreelab/dsh-superpowers

Also published to GitHub Packages (requires auth): npm.pkg.github.com/@jasonfreelab/dsh-superpowers.

Usage

In the DSH web UI

  1. Start the web UI and open the printed URL: dsh web (alias of dsh --profile web).
  2. Start a new session. The 14 skills are registered automatically in ctx.skills and appear in the model's <available_skills> catalog — no extra setup.
  3. The model loads the matching skill by itself via the skill tool.
  4. You can also invoke a skill explicitly with /skill-name, e.g. /superpower-brainstorming.

Typical flows

Build me X    → superpower-brainstorming → superpower-writing-plans → superpower-subagent-driven-development
Fix this bug  → superpower-systematic-debugging
Review this   → superpower-requesting-code-review

Verify: inside a session await ctx.skills.list({cwd}) should return 14 entries with provider: superpowers.

Included skills

SkillWhen it triggers
superpower-using-superpowersUse when starting any conversation — establishes how to find and use skills, requiring skill invocation before ANY response including clarifying questions
superpower-brainstormingUse before any creative work — creating features, building components, adding functionality, or modifying behavior
superpower-writing-plansUse when you have a spec or requirements for a multi-step task, before touching code
superpower-using-git-worktreesUse when starting feature work that needs isolation from the current workspace, or before executing implementation plans
superpower-executing-plansUse when you have a written implementation plan to execute in a separate session with review checkpoints
superpower-subagent-driven-developmentUse when executing implementation plans with independent tasks in the current session
superpower-dispatching-parallel-agentsUse when facing 2+ independent tasks that can be worked on without shared state or sequential dependencies
superpower-test-driven-developmentUse when implementing any feature or bugfix, before writing implementation code
superpower-systematic-debuggingUse when encountering any bug, test failure, or unexpected behavior, before proposing fixes
superpower-verification-before-completionUse before claiming work is complete, fixed, or passing — run verification commands and confirm output before any success claim
superpower-requesting-code-reviewUse when completing tasks, implementing major features, or before merging
superpower-receiving-code-reviewUse when receiving code review feedback, before implementing suggestions
superpower-finishing-a-development-branchUse when implementation is complete, all tests pass, and you need to decide how to integrate the work
superpower-writing-skillsUse when creating new skills, editing existing skills, or verifying skills work before deployment

Tool mapping

Upstream references Claude Code tools; this package maps them onto DSH tools (see skills/superpower-using-superpowers/references/dsh-tools.md):

Claude CodeDSH
Bashbash
Read / Write / Editread / write / edit
Glob / Grepglob / grep
TodoWritetodo_write
Task (subagent)subagent / subagent_fork
ExitPlanModeexit_plan_mode
AskUserQuestionask_user_question
WebFetch / WebSearchread_page / web_search
Load a skillskill tool / /name gesture

Layout

src/superpowers.ts       # SkillProvider (rank 550), lazily loads SKILL.md bodies
skills/                  # 14 skills (English, with references/)
lib/                     # build output (committed for zero-build installs)
scripts/                 # test.mjs + verify.mjs
cordis.patch.yml         # bundle patch
.github/workflows/       # ci.yml + release.yml + release-please.yml

Development

pnpm install
npm run build        # or: pnpm build
npm run typecheck
npm test             # comprehensive (content hygiene + real SkillRegistry)
npm run verify       # structural + runtime smoke

Contributing

Issues and pull requests are welcome. The upstream methodology lives in obra/superpowers.

License

MIT, matching upstream obra/superpowers (Jesse Vincent / Prime Radiant).

相关插件

继续浏览 developer-tools 分类下经过校验的插件。

Web App@deepseek-ai/dsh-web-appdsh 浏览器界面捆绑包:位于 dsh-base 之上的 Web 补丁层,加上运行时粘合插件(提供前端 dist、Web 界面提示符、bash 运行时变量和 URL 行)Sdk Minimal@deepseek-ai/dsh-sdk-minimal独立的最小 SDK 配置包:JSON-RPC、一个 DeepSeek 适配器、持久化 Shell 和 JSONL 会话Sdk App@deepseek-ai/dsh-sdk-appdsh SDK 配置包:基于 dsh-base 提供 stdio JSON-RPC 服务和进程生命周期管理Subagent Codex@deepseek-ai/dsh-subagent-codex基于官方 app-server 协议的一次性 Codex 子代理提供程序