| 370 | |
| 371 | @dataclass |
| 372 | class ProtocolState: |
| 373 | request_id: str |
| 374 | type: str # "shutdown" | "plan_approval" |
| 375 | sender: str |
| 376 | target: str |
| 377 | status: str # pending | approved | rejected |
| 378 | payload: str # plan text or shutdown reason |
| 379 | created_at: float = field(default_factory=time.time) |
| 380 | |
| 381 | |
| 382 | pending_requests: dict[str, ProtocolState] = {} |
no outgoing calls
no test coverage detected