From 895e1072ac92cd99374a1cb617245af115c13703 Mon Sep 17 00:00:00 2001 From: Alex Verkhovsky Date: Wed, 1 Apr 2026 22:42:02 -0600 Subject: [PATCH] fix(checkpoint): add explicit HALT before decision menu in wrapup step 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.