checklist.py
python
sha256:a78e7e5a8740e03315f325d19edeb3aa1b306b3337d04abbaa9a9e0f3bbeb7a1
docs: MuseHub-first before ISR #74 — staging solidify NEXT
Human
3 days ago
| 1 | """Governance gate checklist lines for paste prompts and CLI footers (§KH1.9).""" |
| 2 | |
| 3 | from __future__ import annotations |
| 4 | |
| 5 | FREEZE_REVIEW_INVOKE = ( |
| 6 | "/freeze-review-loop before Thinking freeze → DONE; " |
| 7 | "ok review --freeze when CLI green" |
| 8 | ) |
| 9 | BUILD_VERIFICATION_INVOKE = ( |
| 10 | "/build-verification-review after every Auto {step}b before ROADMAP DONE" |
| 11 | ) |
| 12 | |
| 13 | |
| 14 | def governance_gates_checklist_lines(*, remind: bool = True) -> tuple[str, ...]: |
| 15 | """Return frozen Governance gates checklist lines for handover paste blocks.""" |
| 16 | if not remind: |
| 17 | return ( |
| 18 | "Governance gates (reminders suppressed — Tier 2 ack; gates still mandatory):", |
| 19 | f"- Freeze review: {FREEZE_REVIEW_INVOKE}", |
| 20 | f"- Build verification: {BUILD_VERIFICATION_INVOKE}", |
| 21 | ) |
| 22 | return ( |
| 23 | "Governance gates (mandatory — remind only; silence is not pass):", |
| 24 | f"- Freeze review: {FREEZE_REVIEW_INVOKE}", |
| 25 | f"- Build verification: {BUILD_VERIFICATION_INVOKE}", |
| 26 | ) |
File History
2 commits
sha256:a78e7e5a8740e03315f325d19edeb3aa1b306b3337d04abbaa9a9e0f3bbeb7a1
docs: MuseHub-first before ISR #74 — staging solidify NEXT
Human
3 days ago
sha256:4671b7f787ddbe63ced31c895b688c77ab495653b65a730b423329f26b3c1439
feat: K1-P1 complete — agent provenance, build-verification…
Sonnet 4.6
patch
54 days ago