feat: Show detailing status in initiative overview and phase sidebar

Add 'detailing' activity state derived from active detail agents
(mode=detail, status running/waiting_for_input). Initiative cards show
pulsing "Detailing" indicator. Phase sidebar items show spinner during
active detailing and "Review changes" when the agent finishes.
This commit is contained in:
Lukas May
2026-03-03 13:08:05 +01:00
parent 96386e1c3d
commit 411700d37d
13 changed files with 151 additions and 17 deletions

View File

@@ -6,6 +6,7 @@ export type ExecutionMode = 'yolo' | 'review_per_phase';
export type InitiativeActivityState =
| 'idle' // Active but no phases
| 'planning' // All phases pending (no work started)
| 'detailing' // Detail agent actively decomposing phases into tasks
| 'ready' // Phases approved, waiting to execute
| 'executing' // At least one phase in_progress
| 'pending_review' // At least one phase pending_review