Executing Plans
Implement written plans through structured batches with review checkpoints.
When to Use
- A plan exists in
docs/plans/ - User says “execute the plan” or “implement the plan”
- After completing the writing-plans skill
- When resuming work on a documented plan
Process
Step 1: Load and Review
- Read the plan file from
docs/plans/ - Critically assess it - Does it still make sense?
- Raise concerns before proceeding
- Confirm understanding with user
Step 2: Execute Batch
Work through tasks in batches (typically 3 at a time):
- Mark progress - Note which task you’re on
- Follow steps precisely - Don’t skip verifications
- Run all commands - Check they produce expected output
- Commit after each logical unit
Step 3: Report Results
After each batch, use the batch report format from assets/execution-template.md.
Step 4: Continue or Adjust
Based on feedback:
- Continue - Execute next batch
- Adjust - Modify approach based on feedback
- Pause - Save progress and stop
Step 5: Complete Development
When all tasks done:
- Run final verification (all tests, linting)
- Summarize what was built
- Offer to commit/PR if not done
Critical Rules
STOP IMMEDIATELY When:
- Missing dependency - Something needed isn’t available
- Unclear instructions - Plan step is ambiguous
- Failed verification - A check didn’t pass
- Unexpected state - Reality doesn’t match plan
Never force through obstacles or guess at solutions.
Return to Review When:
- Plan needs updating
- Fundamental approach needs to change
- New information changes requirements
Progress Tracking and Output Format
See assets/execution-template.md for the progress tracking block and per-task execution format.
Adapted from obra/superpowers executing-plans skill