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-extended-cc:executing-plansThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
**You MUST NOT call `EnterPlanMode` or `ExitPlanMode` during this skill.** This skill operates in normal mode, executing a plan that already exists on disk. Plan mode is unnecessary and dangerous here — it restricts Write/Edit tools needed for implementation.
You MUST NOT call EnterPlanMode or ExitPlanMode during this skill. This skill operates in normal mode, executing a plan that already exists on disk. Plan mode is unnecessary and dangerous here — it restricts Write/Edit tools needed for implementation.
Load plan, review critically, execute tasks in batches, report for review between batches.
Core principle: Batch execution with checkpoints for architect review.
Announce at start: "I'm using the executing-plans skill to implement this plan."
TaskList to check for existing native tasks<plan-path>.tasks.json, if not found glob for matching .tasks.jsonpending/in_progressUpdate .tasks.json after every task status change.
If TaskList returned no tasks or tasks don't match plan:
## Task N: or ### Task N: headersTaskUpdate with taskId and addBlockedBy: [list-of-blocking-task-ids]TaskList and verify blockedBy relationships show correctly (e.g., "blocked by #1, #2")Default: First 3 tasks
For each task:
When batch complete:
Based on feedback:
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:
npx claudepluginhub drcharleskamen-png/superpowers --plugin superpowers-extended-ccLoads a written implementation plan from disk, bootstraps tasks, and executes them sequentially with review checkpoints. Use when you have a plan file ready and want structured, tracked execution.
Executes pre-written implementation plans: critically reviews, follows bite-sized steps exactly, runs verifications, tracks progress with checkpoints, uses git worktrees, stops on blockers.
Loads an implementation plan, reviews it critically, executes tasks with verifications, and completes development using branch finishing workflows.