AI Agents SDE Task Viewer
      • Context
      • Plan
      • Prd
  1. Home
  2. AgentSDE
  3. agent-core-control-center
  4. gh-50
  5. plan
  6. plan.md
plan.md(1019 B)· Apr 2, 2026· 1 min read
  • Summary
  • Files
  • Steps
  • Verification

Plan — Add missing status filter options to pipeline page#

Summary#

Add blocked, gated, and stopped options to the status filter <select> dropdown on the pipeline page. This is a single-file UI fix — no backend changes required.

Files#

FileActionDescription
app/pipeline/page.tsxmodifyAdd three missing <option> elements to the status filter dropdown (lines 314–319)

Steps#

  1. Add missing status options — Insert <option value="blocked">Blocked</option>, <option value="gated">Gated</option>, and <option value="stopped">Stopped</option> into the <select> element at lines 314–319 of app/pipeline/page.tsx, reordering to: Active → Blocked → Gated → Complete → Failed → Stuck → Paused → Stopped.

Verification#

  • npm run lint passes with zero warnings
  • npm run build compiles successfully
  • The status dropdown visually contains all eight options (including "All statuses") in the specified order
ContextPrd