| name | phase-execute |
| description | Phase C of the solution-design workflow: execute an approved solution plan through iterative implementation, TDD, build repair, debugging, and progress tracking. |
Phase Execute
Use this skill when the user asks for /phase-execute, execute a validated plan, implement a solution plan, or run the execution stage after solution validation.
Purpose
Carry a validated plan into implementation while preserving feedback loops and traceability.
Workflow
- Load the latest validated plan.
- Create or confirm an appropriate working branch when the repo uses git.
- Break the plan into small execution units.
- For each unit:
- write/update tests when practical
- implement the smallest change
- run targeted checks
- debug systematically on failure
- update progress
- Use parallel agents only for independent units with non-overlapping files.
- Commit intermediate units only when requested or consistent with the project workflow.
- Mark blocked work explicitly and continue only when safe.
Output
Include:
- units completed
- files changed
- checks run
- failures and fixes
- blocked items
End with PHASE_EXECUTE_DONE or PHASE_EXECUTE_BLOCKED.