claude-code-kanban 1.11.0 → 1.11.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2025
3
+ Copyright (c) 2026
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
package/README.md CHANGED
@@ -1,55 +1,27 @@
1
1
  # Claude Code Kanban
2
2
 
3
- A real-time Kanban board for **observing** Claude Code tasks. See what Claude is working on, track dependencies between tasks, and manage task cleanup and priority.
3
+ [![npm version](https://img.shields.io/npm/v/claude-code-kanban)](https://www.npmjs.com/package/claude-code-kanban)
4
+ [![license](https://img.shields.io/npm/l/claude-code-kanban)](LICENSE)
5
+ [![npm downloads](https://img.shields.io/npm/dm/claude-code-kanban)](https://www.npmjs.com/package/claude-code-kanban)
4
6
 
5
- ![Dark mode](screenshot-dark-v2.png)
7
+ > Watch Claude Code think, in real time.
6
8
 
7
- ![Light mode](screenshot-light-v2.png)
9
+ ![Dark mode](assets/screenshot-dark-v2.png)
8
10
 
9
- ## Why Use This?
11
+ ![Light mode](assets/screenshot-light-v2.png)
10
12
 
11
- When Claude Code breaks down complex work into tasks, you get visibility into its thinking — but only in the terminal. Claude Code Kanban gives you a persistent, visual dashboard to:
13
+ ## Features
12
14
 
13
- - **See the big picture** — All your sessions and tasks in one place
14
- - **Know what's happening now** — Live Updates show exactly what Claude is doing across all sessions
15
- - **Understand task dependencies** — See which tasks are blocked and what's holding them up
16
- - **Clean up completed work** — Delete tasks when no longer needed (with dependency checking)
17
-
18
- ## Key Features
19
-
20
- ### Observation-Focused Design
21
- Claude Code controls task state — the viewer shows you what's happening:
22
- - **Real-time status** — See tasks move through Pending → In Progress → Completed as Claude works
23
- - **Active session detection** — Indicators show which sessions have in-progress tasks
24
- - **Task dependencies** — Visualise blockedBy/blocks relationships to understand the critical path
25
- - **Live activity feed** — Real-time stream of all in-progress tasks across every session
26
-
27
- ### Agent Teams Support
28
- - **Team detection** — Automatically detects team sessions with multiple agents
29
- - **Owner filtering** — Filter Kanban board by team member with color-coded agent indicators
30
- - **Member count badges** — See how many agents are working in each session
31
-
32
- ### Cleanup Operations
33
- - **Delete tasks** — Remove tasks with the delete button or press `D` (includes safety checks for dependencies)
34
- - **Bulk delete** — Delete all tasks in a session at once
35
-
36
- ### Session Management
37
- View and organize your Claude Code sessions:
38
- - **Session discovery** — Automatically finds all sessions in `~/.claude/tasks/` and `~/.claude/projects/`
39
- - **View project paths** — See the full filesystem path for each project
40
- - **Git branch display** — See which branch each session is working on
41
- - **Fuzzy search** — Search across session names, task descriptions, and project paths with instant filtering
42
- - **Session filters** — Filter by active/all sessions and by project
43
-
44
- ### Keyboard Shortcuts
45
- - `?` — Show help with all keyboard shortcuts
46
- - `D` — Delete the currently selected task (with confirmation and dependency checking)
47
- - `Esc` — Close detail panel or modals
15
+ - **Real-time updates** — Tasks move through Pending In Progress → Completed as Claude works
16
+ - **Agent teams** — Color-coded team members, owner filtering, member count badges
17
+ - **Task dependencies** — See blockedBy/blocks relationships and the critical path
18
+ - **Live activity feed** — Stream of all in-progress tasks across every session
19
+ - **Session management** — Fuzzy search, project/branch display, active session indicators
20
+ - **Cleanup** — Delete tasks (with dependency checks) or bulk-delete entire sessions
21
+ - **Keyboard shortcuts** — Press `?` for help
48
22
 
49
23
  ## Installation
50
24
 
51
- ### Quick start
52
-
53
25
  ```bash
54
26
  npx claude-code-kanban
55
27
  ```
@@ -63,78 +35,26 @@ npm install -g claude-code-kanban
63
35
  claude-code-kanban --open
64
36
  ```
65
37
 
66
- ### From source
67
-
68
- ```bash
69
- git clone https://github.com/NikiforovAll/claude-task-viewer.git
70
- cd claude-task-viewer
71
- npm install
72
- npm start
73
- ```
74
-
75
- ## How It Works
76
-
77
- Claude Code stores tasks in `~/.claude/tasks/`. Each session has its own folder:
78
-
79
- ```
80
- ~/.claude/tasks/
81
- └── {session-uuid}/
82
- ├── 1.json
83
- ├── 2.json
84
- └── ...
85
- ```
86
-
87
- The viewer watches this directory and pushes updates via Server-Sent Events. Changes appear instantly — no polling, no refresh needed.
88
-
89
- If port 3456 is already in use, the server automatically falls back to a random available port.
90
-
91
- ## Task Structure
92
-
93
- ```json
94
- {
95
- "id": "1",
96
- "subject": "Implement user authentication",
97
- "description": "Add JWT-based auth with refresh tokens",
98
- "activeForm": "Setting up auth middleware",
99
- "status": "in_progress",
100
- "blocks": ["2", "3"],
101
- "blockedBy": []
102
- }
103
- ```
104
-
105
- - `activeForm` — What Claude is doing right now (shown in Live Updates)
106
- - `blocks` / `blockedBy` — Task dependency relationships
107
-
108
38
  ## Configuration
109
39
 
110
40
  ```bash
111
- # Custom port
112
- PORT=8080 npx claude-code-kanban
113
-
114
- # Open browser automatically
115
- npx claude-code-kanban --open
116
-
117
- # Use a different Claude config directory (for multiple accounts)
118
- npx claude-code-kanban --dir=~/.claude-work
41
+ PORT=8080 npx claude-code-kanban # Custom port
42
+ npx claude-code-kanban --open # Auto-open browser
43
+ npx claude-code-kanban --dir=~/.claude-work # Custom Claude config dir
119
44
  ```
120
45
 
121
- ## API
46
+ If port 3456 is in use, the server falls back to a random available port.
122
47
 
123
- | Endpoint | Method | Description |
124
- |----------|--------|-------------|
125
- | `/api/sessions` | GET | List all sessions with task counts |
126
- | `/api/sessions/:id` | GET | Get all tasks for a session |
127
- | `/api/tasks/all` | GET | Get all tasks across all sessions |
128
- | `/api/tasks/:session/:task` | DELETE | Delete a task (checks dependencies) |
129
- | `/api/tasks/:session/:task/note` | POST | Add a note to a task |
130
- | `/api/teams/:name` | GET | Load team configuration |
131
- | `/api/events` | GET | SSE stream for live updates |
48
+ ## FAQ
132
49
 
133
- ## Design Philosophy
50
+ **Does this control Claude?**
51
+ No. Claude Code owns all task state. The viewer only observes — it never directs Claude's work.
134
52
 
135
- **Observation over Control**: Claude Code owns task state. The task viewer's job is to show you what Claude is doing, not to direct it. This keeps the viewer in sync with reality and prevents confusion about whether a task's status reflects what Claude is actually doing or just human intent.
53
+ **Does it work with agent teams?**
54
+ Yes. Team sessions are auto-detected with color-coded members and owner filtering.
136
55
 
137
- **Limited interaction:** You can delete tasks and add notes, but task status, subject, and description reflect Claude's actual work and can only be changed by Claude Code itself.
56
+ **Does it require Claude Code to be running?**
57
+ No. It reads task files from `~/.claude/tasks/`. You can view past sessions anytime.
138
58
 
139
59
  ## License
140
60
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-code-kanban",
3
- "version": "1.11.0",
3
+ "version": "1.11.1",
4
4
  "description": "A web-based Kanban board for viewing Claude Code tasks with agent teams support",
5
5
  "main": "server.js",
6
6
  "bin": {
package/public/index.html CHANGED
@@ -979,6 +979,17 @@
979
979
  margin-bottom: 0;
980
980
  }
981
981
 
982
+ .detail-desc ol,
983
+ .detail-desc ul {
984
+ padding-left: 1.5em;
985
+ margin: 0 0 12px 0;
986
+ }
987
+
988
+ .detail-desc ol:last-child,
989
+ .detail-desc ul:last-child {
990
+ margin-bottom: 0;
991
+ }
992
+
982
993
  /* Note form */
983
994
  .note-section {
984
995
  margin-top: 24px;