fix(checkpoint): add explicit HALT before decision menu in wrapup step (#2184)

Skill validator (STEP-04) flagged the decision menu in step-05 as
missing an explicit halt instruction between presenting the menu and
acting on the user's choice, risking LLM auto-advance.
This commit is contained in:
Alex Verkhovsky 2026-04-01 21:52:46 -07:00 committed by GitHub
parent 7ef45d472c
commit 07d72394fd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 0 deletions

View File

@ -15,6 +15,8 @@ Review complete. What's the call on this {change_type}?
- **Discuss** — something's still on your mind - **Discuss** — something's still on your mind
``` ```
HALT — do not proceed until the user makes their choice.
## ACT ON DECISION ## ACT ON DECISION
- **Approve**: Acknowledge briefly. If the human wants to patch something before shipping, help apply the fix interactively. If reviewing a PR, offer to approve via `gh pr review --approve` — but confirm with the human before executing, since this is a visible action on a shared resource. - **Approve**: Acknowledge briefly. If the human wants to patch something before shipping, help apply the fix interactively. If reviewing a PR, offer to approve via `gh pr review --approve` — but confirm with the human before executing, since this is a visible action on a shared resource.