SKILL.md
Reference: The Superpowers Pipeline
The full development workflow:
/brainstorm -> Design document (user validates each section)
|
/write-plan -> Implementation plan (bite-sized TDD tasks)
|
/execute-plan -> Subagent-driven development (implement -> spec-review -> quality-review per task)
|
/verify -> Fresh evidence that everything works
|
/finish -> Merge / PR / Keep / Discard
At any point, if bugs arise: /debug (4-phase systematic debugging).
Priority order when multiple modes could apply:
- Process modes first (
/brainstorm,/debug) -- determine HOW to approach the task - Implementation modes second (
/write-plan,/execute-plan) -- guide execution - Completion modes last (
/verify,/finish) -- close out work
Reference: Mode Tool
The mode tool allows programmatic mode transitions. Use mode(operation="set", name="write-plan") to request a mode change. The first request will be blocked with a reminder — call again to confirm. This is useful when agents need to request transitions during automated workflows.
Reference: Modes
| Mode | Shortcut | Purpose | Who Does The Work |
|---|---|---|---|
| Brainstorm | /brainstorm | Design refinement through collaborative dialogue | You (main agent) |
| Write Plan | /write-plan | Create detailed implementation plan with TDD tasks | You (main agent) |
| Execute Plan | /execute-plan | Subagent-driven development with three-agent pipeline | Subagents (you orchestrate) |
