claude-code-hub 0.2.0 → 0.2.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
@@ -4,6 +4,12 @@ Unified launcher for Claude Code tools — browse plugins in **Marketplace** and
4
4
 
5
5
  ## Quick Start
6
6
 
7
+ ```bash
8
+ npx claude-code-hub --open
9
+ ```
10
+
11
+ ### From Source
12
+
7
13
  ```bash
8
14
  git clone --recurse-submodules https://github.com/NikiforovAll/claude-code-hub.git
9
15
  cd claude-code-hub
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-code-hub",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "Unified hub for Claude Code tools — Marketplace + Kanban in one PWA",
5
5
  "main": "server.js",
6
6
  "bin": {
package/public/app.js CHANGED
@@ -42,6 +42,8 @@ function switchTab(appId) {
42
42
  } else {
43
43
  overlay.classList.add('fade-out');
44
44
  }
45
+
46
+ iframes[appId]?.focus();
45
47
  }
46
48
 
47
49
  function onIframeLoad(appId) {
package/server.js CHANGED
@@ -85,8 +85,8 @@ const app = express();
85
85
  app.get('/api/config', (_req, res) => {
86
86
  res.json({
87
87
  apps: {
88
- marketplace: { name: 'Marketplace', url: `http://localhost:${actualPorts.marketplace}`, icon: 'store' },
89
88
  kanban: { name: 'Kanban', url: `http://localhost:${actualPorts.kanban}`, icon: 'columns' },
89
+ marketplace: { name: 'Marketplace', url: `http://localhost:${actualPorts.marketplace}`, icon: 'store' },
90
90
  },
91
91
  });
92
92
  });