claudehq 1.0.0 → 1.0.2
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 +25 -1
- package/bin/cli.js +2 -2
- package/lib/core/claude-events.js +308 -0
- package/lib/core/config.js +79 -0
- package/lib/core/event-bus.js +127 -0
- package/lib/core/sse.js +96 -0
- package/lib/core/watchers.js +127 -0
- package/lib/data/conversation.js +195 -0
- package/lib/data/plans.js +247 -0
- package/lib/data/tasks.js +263 -0
- package/lib/data/todos.js +205 -0
- package/lib/index.js +400 -0
- package/lib/routes/api.js +611 -0
- package/lib/server.js +778 -84
- package/lib/sessions/manager.js +870 -0
- package/package.json +11 -4
- package/public/index.html +6765 -0
- package/screenshots/activity-feed.png +0 -0
- package/screenshots/create-task.png +0 -0
- package/screenshots/task-detail.png +0 -0
- package/screenshots/task-list.png +0 -0
- package/screenshots/task-status.png +0 -0
package/package.json
CHANGED
|
@@ -1,16 +1,21 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "claudehq",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "Claude HQ - A real-time command center for Claude Code sessions",
|
|
5
|
-
"main": "lib/
|
|
5
|
+
"main": "lib/index.js",
|
|
6
6
|
"bin": {
|
|
7
7
|
"claudehq": "./bin/cli.js",
|
|
8
8
|
"chq": "./bin/cli.js"
|
|
9
9
|
},
|
|
10
10
|
"scripts": {
|
|
11
|
-
"start": "node lib/
|
|
11
|
+
"start": "node lib/index.js",
|
|
12
12
|
"setup": "node scripts/setup.js install",
|
|
13
|
-
"uninstall": "node scripts/setup.js uninstall"
|
|
13
|
+
"uninstall": "node scripts/setup.js uninstall",
|
|
14
|
+
"test": "node tests/run-all.js",
|
|
15
|
+
"test:api": "node tests/api-endpoints.test.js",
|
|
16
|
+
"test:session": "node tests/session-selection.test.js",
|
|
17
|
+
"test:sse": "node tests/sse-events.test.js",
|
|
18
|
+
"test:status": "node tests/status-management.test.js"
|
|
14
19
|
},
|
|
15
20
|
"keywords": [
|
|
16
21
|
"claude",
|
|
@@ -35,8 +40,10 @@
|
|
|
35
40
|
"files": [
|
|
36
41
|
"bin/",
|
|
37
42
|
"lib/",
|
|
43
|
+
"public/",
|
|
38
44
|
"hooks/",
|
|
39
45
|
"scripts/",
|
|
46
|
+
"screenshots/",
|
|
40
47
|
"README.md"
|
|
41
48
|
]
|
|
42
49
|
}
|