AI Agents SDE Task Viewer
      • Pr description
  1. Home
  2. AgentSDE
  3. agent-core-control-center
  4. gh-70
  5. changes
  6. pr_description.md
pr_description.md(1.0 KB)· Apr 14, 2026· 1 min read
  • Title
  • Problem
  • Task / Link
  • Changes
  • Notes
  • Testing

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 execute from KANBAN_PHASES array and tasksByPhase init in app/pipeline/page.tsx
  • Removed execute from SKILL_KEYS in app/config/page.tsx
  • Removed phaseExecute field from Task interface in lib/api/tasks.ts; reordered phaseDeliver before phaseReview
  • Removed execute from PHASE_FIELDS and the hardcoded phase dropdown in app/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 errors
  • npm run build — compiles successfully, all 12 pages generated
PrdAi-done