claude-task-viewer 1.1.0 → 1.3.0
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/README.md +56 -32
- package/package.json +1 -1
- package/public/index.html +1294 -334
- package/server.js +36 -0
package/README.md
CHANGED
|
@@ -1,16 +1,43 @@
|
|
|
1
1
|
# Claude Task Viewer
|
|
2
2
|
|
|
3
|
-
A
|
|
3
|
+
A real-time Kanban board for monitoring Claude Code tasks. See what Claude is working on, track dependencies between tasks, and add notes that Claude can read.
|
|
4
|
+
|
|
5
|
+

|
|
6
|
+
|
|
7
|
+

|
|
8
|
+
|
|
9
|
+
## Why Use This?
|
|
10
|
+
|
|
11
|
+
When Claude Code breaks down complex work into tasks, you get visibility into its thinking — but only in the terminal. Claude Task Viewer gives you a persistent, visual dashboard to:
|
|
12
|
+
|
|
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
|
+
- **Collaborate with Claude** — Add notes to tasks that Claude reads when it picks them up
|
|
17
|
+
|
|
18
|
+
## Key Features
|
|
19
|
+
|
|
20
|
+
### Live Updates
|
|
21
|
+
Real-time feed of all in-progress tasks across every session. See what Claude is actively working on without switching terminals. Each update shows the current action and which session it belongs to.
|
|
22
|
+
|
|
23
|
+
### Task Dependencies
|
|
24
|
+
Tasks can block other tasks. The viewer shows these relationships clearly — blocked tasks display what they're waiting on, and you can trace dependency chains to understand the critical path. No more wondering why a task hasn't started.
|
|
25
|
+
|
|
26
|
+
### Notes
|
|
27
|
+
Add context to any task. Your notes are appended to the task description, so Claude sees them when it reads the task. Use this to clarify requirements, add constraints, or redirect work — all without interrupting Claude's flow.
|
|
28
|
+
|
|
29
|
+
### Session Management
|
|
30
|
+
Browse all your Claude Code sessions with progress indicators. Filter to active sessions only. Each session shows completion percentage!
|
|
4
31
|
|
|
5
32
|
## Installation
|
|
6
33
|
|
|
7
|
-
### Quick start
|
|
34
|
+
### Quick start
|
|
8
35
|
|
|
9
36
|
```bash
|
|
10
37
|
npx claude-task-viewer
|
|
11
38
|
```
|
|
12
39
|
|
|
13
|
-
|
|
40
|
+
Open http://localhost:3456
|
|
14
41
|
|
|
15
42
|
### From source
|
|
16
43
|
|
|
@@ -21,20 +48,9 @@ npm install
|
|
|
21
48
|
npm start
|
|
22
49
|
```
|
|
23
50
|
|
|
24
|
-
##
|
|
25
|
-
|
|
26
|
-
- **Kanban board** — Tasks organised in Pending, In Progress, and Completed columns
|
|
27
|
-
- **Live updates** — See tasks change status in real-time via SSE
|
|
28
|
-
- **Session browser** — View all your Claude Code sessions
|
|
29
|
-
- **Session names** — Shows custom names (from `/rename`), or the auto-generated slug
|
|
30
|
-
- **All Tasks view** — Aggregate tasks across all sessions
|
|
31
|
-
- **Task details** — Click any task to see full description with markdown rendering
|
|
32
|
-
- **Progress tracking** — Visual progress bars and completion percentages
|
|
33
|
-
- **Dependency tracking** — See which tasks block others
|
|
51
|
+
## How It Works
|
|
34
52
|
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
Claude Code stores tasks in `~/.claude/tasks/`. Each session gets its own folder containing JSON files for each task.
|
|
53
|
+
Claude Code stores tasks in `~/.claude/tasks/`. Each session has its own folder:
|
|
38
54
|
|
|
39
55
|
```
|
|
40
56
|
~/.claude/tasks/
|
|
@@ -44,47 +60,55 @@ Claude Code stores tasks in `~/.claude/tasks/`. Each session gets its own folder
|
|
|
44
60
|
└── ...
|
|
45
61
|
```
|
|
46
62
|
|
|
47
|
-
The viewer watches this directory and updates
|
|
63
|
+
The viewer watches this directory and pushes updates via Server-Sent Events. Changes appear instantly — no polling, no refresh needed.
|
|
48
64
|
|
|
49
|
-
## Task
|
|
65
|
+
## Task Structure
|
|
50
66
|
|
|
51
67
|
```json
|
|
52
68
|
{
|
|
53
69
|
"id": "1",
|
|
54
|
-
"subject": "
|
|
55
|
-
"description": "
|
|
56
|
-
"activeForm": "
|
|
57
|
-
"status": "
|
|
58
|
-
"blocks": ["
|
|
59
|
-
"blockedBy": [
|
|
70
|
+
"subject": "Implement user authentication",
|
|
71
|
+
"description": "Add JWT-based auth with refresh tokens",
|
|
72
|
+
"activeForm": "Setting up auth middleware",
|
|
73
|
+
"status": "in_progress",
|
|
74
|
+
"blocks": ["2", "3"],
|
|
75
|
+
"blockedBy": []
|
|
60
76
|
}
|
|
61
77
|
```
|
|
62
78
|
|
|
63
|
-
|
|
79
|
+
- `activeForm` — What Claude is doing right now (shown in Live Updates)
|
|
80
|
+
- `blocks` / `blockedBy` — Task dependency relationships
|
|
64
81
|
|
|
65
|
-
|
|
82
|
+
## Configuration
|
|
66
83
|
|
|
67
84
|
```bash
|
|
85
|
+
# Custom port
|
|
68
86
|
PORT=8080 npx claude-task-viewer
|
|
69
|
-
```
|
|
70
|
-
|
|
71
|
-
### Open browser automatically
|
|
72
87
|
|
|
73
|
-
|
|
88
|
+
# Open browser automatically
|
|
74
89
|
npx claude-task-viewer --open
|
|
75
90
|
```
|
|
76
91
|
|
|
77
92
|
## API
|
|
78
93
|
|
|
79
|
-
The viewer exposes a simple API:
|
|
80
|
-
|
|
81
94
|
| Endpoint | Description |
|
|
82
95
|
|----------|-------------|
|
|
83
96
|
| `GET /api/sessions` | List all sessions with task counts |
|
|
84
97
|
| `GET /api/sessions/:id` | Get all tasks for a session |
|
|
85
98
|
| `GET /api/tasks/all` | Get all tasks across all sessions |
|
|
99
|
+
| `POST /api/tasks/:session/:task/note` | Add a note to a task |
|
|
86
100
|
| `GET /api/events` | SSE stream for live updates |
|
|
87
101
|
|
|
102
|
+
## Roadmap
|
|
103
|
+
|
|
104
|
+
- **Shared task lists** — View tasks shared across multiple Claude Code sessions and subagents
|
|
105
|
+
- **Task creation** — Create tasks from the viewer that Claude picks up
|
|
106
|
+
- **CLI integration** — `claude-task-viewer add "Fix the bug"`
|
|
107
|
+
- **Desktop notifications** — Know when tasks complete
|
|
108
|
+
- **Export** — Push tasks to Linear, GitHub Issues, or Jira
|
|
109
|
+
|
|
110
|
+
[Open an issue](https://github.com/L1AD/claude-task-viewer/issues) with ideas or feedback.
|
|
111
|
+
|
|
88
112
|
## License
|
|
89
113
|
|
|
90
114
|
MIT
|