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.
- package/README.md +14 -16
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# Claude Code Hub
|
|
2
2
|
|
|
3
|
+
[](https://www.npmjs.com/package/claude-code-hub)
|
|
4
|
+
[](LICENSE)
|
|
5
|
+
[](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
|
|
23
|
-
|
|
24
|
-
| `Alt+1`
|
|
25
|
-
| `Alt+2`
|
|
26
|
-
| `Ctrl+Alt+Right` | Switch to next tool
|
|
27
|
-
| `Ctrl+Alt+Left`
|
|
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
|
|
45
|
-
|
|
46
|
-
| [Marketplace](https://github.com/NikiforovAll/claude-code-marketplace) | `marketplace/` | 3457
|
|
47
|
-
| [Kanban](https://github.com/NikiforovAll/claude-task-viewer)
|
|
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
|
|