feat: add built-in Kanban board to web UI#42
Open
chetan-guevara wants to merge 1 commit intomoazbuilds:masterfrom
Open
feat: add built-in Kanban board to web UI#42chetan-guevara wants to merge 1 commit intomoazbuilds:masterfrom
chetan-guevara wants to merge 1 commit intomoazbuilds:masterfrom
Conversation
Adds a three-column Kanban board (To Do / In Progress / Done) directly into the ClaudeClaw web UI with no external server, iframe, or hardcoded localhost URLs. Board state persists to .claude/claudeclaw/kanban.json via new GET/POST /api/kanban endpoints. Includes tab navigation between Dashboard and Kanban views, an add-task modal, clear-done action, and 10-second polling for live agent-driven updates.
Fenrur
added a commit
to Fenrur/claudeclaw
that referenced
this pull request
Mar 17, 2026
- Kanban board with Todo/In Progress/Done columns - Persistent storage via /api/kanban endpoints - Task creation modal, drag-and-drop ready - Integrated as third tab alongside Dashboard and Chat Co-Authored-By: Claude Opus 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.
Summary
Adds a built-in Kanban board as a native tab in the ClaudeClaw web UI — no external server, no iframe, no configuration required. Task state is persisted to
.claude/claudeclaw/kanban.jsonalongside existing ClaudeClaw data.Features
+ Add taskbutton)Architecture
New service:
src/ui/services/kanban.tsHandles all reads/writes to
.claude/claudeclaw/kanban.json:readKanban()— reads the board, initialises missing columns gracefullywriteKanban(board)— persists to diskaddCardToColumn(column, card)— atomic addmoveCard(id, toColumn, patch?)— atomic move across columnsNew API endpoints in
server.tsGET /api/kanban— returns the full board JSONPOST /api/kanban— writes the full board JSONBoard data schema
{ "columns": { "todo": [], "in_progress": [], "done": [] } }Each card:
Note on agent auto-tracking
The kanban service is self-contained and works standalone. When combined with PR #41 (agent lifecycle tracking), the
server.tschat endpoint can calladdCardToColumn/moveCardto automatically track sub-agent activity — but this PR does not depend on #41 and can be merged independently.Test plan
http://127.0.0.1:4632, click the Kanban tabkanban.json.claude/claudeclaw/kanban.jsonis written correctly after each action