# Send Superpowers Dev Workflow to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "superpowers",
    "name": "Superpowers Dev Workflow",
    "source": "tencent",
    "type": "skill",
    "category": "效率提升",
    "sourceUrl": "https://clawhub.ai/wlshlad85/superpowers",
    "canonicalUrl": "https://clawhub.ai/wlshlad85/superpowers",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/superpowers",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=superpowers",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "references/brainstorming.md",
      "references/finishing-branch.md",
      "references/subagent-development.md",
      "references/systematic-debugging.md",
      "references/tdd.md",
      "references/writing-plans.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "superpowers",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-01T08:43:19.078Z",
      "expiresAt": "2026-05-08T08:43:19.078Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=superpowers",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=superpowers",
        "contentDisposition": "attachment; filename=\"superpowers-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "superpowers"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/superpowers"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/superpowers",
    "downloadUrl": "https://openagent3.xyz/downloads/superpowers",
    "agentUrl": "https://openagent3.xyz/skills/superpowers/agent",
    "manifestUrl": "https://openagent3.xyz/skills/superpowers/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/superpowers/agent.md"
  }
}
```
## Documentation

### Superpowers — OpenClaw Edition

Adapted from obra/superpowers. Mandatory workflow — not suggestions.

### The Pipeline

Idea → Brainstorm → Plan → Subagent-Driven Build (TDD) → Code Review → Finish Branch

Every coding task follows this pipeline. "Too simple to need a design" is always wrong.

### Phase 1: Brainstorming

Trigger: User wants to build something. Activate before touching any code.

See: references/brainstorming.md

Summary:

Explore project context (files, docs, recent commits)
Ask clarifying questions — one at a time, prefer multiple choice
Propose 2–3 approaches with trade-offs + recommendation
Present design in sections, get approval after each
Write design doc → docs/plans/YYYY-MM-DD-<topic>-design.md → commit
Hand off to Phase 2: Writing Plans

HARD GATE: Do NOT write any code until user approves design.

### Phase 2: Writing Plans

Trigger: Design approved. Activated by brainstorming phase.

See: references/writing-plans.md

Summary:

Write a detailed task-by-task implementation plan
Each task = 2–5 minutes: write test → watch fail → implement → watch pass → commit
Save to docs/plans/YYYY-MM-DD-<feature>.md
Announce: "I'm using the writing-plans skill to create the implementation plan."
After saving, offer two execution modes:

Subagent-driven (current session): sessions_spawn per task + two-stage review
Manual execution: User runs tasks themselves

### Phase 3: Subagent-Driven Development

Trigger: Plan exists, user chooses subagent-driven execution.

See: references/subagent-development.md

Per-task loop (OpenClaw):

sessions_spawn an implementer subagent with task + full plan context
Wait for completion announcement
sessions_spawn a spec-reviewer subagent → must confirm code matches spec
sessions_spawn a code-quality reviewer subagent → must approve quality
Fix any issues, re-review if needed
Mark task done, move to next
Final: dispatch overall code reviewer → hand off to Phase 5

TDD is mandatory in every task. See references/tdd.md.

### Phase 4: Systematic Debugging

Trigger: Bug, test failure, unexpected behaviour — any technical issue.

See: references/systematic-debugging.md

HARD GATE: No fixes without root cause investigation first.

Four phases:

Root Cause Investigation (read errors, reproduce, check recent changes, trace data flow)
Pattern Analysis (find working examples, compare, identify differences)
Hypothesis + Testing (one hypothesis at a time, test to prove/disprove)
Fix + Verification (fix at root, not symptom; verify fix doesn't break anything)

### Phase 5: Finishing a Branch

Trigger: All tasks complete, all tests pass.

See: references/finishing-branch.md

Summary:

Verify all tests pass
Determine base branch
Present 4 options: merge locally / push + PR / keep / discard
Execute choice
Clean up

### OpenClaw Subagent Dispatch Pattern

When dispatching implementer or reviewer subagents, use sessions_spawn:

Goal: [one sentence]
Context: [why it matters, which plan file]
Files: [exact paths]
Constraints: [what NOT to do — no scope creep, TDD only]
Verify: [how to confirm success — tests pass, specific command]
Task text: [paste full task from plan]

Run sessions_spawn with the task as a detailed prompt. The sub-agent announces results automatically.

### Key Principles

One question at a time during brainstorm
TDD always — write failing test first, delete code written before tests
YAGNI — remove unnecessary features from all designs
DRY — no duplication
Systematic over ad-hoc — follow the process especially under time pressure
Evidence over claims — verify before declaring success
Frequent commits — after each green test
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: wlshlad85
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-01T08:43:19.078Z
- Expires at: 2026-05-08T08:43:19.078Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/superpowers)
- [Send to Agent page](https://openagent3.xyz/skills/superpowers/agent)
- [JSON manifest](https://openagent3.xyz/skills/superpowers/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/superpowers/agent.md)
- [Download page](https://openagent3.xyz/downloads/superpowers)