claude-code-hub 0.5.0 → 0.6.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.
Files changed (2) hide show
  1. package/README.md +10 -0
  2. package/package.json +2 -1
package/README.md CHANGED
@@ -31,6 +31,16 @@ npm install && npm install --prefix marketplace && npm install --prefix cck
31
31
  npm start # http://localhost:3455
32
32
  ```
33
33
 
34
+ ## Agent Observability (one-time setup)
35
+
36
+ For the full Kanban experience — agent log, live subagent tracking, waiting-for-user indicators, and context window monitoring — install the hooks:
37
+
38
+ ```bash
39
+ npx claude-code-kanban --install
40
+ ```
41
+
42
+ Without hooks you still get the task board, but no agent activity or live indicators. See the [Kanban README](https://github.com/NikiforovAll/claude-task-viewer#getting-started) for details.
43
+
34
44
  ## Keyboard Shortcuts
35
45
 
36
46
  | Shortcut | Action |
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-code-hub",
3
- "version": "0.5.0",
3
+ "version": "0.6.0",
4
4
  "description": "Unified hub for Claude Code tools — Marketplace + Kanban in one PWA",
5
5
  "main": "server.js",
6
6
  "bin": {
@@ -35,6 +35,7 @@
35
35
  },
36
36
  "homepage": "https://github.com/NikiforovAll/claude-code-hub#readme",
37
37
  "dependencies": {
38
+ "claude-code-cost": "^0.1.0",
38
39
  "claude-code-kanban": "^2.2.0",
39
40
  "claude-code-marketplace": "^0.5.0",
40
41
  "express": "^4.21.0",