From 07d72394fdcc24e2374436f862f0fe43455864c8 Mon Sep 17 00:00:00 2001 From: Alex Verkhovsky Date: Wed, 1 Apr 2026 21:52:46 -0700 Subject: [PATCH] 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. --- .../4-implementation/bmad-checkpoint-preview/step-05-wrapup.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/bmm-skills/4-implementation/bmad-checkpoint-preview/step-05-wrapup.md b/src/bmm-skills/4-implementation/bmad-checkpoint-preview/step-05-wrapup.md index b3a67b4ee..5f293d56c 100644 --- a/src/bmm-skills/4-implementation/bmad-checkpoint-preview/step-05-wrapup.md +++ b/src/bmm-skills/4-implementation/bmad-checkpoint-preview/step-05-wrapup.md @@ -15,6 +15,8 @@ Review complete. What's the call on this {change_type}? - **Discuss** — something's still on your mind ``` +HALT — do not proceed until the user makes their choice. + ## 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.