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 +1 -1
- package/README.md +25 -105
- package/package.json +1 -1
- package/public/index.html +11 -0
package/LICENSE
CHANGED
package/README.md
CHANGED
|
@@ -1,55 +1,27 @@
|
|
|
1
1
|
# Claude Code Kanban
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
[](https://www.npmjs.com/package/claude-code-kanban)
|
|
4
|
+
[](LICENSE)
|
|
5
|
+
[](https://www.npmjs.com/package/claude-code-kanban)
|
|
4
6
|
|
|
5
|
-
|
|
7
|
+
> Watch Claude Code think, in real time.
|
|
6
8
|
|
|
7
|
-

|
|
8
10
|
|
|
9
|
-
|
|
11
|
+

|
|
10
12
|
|
|
11
|
-
|
|
13
|
+
## Features
|
|
12
14
|
|
|
13
|
-
- **
|
|
14
|
-
- **
|
|
15
|
-
- **
|
|
16
|
-
- **
|
|
17
|
-
|
|
18
|
-
|
|
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
|
-
|
|
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
|
-
|
|
46
|
+
If port 3456 is in use, the server falls back to a random available port.
|
|
122
47
|
|
|
123
|
-
|
|
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
|
-
|
|
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
|
-
**
|
|
53
|
+
**Does it work with agent teams?**
|
|
54
|
+
Yes. Team sessions are auto-detected with color-coded members and owner filtering.
|
|
136
55
|
|
|
137
|
-
**
|
|
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
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;
|