feat(12-03): extend AgentStoppedEvent reason with decompose_complete

- Add 'decompose_complete' to AgentStoppedEvent reason type union
- Follows pattern established in Phase 11 for context_complete/breakdown_complete
This commit is contained in:
Lukas May
2026-02-01 11:38:56 +01:00
parent 9d631e3970
commit fe3fed077e

View File

@@ -158,7 +158,8 @@ export interface AgentStoppedEvent extends DomainEvent {
| 'error'
| 'waiting_for_input'
| 'context_complete'
| 'breakdown_complete';
| 'breakdown_complete'
| 'decompose_complete';
};
}