Title#
Remove execute phase and reorder deliver before review in control center UI
Problem#
The pipeline UI still references a deprecated execute phase and has deliver ordered after review, which no longer matches the actual pipeline flow.
Task / Link#
Closes #70
Changes#
- Removed
executefromKANBAN_PHASESarray andtasksByPhaseinit inapp/pipeline/page.tsx - Removed
executefromSKILL_KEYSinapp/config/page.tsx - Removed
phaseExecutefield fromTaskinterface inlib/api/tasks.ts; reorderedphaseDeliverbeforephaseReview - Removed
executefromPHASE_FIELDSand the hardcoded phase dropdown inapp/pipeline/[taskId]/page.tsx - All four files now use phase order:
refine → plan → deliver → review → compound
Notes#
Removing phaseExecute from the Task interface is safe — TypeScript ignores extra fields in API responses, and no UI code reads task.phaseExecute.
Testing#
npm run lint— no warnings or errorsnpm run build— compiles successfully, all 12 pages generated