feat(studio): #1250 — Kanban lifecycle view over run status#1268
Open
ohdearquant wants to merge 1 commit into
Open
feat(studio): #1250 — Kanban lifecycle view over run status#1268ohdearquant wants to merge 1 commit into
ohdearquant wants to merge 1 commit into
Conversation
Adds /kanban page with six lanes derived from canonical session statuses (queued/in-progress/review/done/failed/cancelled). Cards show name, project, status pill, agent count, elapsed, and link to detail. Auto-refreshes every 3 s reusing the exact polling pattern from /runs. Read-only — drag-to-transition deferred (no /api/runs/ transition endpoint exists). Review/Waiting lane is intentionally empty until #1251 lifecycle-signal enrichment is merged. Nav entry added in Work group adjacent to Shows and Runs. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
#1250 — Kanban lifecycle board
"DAG = topology view, Kanban = lifecycle view." A read-only Kanban projecting plays/sessions onto lifecycle lanes, derived from the existing run-status field.
What shipped
apps/studio/frontend/app/kanban/page.tsx, +300) + nav entry.VALID_SESSION_STATUSES(lionagi/state/db.py:206) + documented runs-service aliases — no invented enum. Mapping: Queued/Pending → In Progress (running) → Review → Done (completed) → Failed (failed/timed_out/cancelled).Decoupled from orch-emissions (by design)
Maps existing statuses today — does not depend on the not-yet-merged #1251 lifecycle signals. The Review lane is intentionally empty pending that; richer #1251-signal lane derivation is the documented follow-up.
Read-only is deliberate
/api/runs/is list/get only; the sole transition endpoint (/api/admin/transition) is bearer-gated + terminal-only. No fake client-side transitions — drag-to-transition deferred until a real endpoint exists.Verification
pnpm typecheckclean ·pnpm lint0 errors (2 warnings pre-existing, unrelated files) ·pnpm buildemits/kanbanstatic route · prettier clean.Gate
critic verdict: APPROVE — CRIT:0 MAJ:0 MIN:2 PASS:9. Independently re-verified against the worktree + live status counts.
Closes #1250
🤖 Generated with Claude Code