Activate mandatory agent workflows: brainstorming, TDD, code review, git worktrees, and structured development
npx claudepluginhub naimkatiman/continuous-improvement --plugin continuous-improvement# /superpowers Activate the Superpowers mandatory workflow framework. Skills trigger automatically based on context — this is not optional guidance. ## Subcommands ### `/superpowers status` Show which workflow stages are active: ### `/superpowers enable <skill>` Explicitly enable a skill for the current session: ### `/superpowers workflow <type>` Activate a complete workflow preset: | Preset | Skills Activated | |--------|------------------| | `new-feature` | brainstorming → worktrees → plans → TDD → review → finish | | `bug-fix` | systematic-debugging → verification → TDD → re...
Activate the Superpowers mandatory workflow framework. Skills trigger automatically based on context — this is not optional guidance.
/superpowers statusShow which workflow stages are active:
=== Superpowers Status ===
Active Skills:
[x] brainstorming (trigger: new feature request)
[ ] using-git-worktrees (waiting: design approval)
[ ] writing-plans (waiting: worktree ready)
[ ] test-driven-development (waiting: plan approved)
[ ] requesting-code-review (waiting: implementation)
[ ] finishing-a-development-branch (waiting: completion)
/superpowers enable <skill>Explicitly enable a skill for the current session:
/superpowers enable test-driven-development
/superpowers workflow <type>Activate a complete workflow preset:
| Preset | Skills Activated |
|---|---|
new-feature | brainstorming → worktrees → plans → TDD → review → finish |
bug-fix | systematic-debugging → verification → TDD → review |
refactor | worktrees → plans → TDD → review → finish |
review | requesting-code-review → receiving-code-review |
Example:
/superpowers workflow new-feature
Triggers: New feature requests, vague requirements
Triggers: Design approved, feature branch needed
Creates isolated workspace:
git worktree add -b feature-name ../feature-name
Triggers: Worktree ready, implementation starting
Breaks work into bite-sized tasks (2-5 minutes each). Every task includes:
Triggers: Plan approved, coding begins
RED: Write failing test → Watch it fail
GREEN: Write minimal code → Watch it pass
REFACTOR: Improve while green → Commit
Rule: Code written before tests is deleted.
Triggers: Task complete, before continuing
Two-stage review:
Severity levels: Critical (blocks), Warning (note), Info (log)
Triggers: All tasks complete
Options presented:
| User Request | Activates |
|---|---|
| "Create a feature" | brainstorming → writing-plans → executing-plans |
| "Fix this bug" | systematic-debugging → verification → TDD |
| "Review this code" | requesting-code-review |
| "Refactor this" | using-git-worktrees → writing-plans → TDD |
Every skill requires verification before reporting completion:
Superpowers integrates with:
User: "Build a checkout flow"
[brainstorming activates]
AI: "Clarifying questions: 1) Payment provider? 2) Guest checkout?"
User: "Stripe, yes guest checkout"
[writing-plans activates]
AI: "Plan created with 6 tasks. Approve?"
User: "Approved"
[using-git-worktrees activates]
AI: "Created worktree at ../checkout-feature"
[test-driven-development activates]
AI: "Task 1: Write failing test for cart validation..."