feat(mma): Implement HITL execution clutch and step-mode

This commit is contained in:
2026-02-26 20:14:27 -05:00
parent cfd20c027d
commit 1afd9c8c2a
4 changed files with 132 additions and 12 deletions

View File

@@ -12,6 +12,7 @@ class Ticket:
assigned_to: str
depends_on: List[str] = field(default_factory=list)
blocked_reason: Optional[str] = None
step_mode: bool = False
def mark_blocked(self, reason: str):
"""Sets the ticket status to 'blocked' and records the reason."""