From superpowers-3
Use when you have a written implementation plan to execute in a separate session with review checkpoints
How this skill is triggered — by the user, by Claude, or both
Slash command
/superpowers-3:executing-plansThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Load plan, review critically, execute all tasks, report when complete.
Load plan, review critically, execute all tasks, report when complete.
Announce at start: "I'm using the executing-plans skill to implement this plan."
Note: Tell your human partner that Superpowers works much better with access to subagents. The quality of its work will be significantly higher if run on a platform with subagent support (such as Claude Code or Codex). If subagents are available, use superpowers:subagent-driven-development instead of this skill.
Before executing tasks, write the active plan to state to activate the TDD enforcement hook:
node -e "
const { setActivePlan } = require('${PLUGIN_ROOT}/hooks/state-manager');
const path = require('path');
const planFile = 'docs/plans/' + (process.argv[1] || 'plan.md');
setActivePlan(path.basename(planFile));
" <plan-name>
This signals the PreToolUse hook to begin TDD enforcement. Replace <plan-name> with the actual plan filename.
For each task:
After all tasks complete and verified:
STOP executing immediately when:
Ask for clarification rather than guessing.
Return to Review (Step 1) when:
Don't force through blockers - stop and ask.
Required workflow skills:
State management:
hooks/state-manager.js - Activates TDD enforcement hook via ~/.superpowers-3/state.jsonactivePlan to state; hook reads this to know when to enforce TDDnpx claudepluginhub mohammed-rasoul/superpowers-3 --plugin superpowers-3Executes a written implementation plan step-by-step with review checkpoints, stopping for help on blockers.
Executes pre-written implementation plans: critically reviews, follows bite-sized steps exactly, runs verifications, tracks progress with checkpoints, uses git worktrees, stops on blockers.
Executes a written implementation plan step-by-step with review checkpoints. Use when you have a plan file ready and need isolated execution with verification.