@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.
Files changed (3) hide show
  1. package/README.md +21 -11
  2. package/dist/index.js +1 -1
  3. 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 (configured)
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
- ask gemini to analyze @src/main.js
120
+ analyze @src/main.js
120
121
  use gemini to summarize @.
121
- analyze @package.json dependencies
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 gemini to explain div centering
131
- ask gemini for latest tech news
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
- ask gemini to safely test this code
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.0",
10
+ version: "3.1.1",
11
11
  }, {
12
12
  capabilities: {
13
13
  tools: {},
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@maxanatsko/llm-cli-bridge",
3
- "version": "3.1.0",
3
+ "version": "3.1.1",
4
4
  "description": "MCP server bridging LLM CLI tools (Gemini CLI, Codex CLI) into the MCP ecosystem",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",