Execute phases from an implementation plan
Execute phases from an implementation plan, following complexity-based grouping.
/execute-plan <plan_file> [phase]
Arguments:
plan_file (required): Path to the plan filephase (optional): Phase number, range, or "next". Default: next incomplete phasePhase Options:
1 - Execute phase 11-3 - Execute phases 1 through 3next - Execute next incomplete phaseall - Execute all remaining phasesBased on combined complexity scores:
| Combined Score | Strategy |
|---|---|
| ≤ 6 | Aggregate: Execute multiple phases together |
| 7-10 | Cautious: Execute 1-2 phases, then verify |
| > 10 | Sequential: Execute one phase at a time |
For each phase:
/execute-plan @flow/plans/plan_user_auth_v1.md phase:1
Output:
Executing Phase 1: Types and Schemas
Complexity: 3/10
Tasks:
- [ ] Create User type definitions
- [ ] Create Zod validation schemas
Implementing...
✓ Phase 1 Complete
- Created src/types/user.ts
- Created src/schemas/user.ts
Build verification: npm run build ✓
After executing all phases, run /review-code to review your changes before committing.