llm-cli-gateway 1.17.1 → 1.17.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "llm-cli-gateway",
3
- "version": "1.17.1",
3
+ "version": "1.17.2",
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",
@@ -62,6 +62,7 @@
62
62
  "migrate": "node dist/migrate.js",
63
63
  "test": "vitest run",
64
64
  "test:ci": "vitest run --pool=forks --maxWorkers=1",
65
+ "test:fuzz": "vitest run src/__tests__/fuzz.test.ts",
65
66
  "test:coverage": "vitest run --coverage",
66
67
  "test:watch": "vitest",
67
68
  "test:unit": "vitest run src/__tests__/executor.test.ts",
@@ -81,7 +82,7 @@
81
82
  "check": "npm run build && npm run lint && npm test && npm run security:audit",
82
83
  "release:build": "bash installer/build-release.sh",
83
84
  "release:checksums": "cd installer/dist && sha256sum --check SHA256SUMS",
84
- "release:docker": "docker compose -f docker-compose.personal.yml build"
85
+ "release:docker": "docker compose -f docker/personal.compose.yml build"
85
86
  },
86
87
  "dependencies": {
87
88
  "@modelcontextprotocol/sdk": "^1.29.0",
@@ -89,7 +90,7 @@
89
90
  "content-type": "1.0.5",
90
91
  "smol-toml": "^1.6.1",
91
92
  "type-is": "2.0.1",
92
- "zod": "^3.23.0"
93
+ "zod": "^4.4.3"
93
94
  },
94
95
  "peerDependencies": {
95
96
  "pg": "^8.12.0"
@@ -100,18 +101,20 @@
100
101
  }
101
102
  },
102
103
  "devDependencies": {
104
+ "@eslint/js": "^10.0.1",
103
105
  "@types/better-sqlite3": "^7.6.0",
104
- "@types/node": "^20.19.30",
106
+ "@types/node": "^25.9.1",
105
107
  "@types/pg": "^8.11.10",
106
108
  "@typescript-eslint/eslint-plugin": "^8.59.4",
107
109
  "@typescript-eslint/parser": "^8.59.4",
108
110
  "@vitest/coverage-v8": "^4.1.2",
109
- "eslint": "^8.57.1",
110
- "eslint-config-prettier": "^9.0.0",
111
- "eslint-plugin-security": "^3.0.1",
111
+ "eslint": "^10.4.1",
112
+ "eslint-config-prettier": "^10.1.8",
113
+ "eslint-plugin-security": "^4.0.0",
114
+ "fast-check": "^4.8.0",
112
115
  "pg": "^8.12.0",
113
116
  "prettier": "^3.0.0",
114
- "typescript": "^5.0.0",
117
+ "typescript": "^6.0.3",
115
118
  "vitest": "^4.0.18"
116
119
  },
117
120
  "overrides": {
@@ -15,6 +15,7 @@
15
15
  "endpoint_exposure",
16
16
  "client_config",
17
17
  "cache_awareness",
18
+ "upstream",
18
19
  "next_actions"
19
20
  ],
20
21
  "properties": {
@@ -302,6 +303,36 @@
302
303
  },
303
304
  "additionalProperties": false
304
305
  },
306
+ "upstream": {
307
+ "type": "object",
308
+ "required": [
309
+ "note",
310
+ "recommendation",
311
+ "how_to_check",
312
+ "probed",
313
+ "installed_versions",
314
+ "contracts"
315
+ ],
316
+ "properties": {
317
+ "note": { "type": "string" },
318
+ "recommendation": { "type": "string" },
319
+ "how_to_check": { "type": "string" },
320
+ "probed": { "type": "boolean" },
321
+ "installed_versions": {
322
+ "type": "object",
323
+ "additionalProperties": { "type": ["string", "null"] }
324
+ },
325
+ "contracts": {
326
+ "type": "object",
327
+ "additionalProperties": true
328
+ },
329
+ "probe_report": {
330
+ "type": ["object", "null"],
331
+ "additionalProperties": true
332
+ }
333
+ },
334
+ "additionalProperties": false
335
+ },
305
336
  "next_actions": {
306
337
  "type": "array",
307
338
  "items": { "type": "string" }