Zone 03 · Self-repairing workflows

Immune Healing

incidents / 24h
13
auto-healed
9
mttr
4m 12s

Open anomalies

4 active

Broken state

imm-441
PO approval routing fails for >$50k
1  trigger:  on(po.submitted)
2  guard:    amount > 10000
3  step:     route_to(finance.approver)
4  step:     wait_for(approval, 24h)
5  step:     post(erp.create_po)
6  ─ ✕ route_to(finance.approver) when amount > 10000 required 
7    reason: legacy threshold; policy changed
8    impact: stalled packets accumulating

Proposed repair

confidence 0.94
Branch on amount > 50000 → CFO approverproposed
1  trigger:  on(po.submitted)
2  guard:    amount > 10000
3  step:     route_to(finance.approver)
4  branch:   if amount > 50000
5      step:  route_to(cfo.approver)
6      step:  notify(board.observer)
7  step:     wait_for(approval, 24h)
8  step:     post(erp.create_po)
9  ✓ memory.update(if amount > 50000 → route_to(cfo.approver) + notify(board.observer))