types.py
file-level
1
files
1
commits
0
hotspots
0
🧊 dead
0
💥 blast risk
| 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) |