llm-cli-gateway 2.12.0 → 2.12.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": "2.12.0",
3
+ "version": "2.12.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, Mistral Vibe, and Devin CLIs with session management, retry logic, async job orchestration, durable job results, and cross-LLM validation.",
6
6
  "license": "MIT",
@@ -130,6 +130,7 @@
130
130
  "body-parser": "2.2.2",
131
131
  "type-is": "2.0.1",
132
132
  "content-type": "1.0.5",
133
+ "fast-uri": "3.1.3",
133
134
  "hono": "^4.12.25"
134
135
  },
135
136
  "directories": {
@@ -405,6 +405,71 @@
405
405
  },
406
406
  "additionalProperties": false
407
407
  },
408
+ "api_providers": {
409
+ "type": "object",
410
+ "description": "Slice 6: health of enabled [providers.<name>] (kind:api) providers. OMITTED entirely when none are enabled (dormant byte-identical).",
411
+ "required": ["enabled_count", "providers"],
412
+ "properties": {
413
+ "enabled_count": { "type": "integer", "minimum": 1 },
414
+ "providers": {
415
+ "type": "object",
416
+ "additionalProperties": {
417
+ "type": "object",
418
+ "required": [
419
+ "name",
420
+ "kind",
421
+ "base_url",
422
+ "default_model",
423
+ "models",
424
+ "api_key_env",
425
+ "api_key_present",
426
+ "reachable",
427
+ "login_guidance"
428
+ ],
429
+ "properties": {
430
+ "name": { "type": "string" },
431
+ "kind": { "enum": ["openai-compatible", "anthropic", "xai-responses"] },
432
+ "base_url": { "type": "string" },
433
+ "default_model": { "type": "string" },
434
+ "models": {
435
+ "type": ["array", "null"],
436
+ "items": { "type": "string" }
437
+ },
438
+ "api_key_env": { "type": ["string", "null"] },
439
+ "api_key_present": { "type": "boolean" },
440
+ "reachable": { "type": ["boolean", "null"] },
441
+ "reachability_error": { "type": "string" },
442
+ "login_guidance": {
443
+ "type": "object",
444
+ "required": [
445
+ "provider",
446
+ "displayName",
447
+ "kind",
448
+ "baseUrl",
449
+ "apiKeyEnv",
450
+ "summary",
451
+ "steps",
452
+ "credentialHandling"
453
+ ],
454
+ "properties": {
455
+ "provider": { "type": "string" },
456
+ "displayName": { "type": "string" },
457
+ "kind": { "enum": ["openai-compatible", "anthropic", "xai-responses"] },
458
+ "baseUrl": { "type": "string" },
459
+ "apiKeyEnv": { "type": ["string", "null"] },
460
+ "summary": { "type": "string" },
461
+ "steps": { "type": "array", "items": { "type": "string" } },
462
+ "credentialHandling": { "type": "string" }
463
+ },
464
+ "additionalProperties": false
465
+ }
466
+ },
467
+ "additionalProperties": false
468
+ }
469
+ }
470
+ },
471
+ "additionalProperties": false
472
+ },
408
473
  "upstream": {
409
474
  "type": "object",
410
475
  "required": [