DeepSeek Harness plugin

dsh-superpowers

Superpowers (obra/superpowers) for DeepSeek Harness: the software-development methodology skills plus their session bootstrap, as a dsh plugin

Jump to install

Source facts

Repository
codeAnqiang-ma/dsh-superpowers
Latest update
Aug 13, 2026
Category
Memory
GitHub stars
3
Format
plugin
Catalog evidence
Upstream dsh.bundle evidence
Evidence path
package.json#dsh.bundle
Checked against
0.1.0-rc.8
Upstream check date
2026-08-20

This evidence comes from the upstream catalog. This site has not installed, run, or security-reviewed the plugin.

Install

Start with a prompt that asks an agent to review the GitHub repository and source. Switch to the command if you want to install it yourself.

Copy this prompt into DSH, Codex, or another agent and ask it to review the GitHub repository and source first.

Do not install or run any commands yet. Read this plugin's GitHub repository, README, and relevant source code. Then answer the questions below clearly and directly so I can decide whether it fits my needs:

1. What is this plugin, and what problem does it solve?
2. Who is it for, and what are its typical use cases?
3. How is it used after installation? Include one minimal example.
4. What known limitations or privacy, security, compatibility, or maintenance risks does it have?
5. Give a clear recommendation: recommend, conditionally recommend, or do not recommend, with reasons.

Distinguish statements documented by the repository, inferences from source code, and unknowns. If evidence is insufficient, say so explicitly. Do not guess or simply repeat the README.

GitHub: https://github.com/codeAnqiang-ma/dsh-superpowers
Plugin: dsh-superpowers
Author: codeAnqiang-ma

Check the source files

Read the README and other files from this plugin directory before installing.

File explorer4 files
README.mdSource · read only
README language

dsh-superpowers

English | 中文

![dsh-superpowers banner](assets/banner.png)

![npm version](https://www.npmjs.com/package/dsh-superpowers) ![npm downloads](https://www.npmjs.com/package/dsh-superpowers) ![license](LICENSE) ![Node.js](https://nodejs.org/)

dsh-superpowers adds obra/superpowers support to DeepSeek Harness. It registers 14 skills for brainstorming, planning, TDD, debugging, and code review, and keeps the using-superpowers bootstrap active throughout the session.

Contents

  • [Installation](#installation)
  • [What it does](#what-it-does)
  • [Verification](#verification)
  • [Configuration](#configuration)
  • [Overhead](#overhead)
  • [Requirements](#requirements)
  • [Upstream and license](#upstream-and-license)

Installation

From npm (recommended)

dsh plugin --profile web add dsh-superpowers

From GitHub

dsh plugin --profile web add "github:codeAnqiang-ma/dsh-superpowers#master"

After either command, stop and restart dsh web. Replace web with headless or a custom profile name when installing for a different surface, then restart that surface instead.

What it does

  • Registers all 14 Superpowers skills on ctx.skills. They appear in the skill catalog and load through the native skill tool. Nothing is copied into ~/.dsh/skills.
  • Adds the using-superpowers bootstrap as the superpowers:bootstrap prompt section at order 50. It is present on the first request and survives context compaction because it is part of the system prompt, not a one-off session message.
  • Maps Claude Code-style tool names such as Task, TodoWrite, and Bash/Read/Write/Edit to their DeepSeek Harness equivalents. The mapping also notes that hooks and slash commands are not available.

Verification

Check that the plugin is present in the profile:

dsh --profile web --dump-config

The output should contain id: superpowers followed by name: dsh-superpowers.

Then start a new session and ask for a feature. The agent should explore first and respond with questions or a design instead of writing code immediately. Its tool calls should include skill.

Configuration

Every field is optional. Override fields in the profile's own cordis.patch.yml:

- id: superpowers
  config:
    bootstrap: false
FieldDefaultDescription
skillstrueRegister the bundled skills on ctx.skills.
bootstraptrueRegister the using-superpowers prompt section.
toolMappingtrueAppend the DeepSeek Harness tool mapping to the bootstrap section.
order50Place the bootstrap after the persona (0) and before tool guidance (100–199).

Setting bootstrap: false keeps the skills discoverable but stops them from self-triggering; the model will use them only when it decides to consult the catalog.

Overhead

The bootstrap adds roughly 1.1k tokens (4,465 characters) to the system prompt of each request. The section is static and stays within the cached prefix. It is not appended as a new chat message on every turn. Set bootstrap: false to keep the skills without the fixed prompt overhead.

Requirements

  • DeepSeek Harness 0.1.0-rc.6 or newer
  • Node.js 22.19+ or 24+
  • Zero runtime dependencies; the plugin reaches the prompt and skill registries through ctx

Upstream and license

The skills under skills/ are vendored unmodified from obra/superpowers v6.3.0 at commit b36e082. The exact upstream version and commit are recorded in package.json. Report skill-behavior issues to the upstream repository and packaging issues to this repository.

The optional visual companion in brainstorming loads an upstream-hosted logo containing the Superpowers version. It sends no project or prompt content. Set SUPERPOWERS_DISABLE_TELEMETRY to a true value to disable it.

Two MIT license notices apply: the adapter is © its contributors under [LICENSE](LICENSE), while the bundled skills are © Jesse Vincent and the Superpowers contributors under [LICENSE.superpowers](LICENSE.superpowers).