Execute a single implementation plan.
Executes a single implementation plan by running tasks, creating commits, and verifying results against acceptance criteria.
/plugin marketplace add iamladi/cautious-computing-machine--workflows-plugin/plugin install workflows@cautious-computing-machineExecute a single implementation plan.
$ARGUMENTS - Path to the plan file (e.g., plans/workflow-1-setup-auth.md)
Read the plan file to understand:
Invoke the sdlc implement skill:
/sdlc:implement $ARGUMENTS
This will:
After implementation:
Mark the plan as completed:
- [x] $ARGUMENTS (issue: #N)
Increment the completed count.
For individual plan completion:
<plan>PLAN_N_COMPLETE</plan>
After ALL plans are done:
<phase>IMPLEMENTATION_COMPLETE</phase>
IMPLEMENTATION_COMPLETEPLAN_N_COMPLETE where N is the plan numberCheck the progress file to determine:
completed: X
total: Y
If X == Y after this plan, this is the last one.
If implementation fails:
<promise>FAILED</promise>
<error>Implementation failed: {reason}</error>
On success (not last plan):
Plan implemented successfully: $ARGUMENTS
Changes:
- Created src/auth/login.ts
- Added tests in tests/auth/login.test.ts
- Updated routes in src/routes.ts
<plan>PLAN_1_COMPLETE</plan>
On success (last plan):
Plan implemented successfully: $ARGUMENTS
All plans complete!
<plan>PLAN_3_COMPLETE</plan>
<phase>IMPLEMENTATION_COMPLETE</phase>