claude-task-viewer 1.2.0 → 1.4.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 CHANGED
@@ -1,20 +1,46 @@
1
1
  # Claude Task Viewer
2
2
 
3
- A web-based Kanban board for viewing Claude Code tasks. Watch your tasks update in real-time as Claude works.
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
4
 
5
- ![Dark mode](screenshot-dark.png)
5
+ ![Dark mode](screenshot-dark-v2.png)
6
6
 
7
- ![Light mode](screenshot-light.png)
7
+ ![Light mode](screenshot-light-v2.png)
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
+ ### Project Filtering
30
+ Filter tasks by project using the dropdown. Working on multiple codebases? See only what's relevant. Combine with the session filter to show just active sessions for a specific project.
31
+
32
+ ### Session Management
33
+ Browse all your Claude Code sessions with progress indicators. Filter to active sessions only, or show everything. Each session shows completion percentage.
8
34
 
9
35
  ## Installation
10
36
 
11
- ### Quick start (npx)
37
+ ### Quick start
12
38
 
13
39
  ```bash
14
40
  npx claude-task-viewer
15
41
  ```
16
42
 
17
- Then open http://localhost:3456
43
+ Open http://localhost:3456
18
44
 
19
45
  ### From source
20
46
 
@@ -25,20 +51,9 @@ npm install
25
51
  npm start
26
52
  ```
27
53
 
28
- ## Features
29
-
30
- - **Kanban board** — Tasks organised in Pending, In Progress, and Completed columns
31
- - **Live updates** — See tasks change status in real-time via SSE
32
- - **Session browser** — View all your Claude Code sessions
33
- - **Session names** — Shows custom names (from `/rename`), or the auto-generated slug
34
- - **All Tasks view** — Aggregate tasks across all sessions
35
- - **Task details** — Click any task to see full description with markdown rendering
36
- - **Progress tracking** — Visual progress bars and completion percentages
37
- - **Dependency tracking** — See which tasks block others
54
+ ## How It Works
38
55
 
39
- ## How it works
40
-
41
- Claude Code stores tasks in `~/.claude/tasks/`. Each session gets its own folder containing JSON files for each task.
56
+ Claude Code stores tasks in `~/.claude/tasks/`. Each session has its own folder:
42
57
 
43
58
  ```
44
59
  ~/.claude/tasks/
@@ -48,47 +63,55 @@ Claude Code stores tasks in `~/.claude/tasks/`. Each session gets its own folder
48
63
  └── ...
49
64
  ```
50
65
 
51
- The viewer watches this directory and updates the UI in real-time.
66
+ The viewer watches this directory and pushes updates via Server-Sent Events. Changes appear instantly — no polling, no refresh needed.
52
67
 
53
- ## Task structure
68
+ ## Task Structure
54
69
 
55
70
  ```json
56
71
  {
57
72
  "id": "1",
58
- "subject": "Task title",
59
- "description": "Detailed markdown description",
60
- "activeForm": "Present tense status shown while in progress",
61
- "status": "pending | in_progress | completed",
62
- "blocks": ["task-ids-this-blocks"],
63
- "blockedBy": ["task-ids-blocking-this"]
73
+ "subject": "Implement user authentication",
74
+ "description": "Add JWT-based auth with refresh tokens",
75
+ "activeForm": "Setting up auth middleware",
76
+ "status": "in_progress",
77
+ "blocks": ["2", "3"],
78
+ "blockedBy": []
64
79
  }
65
80
  ```
66
81
 
67
- ## Configuration
82
+ - `activeForm` — What Claude is doing right now (shown in Live Updates)
83
+ - `blocks` / `blockedBy` — Task dependency relationships
68
84
 
69
- ### Custom port
85
+ ## Configuration
70
86
 
71
87
  ```bash
88
+ # Custom port
72
89
  PORT=8080 npx claude-task-viewer
73
- ```
74
-
75
- ### Open browser automatically
76
90
 
77
- ```bash
91
+ # Open browser automatically
78
92
  npx claude-task-viewer --open
79
93
  ```
80
94
 
81
95
  ## API
82
96
 
83
- The viewer exposes a simple API:
84
-
85
97
  | Endpoint | Description |
86
98
  |----------|-------------|
87
99
  | `GET /api/sessions` | List all sessions with task counts |
88
100
  | `GET /api/sessions/:id` | Get all tasks for a session |
89
101
  | `GET /api/tasks/all` | Get all tasks across all sessions |
102
+ | `POST /api/tasks/:session/:task/note` | Add a note to a task |
90
103
  | `GET /api/events` | SSE stream for live updates |
91
104
 
105
+ ## Roadmap
106
+
107
+ - **Shared task lists** — View tasks shared across multiple Claude Code sessions and subagents
108
+ - **Task creation** — Create tasks from the viewer that Claude picks up
109
+ - **CLI integration** — `claude-task-viewer add "Fix the bug"`
110
+ - **Desktop notifications** — Know when tasks complete
111
+ - **Export** — Push tasks to Linear, GitHub Issues, or Jira
112
+
113
+ [Open an issue](https://github.com/L1AD/claude-task-viewer/issues) with ideas or feedback.
114
+
92
115
  ## License
93
116
 
94
117
  MIT
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-task-viewer",
3
- "version": "1.2.0",
3
+ "version": "1.4.0",
4
4
  "description": "A web-based Kanban board for viewing Claude Code tasks",
5
5
  "main": "server.js",
6
6
  "bin": {