Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

step-05-wrapup.md 1.5KB

123456789101112131415161718192021222324252627282930
  1. # Step 5: Wrap-Up
  2. Display: `Orientation → Walkthrough → Detail Pass → Testing → [Wrap-Up]`
  3. ## Follow Global Step Rules in SKILL.md
  4. ## PROMPT FOR DECISION
  5. ```
  6. ---
  7. Review complete. What's the call on this {change_type}?
  8. - **Approve** — ship it (I can help with interactive patching first if needed)
  9. - **Rework** — back to the drawing board (revert, revise the spec, try a different approach)
  10. - **Discuss** — something's still on your mind
  11. ```
  12. HALT — do not proceed until the user makes their choice.
  13. ## ACT ON DECISION
  14. - **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.
  15. - **Rework**: Ask what went wrong — was it the approach, the spec, or the implementation? Help the human decide on next steps (revert commit, open an issue, revise the spec, etc.). Help draft specific, actionable feedback tied to `path:line` locations if the change is a PR from someone else.
  16. - **Discuss**: Open conversation — answer questions, explore concerns, dig into any aspect. After discussion, return to the decision prompt above.
  17. ## On Complete
  18. Run: `python3 {project-root}/_bmad/scripts/resolve_customization.py --skill {skill-root} --key workflow.on_complete`
  19. If the resolved `workflow.on_complete` is non-empty, follow it as the final terminal instruction before exiting.