@maxanatsko/llm-cli-bridge 3.1.0 → 3.1.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 +21 -11
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -28,7 +28,8 @@
|
|
|
28
28
|
|
|
29
29
|
```
|
|
30
30
|
Node.js ≥ 16.0.0
|
|
31
|
-
Google Gemini CLI (
|
|
31
|
+
Google Gemini CLI — for Gemini backend (gemini-cli.dev)
|
|
32
|
+
OpenAI Codex CLI — for Codex backend (optional, either or both)
|
|
32
33
|
```
|
|
33
34
|
|
|
34
35
|
<br>
|
|
@@ -44,7 +45,7 @@ Google Gemini CLI (configured)
|
|
|
44
45
|
### Recommended
|
|
45
46
|
|
|
46
47
|
```bash
|
|
47
|
-
claude mcp add llm-cli -- npx -y @maxanatsko/llm-cli-bridge
|
|
48
|
+
claude mcp add llm-cli -- npx -y @maxanatsko/llm-cli-bridge@latest
|
|
48
49
|
```
|
|
49
50
|
|
|
50
51
|
<br>
|
|
@@ -87,7 +88,7 @@ claude mcp add llm-cli -- llm-cli-bridge
|
|
|
87
88
|
"mcpServers": {
|
|
88
89
|
"llm-cli": {
|
|
89
90
|
"command": "npx",
|
|
90
|
-
"args": ["-y", "@maxanatsko/llm-cli-bridge"]
|
|
91
|
+
"args": ["-y", "@maxanatsko/llm-cli-bridge@latest"]
|
|
91
92
|
}
|
|
92
93
|
}
|
|
93
94
|
}
|
|
@@ -116,9 +117,9 @@ Linux ~/.config/claude/claude_desktop_config.json
|
|
|
116
117
|
### File Analysis
|
|
117
118
|
|
|
118
119
|
```
|
|
119
|
-
|
|
120
|
+
analyze @src/main.js
|
|
120
121
|
use gemini to summarize @.
|
|
121
|
-
|
|
122
|
+
use codex to review @package.json dependencies
|
|
122
123
|
```
|
|
123
124
|
|
|
124
125
|
<br>
|
|
@@ -127,18 +128,27 @@ analyze @package.json dependencies
|
|
|
127
128
|
|
|
128
129
|
```
|
|
129
130
|
ask gemini about React best practices
|
|
130
|
-
use
|
|
131
|
-
ask gemini for latest
|
|
131
|
+
use codex to explain this architecture
|
|
132
|
+
ask gemini for the latest news on this topic
|
|
133
|
+
```
|
|
134
|
+
|
|
135
|
+
<br>
|
|
136
|
+
|
|
137
|
+
### Switching Backends
|
|
138
|
+
|
|
139
|
+
```
|
|
140
|
+
ask gemini to analyze @src/main.js
|
|
141
|
+
ask codex to analyze @src/main.js (codex backend)
|
|
142
|
+
ask codex with high reasoning to review @src/main.js
|
|
132
143
|
```
|
|
133
144
|
|
|
134
145
|
<br>
|
|
135
146
|
|
|
136
|
-
### Sandbox Mode
|
|
147
|
+
### Sandbox / Workspace Mode
|
|
137
148
|
|
|
138
149
|
```
|
|
139
150
|
use gemini sandbox to run @script.py
|
|
140
|
-
|
|
141
|
-
use gemini sandbox to install numpy
|
|
151
|
+
use codex in workspace-write mode to refactor @src/
|
|
142
152
|
```
|
|
143
153
|
|
|
144
154
|
<br>
|
|
@@ -200,4 +210,4 @@ changeMode Optional Structured edit suggestions
|
|
|
200
210
|
|
|
201
211
|
<br>
|
|
202
212
|
|
|
203
|
-
<sub>MIT License — Not affiliated with Google</sub>
|
|
213
|
+
<sub>MIT License — Not affiliated with Google or OpenAI</sub>
|
package/dist/index.js
CHANGED
|
@@ -7,7 +7,7 @@ import { PROTOCOL } from "./constants.js";
|
|
|
7
7
|
import { getToolDefinitions, getPromptDefinitions, executeTool, toolExists, getPromptMessage } from "./tools/index.js";
|
|
8
8
|
const server = new Server({
|
|
9
9
|
name: "llm-cli-bridge",
|
|
10
|
-
version: "3.1.
|
|
10
|
+
version: "3.1.1",
|
|
11
11
|
}, {
|
|
12
12
|
capabilities: {
|
|
13
13
|
tools: {},
|