claude-ide-bridge 1.4.1 → 1.4.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 +53 -7
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -28,25 +28,36 @@ Claude Code connects to the bridge, which connects to your IDE extension. Claude
|
|
|
28
28
|
```bash
|
|
29
29
|
npm install -g claude-ide-bridge
|
|
30
30
|
|
|
31
|
-
#
|
|
31
|
+
# Full setup: bridge + Claude Code + remote-control in a tmux session
|
|
32
|
+
claude-ide-bridge start-all --workspace /path/to/your-project
|
|
33
|
+
|
|
34
|
+
# Or run the bridge only (MCP server mode)
|
|
32
35
|
claude-ide-bridge --workspace /path/to/your-project
|
|
33
36
|
```
|
|
34
37
|
|
|
38
|
+
No global install needed — use `npx`:
|
|
39
|
+
|
|
40
|
+
```bash
|
|
41
|
+
npx claude-ide-bridge start-all --workspace /path/to/your-project
|
|
42
|
+
```
|
|
43
|
+
|
|
35
44
|
Or from source:
|
|
36
45
|
|
|
37
46
|
```bash
|
|
38
47
|
git clone https://github.com/Oolab-labs/claude-ide-bridge.git
|
|
39
48
|
cd claude-ide-bridge
|
|
40
49
|
npm install && npm run build
|
|
41
|
-
npm start -- --workspace /path/to/your-project
|
|
50
|
+
npm run start-all -- --workspace /path/to/your-project
|
|
42
51
|
```
|
|
43
52
|
|
|
44
53
|
Install the VS Code extension for full capabilities:
|
|
45
54
|
|
|
46
55
|
```bash
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
56
|
+
# Auto-detects your editor (VS Code, Windsurf, Cursor, Antigravity)
|
|
57
|
+
claude-ide-bridge install-extension
|
|
58
|
+
|
|
59
|
+
# Or specify explicitly
|
|
60
|
+
claude-ide-bridge install-extension windsurf
|
|
50
61
|
```
|
|
51
62
|
|
|
52
63
|
Then start Claude Code and connect:
|
|
@@ -58,12 +69,29 @@ claude
|
|
|
58
69
|
|
|
59
70
|
## Full Orchestrator
|
|
60
71
|
|
|
61
|
-
The `start-all`
|
|
72
|
+
The `start-all` command launches everything in a tmux session: bridge + Claude Code + remote control, with automatic health monitoring and process restart.
|
|
62
73
|
|
|
63
74
|
```bash
|
|
75
|
+
# Via npm global install or npx
|
|
76
|
+
claude-ide-bridge start-all --workspace /path/to/your-project
|
|
77
|
+
|
|
78
|
+
# Or the dedicated alias
|
|
79
|
+
claude-ide-bridge-start --workspace /path/to/your-project
|
|
80
|
+
|
|
81
|
+
# From source
|
|
64
82
|
npm run start-all -- --workspace /path/to/your-project
|
|
65
83
|
```
|
|
66
84
|
|
|
85
|
+
Options:
|
|
86
|
+
|
|
87
|
+
| Flag | Description |
|
|
88
|
+
|------|-------------|
|
|
89
|
+
| `--workspace <path>` | Project directory (default: `.`) |
|
|
90
|
+
| `--notify <topic>` | ntfy.sh topic for push notifications |
|
|
91
|
+
| `--ide <name>` | IDE name hint (e.g. `windsurf`) |
|
|
92
|
+
|
|
93
|
+
Requires `tmux` and the `claude` CLI to be on `PATH`.
|
|
94
|
+
|
|
67
95
|
## Claude Code Plugin
|
|
68
96
|
|
|
69
97
|
The bridge ships as a **Claude Code plugin** with 6 skills, 3 subagents, and 3 hooks:
|
|
@@ -185,10 +213,27 @@ claude -p "Map the project using getFileTree, getDocumentSymbols, and getCallHie
|
|
|
185
213
|
Install the extension in any supported editor:
|
|
186
214
|
|
|
187
215
|
```bash
|
|
216
|
+
# Auto-detect editor
|
|
217
|
+
claude-ide-bridge install-extension
|
|
218
|
+
|
|
219
|
+
# Specify editor
|
|
220
|
+
claude-ide-bridge install-extension windsurf
|
|
221
|
+
claude-ide-bridge install-extension cursor
|
|
222
|
+
|
|
223
|
+
# Or via the install script
|
|
188
224
|
bash scripts/install-extension.sh --ide <name>
|
|
189
225
|
```
|
|
190
226
|
|
|
191
|
-
## CLI
|
|
227
|
+
## CLI Reference
|
|
228
|
+
|
|
229
|
+
### Subcommands
|
|
230
|
+
|
|
231
|
+
```
|
|
232
|
+
claude-ide-bridge start-all [options] Full tmux orchestrator (bridge + Claude + remote)
|
|
233
|
+
claude-ide-bridge install-extension [editor] Install VS Code extension into your IDE
|
|
234
|
+
```
|
|
235
|
+
|
|
236
|
+
### Bridge options (default mode)
|
|
192
237
|
|
|
193
238
|
```
|
|
194
239
|
--workspace <path> Workspace folder (default: cwd)
|
|
@@ -199,6 +244,7 @@ bash scripts/install-extension.sh --ide <name>
|
|
|
199
244
|
--allow-command <cmd> Add command to execution allowlist (repeatable)
|
|
200
245
|
--timeout <ms> Command timeout in ms (default: 30000, max: 120000)
|
|
201
246
|
--max-result-size <KB> Max output size in KB (default: 512, max: 4096)
|
|
247
|
+
--auto-tmux Re-exec inside a tmux session automatically
|
|
202
248
|
--verbose Enable debug logging
|
|
203
249
|
--help Show this help
|
|
204
250
|
```
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "claude-ide-bridge",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.2",
|
|
4
4
|
"description": "Standalone MCP bridge for Claude Code IDE integration with any editor — 115+ tools for LSP, debugging, terminals, Git, GitHub, and more",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|