claude-code-hub 0.3.0 → 0.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.
Files changed (2) hide show
  1. package/README.md +14 -16
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Claude Code Hub
2
2
 
3
+ [![npm version](https://img.shields.io/npm/v/claude-code-hub)](https://www.npmjs.com/package/claude-code-hub)
4
+ [![license](https://img.shields.io/npm/l/claude-code-hub)](LICENSE)
5
+ [![npm downloads](https://img.shields.io/npm/dm/claude-code-hub)](https://www.npmjs.com/package/claude-code-hub)
6
+
3
7
  Unified launcher for Claude Code tools — browse plugins in **Marketplace** and track tasks in **Kanban**, all from a single chromeless PWA.
4
8
 
5
9
  ## Quick Start
@@ -19,32 +23,26 @@ npm start # http://localhost:3455
19
23
 
20
24
  ## Keyboard Shortcuts
21
25
 
22
- | Shortcut | Action |
23
- |---|---|
24
- | `Alt+1` | Switch to Marketplace |
25
- | `Alt+2` | Switch to Kanban |
26
- | `Ctrl+Alt+Right` | Switch to next tool |
27
- | `Ctrl+Alt+Left` | Switch to previous tool |
26
+ | Shortcut | Action |
27
+ | ---------------- | ----------------------- |
28
+ | `Alt+1` | Switch to Kanban |
29
+ | `Alt+2` | Switch to Marketplace |
30
+ | `Ctrl+Alt+Right` | Switch to next tool |
31
+ | `Ctrl+Alt+Left` | Switch to previous tool |
28
32
 
29
33
  ## How It Works
30
34
 
31
35
  The hub server spawns both sub-apps as child processes, each on its own port. A minimal shell page embeds them in iframes and switches visibility on tab change — zero UI chrome, just keyboard shortcuts.
32
-
33
- Sub-apps communicate with the hub via `postMessage`:
34
-
35
- ```js
36
- // From inside a sub-app, trigger cross-app navigation:
37
- hubNavigate('marketplace', '?project=/path/to/project');
38
36
  ```
39
37
 
40
38
  The Kanban sidebar shows a marketplace button on session cards — click it to jump to the Marketplace pre-filtered to that project.
41
39
 
42
40
  ## Included Tools
43
41
 
44
- | Tool | Submodule | Default Port |
45
- |---|---|---|
46
- | [Marketplace](https://github.com/NikiforovAll/claude-code-marketplace) | `marketplace/` | 3457 |
47
- | [Kanban](https://github.com/NikiforovAll/claude-task-viewer) | `cck/` | 3456 |
42
+ | Tool | Submodule | Default Port |
43
+ | ---------------------------------------------------------------------- | -------------- | ------------ |
44
+ | [Marketplace](https://github.com/NikiforovAll/claude-code-marketplace) | `marketplace/` | 3457 |
45
+ | [Kanban](https://github.com/NikiforovAll/claude-task-viewer) | `cck/` | 3456 |
48
46
 
49
47
  ## CLI Flags
50
48
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-code-hub",
3
- "version": "0.3.0",
3
+ "version": "0.4.0",
4
4
  "description": "Unified hub for Claude Code tools — Marketplace + Kanban in one PWA",
5
5
  "main": "server.js",
6
6
  "bin": {