claude-ide-bridge 2.1.11 → 2.1.12
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "claude-ide-bridge",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.12",
|
|
4
4
|
"description": "Standalone MCP bridge for Claude Code IDE integration with any editor — 120+ tools for LSP, debugging, terminals, Git, GitHub, and more",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -2,11 +2,18 @@
|
|
|
2
2
|
|
|
3
3
|
The bridge is connected via MCP. Call `getToolCapabilities` at the start of each session to confirm which tools are available and note any that require the VS Code extension.
|
|
4
4
|
|
|
5
|
+
### Bug fix methodology
|
|
6
|
+
|
|
7
|
+
When a bug is reported, do NOT start by trying to fix it. Instead:
|
|
8
|
+
1. Write a test that reproduces the bug (the test should fail)
|
|
9
|
+
2. Fix the bug and confirm the test now passes
|
|
10
|
+
3. Only then consider the bug fixed
|
|
11
|
+
|
|
5
12
|
### Workflow rules
|
|
6
13
|
|
|
7
14
|
- **After editing any file** — call `getDiagnostics` to catch errors introduced by the change
|
|
8
15
|
- **Running tests** — use `runTests` instead of shell commands; output streams in real time
|
|
9
|
-
- **Git operations** — use bridge git tools (`
|
|
16
|
+
- **Git operations** — use bridge git tools (`getGitStatus`, `gitAdd`, `gitCommit`, `gitPush`) for structured, auditable operations
|
|
10
17
|
- **Debugging** — use `setDebugBreakpoints` → `startDebugging` → `evaluateInDebugger` for interactive debugging
|
|
11
18
|
- **Navigating code** — prefer `goToDefinition`, `findReferences`, and `getCallHierarchy` over grep
|
|
12
19
|
|
|
@@ -16,7 +23,7 @@ The bridge is connected via MCP. Call `getToolCapabilities` at the start of each
|
|
|
16
23
|
|---|---|
|
|
17
24
|
| Check errors / warnings | `getDiagnostics` |
|
|
18
25
|
| Run tests | `runTests` |
|
|
19
|
-
| Git status / diff | `
|
|
26
|
+
| Git status / diff | `getGitStatus`, `getGitDiff` |
|
|
20
27
|
| Stage, commit, push | `gitAdd`, `gitCommit`, `gitPush` |
|
|
21
28
|
| Open a pull request | `githubCreatePR` |
|
|
22
29
|
| Navigate to definition | `goToDefinition` |
|