Decide · coding-agent SKILL.md
/execute-plan: one-commit stages, wait for go, never push
WhenUse when a plan is approved but each stage still needs a human go.
StopNever push. Wait for go between one-commit stages.
Steps
- Make only that stage's changes. Note adjacent cleanups for later.
- Prove it works — run the thing, run the tests. Never report done because the code looks right.
- git add <paths> explicitly. Never git add -A / git add .
- Post the report and stop. Do not commit yet.
Load/execute-plan. git commits locally. No push.
SourceRoman Zipp (2026-08-17)
--- name: /execute-plan: one-commit stages, wait for go, never push description: Use when a plan is approved but each stage still needs a human go. --- # /execute-plan: one-commit stages, wait for go, never push When: Use when a plan is approved but each stage still needs a human go. Stop: Never push. Wait for go between one-commit stages. 1. Make only that stage's changes. Note adjacent cleanups for later. 2. Prove it works — run the thing, run the tests. Never report done because the code looks right. 3. git add <paths> explicitly. Never git add -A / git add . 4. Post the report and stop. Do not commit yet. Load: /execute-plan. git commits locally. No push.
