2.1 KiB
2.1 KiB
description, agent, model
| description | agent | model |
|---|---|---|
| Execute the latest approved plan | builder | github-copilot/gpt-5.4 |
Execute the latest approved plan for: $ARGUMENTS
- Read the latest matching
plans/<slug>note withStatus: approved. - Create or update
executions/<slug>with the structured sections defined inAGENTS.md(Plan, Execution State, Lane Claims, Last Verified State, Verification Ledger). SetStatus: in_progressbefore changing code. - Before parallel fan-out, populate Lane Claims with owner, status, claimed files/areas, dependencies, and exit conditions. Overlapping claimed files/areas or sequential verification dependencies forbid parallel fan-out.
- Delegate implementation to
coder, verification totester, review toreviewer, and docs or memory updates tolibrarianwhere appropriate. - Builder owns commit creation during
/build: create automatic commits at meaningful completed implementation checkpoints. - Reuse existing git safety rules and avoid destructive git behavior; do not add push automation.
- If no new changes exist at a checkpoint, skip commit creation rather than creating empty or duplicate commits.
- Record verification evidence in the Verification Ledger using the compact shape (Goal, Mode, Command/Check, Result, Key Evidence, Artifacts, Residual Risk). Default to
smokefor intermediate checkpoints; requirefullbefore final completion or setting status todone. - Follow the plan exactly. If the plan is contradictory, missing a dependency, or fails verification twice, stop, capture evidence, set the execution note to blocked, and send the work back to
planner. - Before creating the final completion commit, clean up temporary artifacts generated during the build (e.g., scratch files, screenshots, logs, transient reports, caches). Intended committed deliverables are not cleanup targets.
- Finish by creating a final completion commit when changes remain, then update Last Verified State and set the execution note to
Status: doneorStatus: blockedand summarize what changed.
Automatic commits are required during /build as defined above.