03 EXECUTE

Run Plan

Worker implements, and Validator independently verifies. Auto-retry on failure, escalation to user after 3 failures.

01 ▸ Workflow Position

Plan Crafting (Plan Complete) │ ▼ ┌─────────────────────────────┐ │ Run Plan (ACTIVE) │ │ Worker-Validator Loop │ └──────────────┬──────────────┘ │ ▼ Review Work (Final Independent Verification)

02 ▸ When to use?

Immediately after Plan Crafting is complete, or when you need to implement an already written plan document into actual code.
Key Triggers
  • "execute the plan"
  • "run plan"
  • "start implementing the drafted plan"

03 ▸ How it works?

Core Principle: The Validator never looks at the Worker's code. It independently verifies that the output is correct based only on the plan's goals and acceptance criteria.
Step-by-step Execution Process
  1. Discover Verification Infrastructure: Identify available test runners, linters, and agent skills in the current environment.
  2. Pre-implementation Review: Final check for potential file conflicts or dependency order errors before implementation.
  3. Worker-Validator Loop: As the Worker performs tasks, the Validator independently reviews the output.
  4. E2E Verification Gate: Once all individual steps are complete, confirm the integrated behavior of the entire system.

04 ▸ Parallel Execution Rules

ConditionExecution Mode
No file overlap + no dependenciesParallel allowed
Modifying the same fileSerial — perform after previous is done
Output of Task A is Input of Task BSerial — follow sequential dependencies

05 ▸ Hard Gates

  • 3-Failure Limit: If verification fails 3 consecutive times on the same step, stop immediately and escalate to the user.
  • Information Isolation: The Validator does not see the Worker's implementation logs; it only compares against planned acceptance criteria.
  • No Completion without Verification: Every code change must pass automated tests or a clear verification procedure.

06 ▸ Related Skills

← Plan Crafting Review Work → Back to Home