llm-cli-gateway 1.5.23 → 1.5.24

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/CHANGELOG.md CHANGED
@@ -2,6 +2,12 @@
2
2
 
3
3
  All notable changes to the llm-cli-gateway project.
4
4
 
5
+ ## [1.5.24] - 2026-05-25
6
+
7
+ ### Fixed
8
+
9
+ - Prefer Windows executable shims such as `.cmd`, `.bat`, `.exe`, and `.ps1` before extensionless npm shell shims when spawning provider CLIs, fixing npm-installed Gemini CLI launch failures on Windows.
10
+
5
11
  ## [1.5.23] - 2026-05-25
6
12
 
7
13
  ### Fixed
package/dist/executor.js CHANGED
@@ -143,7 +143,7 @@ function resolveWindowsCommandPath(command, envPath) {
143
143
  return existsSync(command) ? command : null;
144
144
  }
145
145
  const hasExtension = extname(command) !== "";
146
- const extensions = hasExtension ? [""] : ["", ".exe", ".ps1", ".cmd", ".bat"];
146
+ const extensions = hasExtension ? [""] : [".exe", ".cmd", ".bat", ".ps1", ""];
147
147
  for (const dir of envPath.split(pathDelimiterFor("win32")).filter(Boolean)) {
148
148
  for (const extension of extensions) {
149
149
  const candidate = pathJoinFor("win32", dir, command + extension);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "llm-cli-gateway",
3
- "version": "1.5.23",
3
+ "version": "1.5.24",
4
4
  "mcpName": "io.github.verivus-oss/llm-cli-gateway",
5
5
  "description": "MCP server providing unified access to Claude Code, Codex, Gemini, Grok, and Mistral Vibe CLIs with session management, retry logic, async job orchestration, durable job results, and cross-LLM validation.",
6
6
  "license": "MIT",