claudehq 1.0.0 → 1.0.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/README.md CHANGED
@@ -2,11 +2,13 @@
2
2
 
3
3
  A real-time command center for all your Claude Code sessions.
4
4
 
5
+ ![Claude HQ - Task List](screenshots/task-status.png)
6
+
5
7
  ## Features
6
8
 
7
9
  - **Session Discovery**: Automatically discovers all running Claude Code sessions
8
10
  - **Real-Time Activity**: Live stream of tool usage, prompts, and responses
9
- - **Task Management**: View tasks organized by status (Pending, In Progress, Completed)
11
+ - **Task Management**: View tasks organized by status with dependency tracking
10
12
  - **Linear-Inspired UI**: Clean, modern interface with dark/light themes
11
13
  - **Zero Config**: One command setup with automatic hook installation
12
14
 
@@ -22,6 +24,28 @@ npx claudehq
22
24
 
23
25
  Open **http://localhost:3456** - done!
24
26
 
27
+ ## Screenshots
28
+
29
+ ### Task List with Dependencies
30
+ Track tasks across all your Claude sessions with automatic dependency management.
31
+
32
+ ![Task List](screenshots/task-list.png)
33
+
34
+ ### Task Details
35
+ View and edit task properties, dependencies, and blocking relationships.
36
+
37
+ ![Task Detail](screenshots/task-detail.png)
38
+
39
+ ### Create Tasks with Dependencies
40
+ Create new tasks and define what they're blocked by or what they block.
41
+
42
+ ![Create Task](screenshots/create-task.png)
43
+
44
+ ### Live Activity Feed
45
+ Watch Claude work in real-time with tool calls, responses, and conversation history.
46
+
47
+ ![Activity Feed](screenshots/activity-feed.png)
48
+
25
49
  ## Requirements
26
50
 
27
51
  - **Node.js** 18+
package/lib/server.js CHANGED
@@ -4579,7 +4579,6 @@ const HTML = `<!DOCTYPE html>
4579
4579
  const chevronIcon = '<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M9 18l6-6-6-6"/></svg>';
4580
4580
  const tasksIcon = '<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><rect x="3" y="3" width="18" height="18" rx="2" ry="2"/><line x1="9" y1="9" x2="15" y2="9"/><line x1="9" y1="13" x2="15" y2="13"/><line x1="9" y1="17" x2="12" y2="17"/></svg>';
4581
4581
  const todosIcon = '<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M9 11l3 3L22 4"/><path d="M21 12v7a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h11"/></svg>';
4582
- const skillsIcon = '<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><polygon points="12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2"/></svg>';
4583
4582
  const plansIcon = '<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"/><polyline points="14 2 14 8 20 8"/><line x1="16" y1="13" x2="8" y2="13"/><line x1="16" y1="17" x2="8" y2="17"/></svg>';
4584
4583
  const inboxIcon = '<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><polyline points="22 12 16 12 14 15 10 15 8 12 2 12"/><path d="M5.45 5.11L2 12v6a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-6l-3.45-6.89A2 2 0 0 0 16.76 4H7.24a2 2 0 0 0-1.79 1.11z"/></svg>';
4585
4584
 
@@ -4644,10 +4643,6 @@ const HTML = `<!DOCTYPE html>
4644
4643
  '<span class="view-name">Plans</span>' +
4645
4644
  (planCount > 0 ? '<span class="view-count">' + planCount + '</span>' : '') +
4646
4645
  '</div>' +
4647
- '<div class="session-view-item disabled" style="opacity: 0.4; cursor: not-allowed;" title="Coming soon">' +
4648
- '<span class="view-icon">' + skillsIcon + '</span>' +
4649
- '<span class="view-name">Skills</span>' +
4650
- '</div>' +
4651
4646
  '</div>' +
4652
4647
  '</div>';
4653
4648
  }).join('');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claudehq",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Claude HQ - A real-time command center for Claude Code sessions",
5
5
  "main": "lib/server.js",
6
6
  "bin": {
@@ -37,6 +37,7 @@
37
37
  "lib/",
38
38
  "hooks/",
39
39
  "scripts/",
40
+ "screenshots/",
40
41
  "README.md"
41
42
  ]
42
43
  }
Binary file
Binary file
Binary file
Binary file
Binary file