types.py
python
sha256:8461d44b77376fbf06fa7c3e085d309e3010fd8d5886d63c63e69ce118811ad4
docs: record AFF-b feature-tip SHAs after AFF-b-ISR commit.
Human
4 days ago
| 1 | """Types for governance gate reminders (§KH1.9).""" |
| 2 | |
| 3 | from __future__ import annotations |
| 4 | |
| 5 | from dataclasses import dataclass |
| 6 | |
| 7 | |
| 8 | @dataclass(frozen=True) |
| 9 | class PendingGate: |
| 10 | """One pending governance gate detected by read-only scan.""" |
| 11 | |
| 12 | gate_id: str # freeze_review | build_verification | handover_paste |
| 13 | phase_id: str |
| 14 | artifact: str | None |
| 15 | message: str |
| 16 | invoke: str |
| 17 | |
| 18 | |
| 19 | @dataclass(frozen=True) |
| 20 | class GateScanResult: |
| 21 | """Outcome of scanning roadmap + handover for pending gates.""" |
| 22 | |
| 23 | enabled: bool |
| 24 | suppressed: bool |
| 25 | pending: tuple[PendingGate, ...] |
| 26 | active_phases: tuple[str, ...] |
| 27 | |
| 28 | @property |
| 29 | def has_pending(self) -> bool: |
| 30 | return bool(self.pending) |
File History
1 commit
sha256:8461d44b77376fbf06fa7c3e085d309e3010fd8d5886d63c63e69ce118811ad4
docs: record AFF-b feature-tip SHAs after AFF-b-ISR commit.
Human
4 days ago