1.4 KiB
1.4 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>withStatus: in_progressbefore changing code. - 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.
- 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 the execution note to
Status: doneorStatus: blockedand summarize what changed.
Automatic commits are required during /build as defined above.