@iislee/opencodex 2.11.0 → 2.31.0

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 (675) hide show
  1. package/AGENTS_INSTALL.md +109 -0
  2. package/README.md +114 -19
  3. package/bin/ocx.mjs +164 -36
  4. package/bin/package-main.mjs +1 -1
  5. package/gui/dist/assets/index-BF38heuV.js +104 -0
  6. package/gui/dist/assets/index-DMiI18Kv.css +1 -0
  7. package/gui/dist/index.html +2 -2
  8. package/gui/dist/provider-icons/alibaba-color.svg +1 -1
  9. package/gui/dist/provider-icons/antigravity-color.svg +1 -1
  10. package/gui/dist/provider-icons/claude-color.svg +1 -1
  11. package/gui/dist/provider-icons/cline-color.svg +16 -0
  12. package/gui/dist/provider-icons/cloudflare-ai-gateway-color.svg +1 -1
  13. package/gui/dist/provider-icons/commandcode-color.svg +1 -0
  14. package/gui/dist/provider-icons/copilot-color.svg +1 -1
  15. package/gui/dist/provider-icons/cursor-color.svg +1 -1
  16. package/gui/dist/provider-icons/deepseek-color.svg +1 -1
  17. package/gui/dist/provider-icons/firepass-color.svg +1 -1
  18. package/gui/dist/provider-icons/fireworks-color.svg +1 -1
  19. package/gui/dist/provider-icons/gemini-color.svg +1 -1
  20. package/gui/dist/provider-icons/github-copilot-color.svg +1 -1
  21. package/gui/dist/provider-icons/gitlab-duo-color.svg +1 -1
  22. package/gui/dist/provider-icons/grok.svg +1 -1
  23. package/gui/dist/provider-icons/groq-color.svg +1 -1
  24. package/gui/dist/provider-icons/huggingface-color.svg +1 -1
  25. package/gui/dist/provider-icons/kimi-color.svg +1 -1
  26. package/gui/dist/provider-icons/kiro-color.svg +2 -2
  27. package/gui/dist/provider-icons/lm-studio-color.svg +1 -1
  28. package/gui/dist/provider-icons/mistral-color.svg +1 -1
  29. package/gui/dist/provider-icons/moonshot-color.svg +1 -1
  30. package/gui/dist/provider-icons/nvidia-color.svg +1 -1
  31. package/gui/dist/provider-icons/ollama-color.svg +1 -1
  32. package/gui/dist/provider-icons/openai.svg +1 -1
  33. package/gui/dist/provider-icons/opencode.svg +2 -1
  34. package/gui/dist/provider-icons/openrouter-color.svg +1 -1
  35. package/gui/dist/provider-icons/pi.svg +2 -2
  36. package/gui/dist/provider-icons/qianfan-color.svg +1 -1
  37. package/gui/dist/provider-icons/qwen-portal-color.svg +1 -1
  38. package/gui/dist/provider-icons/vercel-ai-gateway-color.svg +1 -1
  39. package/gui/dist/provider-icons/vllm-color.svg +1 -1
  40. package/gui/dist/provider-icons/xiaomi-color.svg +1 -1
  41. package/package.json +19 -10
  42. package/src/adapters/anthropic-output-schema.ts +137 -0
  43. package/src/adapters/anthropic.ts +376 -52
  44. package/src/adapters/base.ts +54 -7
  45. package/src/adapters/client-fingerprint.ts +18 -12
  46. package/src/adapters/cline-pass-deepseek-v4-tool-replay.ts +69 -0
  47. package/src/adapters/command-code.ts +601 -0
  48. package/src/adapters/cursor/checkpoint-store.ts +303 -0
  49. package/src/adapters/cursor/cursor-errors.ts +129 -6
  50. package/src/adapters/cursor/discovery.ts +61 -4
  51. package/src/adapters/cursor/effort-map.ts +27 -3
  52. package/src/adapters/cursor/framing.ts +39 -0
  53. package/src/adapters/cursor/h2-pool.ts +123 -0
  54. package/src/adapters/cursor/http1-bidi.ts +361 -0
  55. package/src/adapters/cursor/images.ts +704 -0
  56. package/src/adapters/cursor/live-models.ts +174 -58
  57. package/src/adapters/cursor/live-transport.ts +609 -170
  58. package/src/adapters/cursor/native-exec-common.ts +23 -2
  59. package/src/adapters/cursor/native-exec-fs.ts +10 -7
  60. package/src/adapters/cursor/native-exec-network.ts +1 -1
  61. package/src/adapters/cursor/native-exec-shell.ts +0 -1
  62. package/src/adapters/cursor/native-exec.ts +101 -14
  63. package/src/adapters/cursor/protobuf-events.ts +829 -11
  64. package/src/adapters/cursor/protobuf-request.ts +383 -65
  65. package/src/adapters/cursor/request-builder.ts +237 -31
  66. package/src/adapters/cursor/tool-definitions.ts +242 -12
  67. package/src/adapters/cursor/tool-result-normalize.ts +92 -0
  68. package/src/adapters/cursor/transport.ts +22 -0
  69. package/src/adapters/cursor/types.ts +28 -1
  70. package/src/adapters/cursor.ts +133 -7
  71. package/src/adapters/google-antigravity-replay.ts +558 -34
  72. package/src/adapters/google-antigravity-wire.ts +43 -10
  73. package/src/adapters/google-http.ts +38 -10
  74. package/src/adapters/google-tool-schema.ts +80 -15
  75. package/src/adapters/google-truncation.ts +11 -0
  76. package/src/adapters/google.ts +618 -74
  77. package/src/adapters/identity.ts +39 -6
  78. package/src/adapters/kiro-errors.ts +11 -0
  79. package/src/adapters/kiro-events.ts +19 -1
  80. package/src/adapters/kiro-thinking.ts +18 -2
  81. package/src/adapters/kiro-tools.ts +10 -1
  82. package/src/adapters/kiro.ts +92 -54
  83. package/src/adapters/mimo-free.ts +17 -0
  84. package/src/adapters/openai-chat-url.ts +11 -0
  85. package/src/adapters/openai-chat.ts +1311 -336
  86. package/src/adapters/openai-responses-url.ts +16 -0
  87. package/src/adapters/openai-responses.ts +830 -56
  88. package/src/adapters/registry.ts +175 -0
  89. package/src/adapters/responses-tool-schema.ts +67 -0
  90. package/src/adapters/tool-call-id.ts +119 -0
  91. package/src/adapters/tool-catalog-nudge.ts +104 -21
  92. package/src/adapters/xai-web-search.ts +185 -0
  93. package/src/bridge.ts +428 -61
  94. package/src/chat/inbound.ts +43 -19
  95. package/src/chat/outbound.ts +82 -26
  96. package/src/claude/agents-inject.ts +32 -9
  97. package/src/claude/context-windows.ts +21 -5
  98. package/src/claude/desktop-3p.ts +243 -9
  99. package/src/claude/gateway-cache.ts +41 -4
  100. package/src/claude/inbound.ts +72 -3
  101. package/src/claude/model-info.ts +38 -15
  102. package/src/claude/outbound.ts +70 -16
  103. package/src/cli/account-api.ts +35 -1
  104. package/src/cli/account-auth.ts +33 -6
  105. package/src/cli/account-catalog-refresh.ts +14 -0
  106. package/src/cli/account-extended.ts +389 -2
  107. package/src/cli/account-main.ts +317 -0
  108. package/src/cli/account.ts +30 -6
  109. package/src/cli/agent.ts +45 -1
  110. package/src/cli/claude-agent-startup-sync.ts +73 -0
  111. package/src/cli/claude-desktop.ts +29 -4
  112. package/src/cli/claude.ts +103 -34
  113. package/src/cli/codex-log-guard-doctor.ts +103 -0
  114. package/src/cli/codex-shim-autorestore.ts +2 -0
  115. package/src/cli/codex-shim-readiness.ts +76 -0
  116. package/src/cli/combo.ts +8 -0
  117. package/src/cli/config-command.ts +74 -10
  118. package/src/cli/dispatch.ts +593 -0
  119. package/src/cli/doctor.ts +315 -43
  120. package/src/cli/ensure-desired-integrations.ts +152 -0
  121. package/src/cli/export-command.ts +46 -20
  122. package/src/cli/help.ts +20 -271
  123. package/src/cli/index.ts +378 -519
  124. package/src/cli/init.ts +4 -17
  125. package/src/cli/integrations.ts +120 -2
  126. package/src/cli/lab.ts +607 -0
  127. package/src/cli/launcher-context.ts +77 -0
  128. package/src/cli/minimax.ts +497 -0
  129. package/src/cli/models-runtime.ts +35 -2
  130. package/src/cli/models.ts +100 -14
  131. package/src/cli/observe.ts +92 -3
  132. package/src/cli/opencode.ts +4 -2
  133. package/src/cli/provider-runtime.ts +18 -1
  134. package/src/cli/provider.ts +24 -3
  135. package/src/cli/ready.ts +301 -0
  136. package/src/cli/registry.ts +437 -0
  137. package/src/cli/root.ts +86 -0
  138. package/src/cli/route-policy.ts +92 -0
  139. package/src/cli/runtime-api.ts +6 -3
  140. package/src/cli/star-prompt.ts +71 -15
  141. package/src/cli/status.ts +10 -3
  142. package/src/cli/system-restart-client.ts +146 -0
  143. package/src/cli/tray-proxy.ts +153 -6
  144. package/src/cli/v2.ts +105 -10
  145. package/src/cli.ts +1 -1
  146. package/src/clients/config-export.ts +1358 -21
  147. package/src/codex/account-label.ts +14 -1
  148. package/src/codex/account-lifecycle.ts +130 -13
  149. package/src/codex/account-namespaces.ts +49 -3
  150. package/src/codex/account-priority.ts +83 -0
  151. package/src/codex/account-store.ts +29 -2
  152. package/src/codex/account-usability.ts +25 -2
  153. package/src/codex/admission.ts +256 -0
  154. package/src/codex/affinity-debug.ts +162 -0
  155. package/src/codex/app-server-processes.ts +493 -106
  156. package/src/codex/app-server-restart-service.ts +232 -0
  157. package/src/codex/auth-api.ts +849 -242
  158. package/src/codex/auth-collision.ts +5 -3
  159. package/src/codex/auth-context.ts +345 -32
  160. package/src/codex/autostart-health.ts +8 -1
  161. package/src/codex/catalog/account-models.ts +67 -0
  162. package/src/codex/catalog/aggregation.ts +68 -10
  163. package/src/codex/catalog/bundled.ts +331 -33
  164. package/src/codex/catalog/effort.ts +121 -30
  165. package/src/codex/catalog/filesystem-evidence.ts +302 -0
  166. package/src/codex/catalog/kinds.ts +2 -0
  167. package/src/codex/catalog/metadata.ts +529 -45
  168. package/src/codex/catalog/native-models.ts +72 -0
  169. package/src/codex/catalog/parsing.ts +224 -30
  170. package/src/codex/catalog/provider-fetch.ts +1460 -134
  171. package/src/codex/catalog/sync.ts +1449 -186
  172. package/src/codex/catalog-admission.ts +199 -0
  173. package/src/codex/catalog-refresh-status.ts +105 -0
  174. package/src/codex/catalog-write-serialization.ts +242 -0
  175. package/src/codex/catalog.ts +6 -3
  176. package/src/codex/codex-write-lock.ts +384 -0
  177. package/src/codex/convergence-types.ts +614 -0
  178. package/src/codex/convergence.ts +651 -0
  179. package/src/codex/coordinator-doctor.ts +332 -0
  180. package/src/codex/custom-model-catalog-migration.ts +176 -0
  181. package/src/codex/desired-state.ts +230 -0
  182. package/src/codex/features.ts +636 -39
  183. package/src/codex/generation.ts +202 -0
  184. package/src/codex/history-job.ts +407 -0
  185. package/src/codex/history-lock.ts +242 -0
  186. package/src/codex/history-migration-guardian.ts +26 -20
  187. package/src/codex/history-provider.ts +231 -28
  188. package/src/codex/history-transition.ts +105 -0
  189. package/src/codex/history-worker.ts +220 -0
  190. package/src/codex/inject-coordination.ts +290 -0
  191. package/src/codex/inject.ts +1073 -152
  192. package/src/codex/injected-marker.ts +37 -3
  193. package/src/codex/integration-record.ts +266 -0
  194. package/src/codex/internal/catalog-writer.ts +203 -0
  195. package/src/codex/internal/history-writer.ts +80 -0
  196. package/src/codex/journal.ts +66 -4
  197. package/src/codex/log-guard/inspect.ts +506 -0
  198. package/src/codex/log-guard/lock.ts +150 -0
  199. package/src/codex/log-guard/maintenance.ts +403 -0
  200. package/src/codex/log-guard/path-safety.ts +88 -0
  201. package/src/codex/log-guard/policy.ts +44 -0
  202. package/src/codex/log-guard/processes.ts +205 -0
  203. package/src/codex/log-guard/protection.ts +489 -0
  204. package/src/codex/log-guard/sqlite-errors.ts +9 -0
  205. package/src/codex/main-account-cache.ts +24 -0
  206. package/src/codex/main-account.ts +29 -1
  207. package/src/codex/management-convergence.ts +167 -0
  208. package/src/codex/model-cache.ts +56 -10
  209. package/src/codex/model-entitlements.ts +353 -0
  210. package/src/codex/native-main-admission.ts +47 -0
  211. package/src/codex/native-main-auth-temp.ts +187 -0
  212. package/src/codex/native-main-claim.ts +178 -0
  213. package/src/codex/native-main-lock-file.ts +162 -0
  214. package/src/codex/native-main-owner.ts +329 -0
  215. package/src/codex/native-profile-api.ts +247 -0
  216. package/src/codex/native-profile-manager.ts +1531 -0
  217. package/src/codex/native-profile-processes.ts +121 -0
  218. package/src/codex/native-profile-recovery.ts +99 -0
  219. package/src/codex/native-profile-stage-store.ts +387 -0
  220. package/src/codex/native-profile-startup.ts +492 -0
  221. package/src/codex/native-profile-store.ts +855 -0
  222. package/src/codex/native-profile-types.ts +120 -0
  223. package/src/codex/native-residue.ts +682 -0
  224. package/src/codex/paths.ts +80 -1
  225. package/src/codex/plan-from-token.ts +140 -0
  226. package/src/codex/plan.ts +40 -0
  227. package/src/codex/plugins-doctor.ts +1 -1
  228. package/src/codex/pool-rotation.ts +74 -4
  229. package/src/codex/project-config-warnings.ts +20 -6
  230. package/src/codex/prompt-journal.ts +352 -0
  231. package/src/codex/prompt-layers.ts +967 -0
  232. package/src/codex/prompt-lock.ts +143 -0
  233. package/src/codex/quota-rejection.ts +298 -0
  234. package/src/codex/quota.ts +175 -13
  235. package/src/codex/refresh.ts +11 -2
  236. package/src/codex/reset-credit-recovery.ts +1044 -0
  237. package/src/codex/routing.ts +505 -94
  238. package/src/codex/runtime.ts +159 -38
  239. package/src/codex/shim.ts +1009 -28
  240. package/src/codex/subagent-model-fallback.ts +350 -35
  241. package/src/codex/sync.ts +191 -2
  242. package/src/codex/transition-state.ts +612 -0
  243. package/src/codex/upstream-host-health.ts +368 -0
  244. package/src/codex/user-identity.ts +557 -0
  245. package/src/codex/warmup.ts +187 -81
  246. package/src/codex/write-coordination.ts +114 -0
  247. package/src/combos/failover.ts +20 -0
  248. package/src/combos/index.ts +4 -0
  249. package/src/combos/request.ts +32 -0
  250. package/src/combos/types.ts +81 -9
  251. package/src/config/provider-name.ts +24 -0
  252. package/src/config.ts +1762 -140
  253. package/src/generated/compatibility-version.json +3164 -0
  254. package/src/generated/{jawcode-model-metadata.ts → model-metadata.ts} +19 -17
  255. package/src/grok/inject.ts +16 -5
  256. package/src/grok/inspect.ts +45 -0
  257. package/src/grok/sync.ts +2 -2
  258. package/src/images/loop.ts +152 -29
  259. package/src/images/plan.ts +23 -13
  260. package/src/integrations/config-io.ts +269 -0
  261. package/src/integrations/journal.ts +315 -0
  262. package/src/integrations/merge.ts +135 -0
  263. package/src/integrations/mutation-flight.ts +71 -0
  264. package/src/integrations/native/ownership-preflight.ts +202 -0
  265. package/src/integrations/omp-yaml-source.ts +358 -0
  266. package/src/integrations/owned-refresh.ts +74 -0
  267. package/src/integrations/ownership.ts +111 -0
  268. package/src/integrations/registry.ts +159 -0
  269. package/src/integrations/serialize.ts +314 -0
  270. package/src/integrations/state.ts +361 -0
  271. package/src/integrations/store.ts +103 -0
  272. package/src/integrations/writer-lock.ts +98 -0
  273. package/src/integrations/writer.ts +691 -0
  274. package/src/lab/artifacts/sanitize.ts +586 -0
  275. package/src/lab/artifacts/secure-fs.ts +475 -0
  276. package/src/lab/artifacts/store.ts +310 -0
  277. package/src/lab/automation/budgets.ts +78 -0
  278. package/src/lab/automation/config-persistence.ts +256 -0
  279. package/src/lab/automation/constants.ts +39 -0
  280. package/src/lab/automation/cooldown.ts +103 -0
  281. package/src/lab/automation/dispatch.ts +211 -0
  282. package/src/lab/automation/index.ts +13 -0
  283. package/src/lab/automation/orchestrator.ts +499 -0
  284. package/src/lab/automation/persistence.ts +512 -0
  285. package/src/lab/automation/planner.ts +371 -0
  286. package/src/lab/automation/policy.ts +136 -0
  287. package/src/lab/automation/queue.ts +191 -0
  288. package/src/lab/automation/recovery.ts +24 -0
  289. package/src/lab/automation/route-context.ts +21 -0
  290. package/src/lab/automation/run-key.ts +44 -0
  291. package/src/lab/automation/runs-query.ts +34 -0
  292. package/src/lab/automation/types.ts +160 -0
  293. package/src/lab/conformance/assertion.ts +325 -0
  294. package/src/lab/conformance/digest.ts +22 -0
  295. package/src/lab/conformance/executor.ts +741 -0
  296. package/src/lab/conformance/fixture-provider.ts +27 -0
  297. package/src/lab/conformance/fixtures/live-v1-cases.json +175 -0
  298. package/src/lab/conformance/fixtures/protocol-v1-cases.json +461 -0
  299. package/src/lab/conformance/harness-budget.ts +47 -0
  300. package/src/lab/conformance/index.ts +5 -0
  301. package/src/lab/conformance/jcs.ts +64 -0
  302. package/src/lab/conformance/json-pointer.ts +39 -0
  303. package/src/lab/conformance/manifest.ts +180 -0
  304. package/src/lab/conformance/mcp-stub.ts +179 -0
  305. package/src/lab/conformance/negative-controls.ts +164 -0
  306. package/src/lab/conformance/observation.ts +355 -0
  307. package/src/lab/conformance/runner.ts +68 -0
  308. package/src/lab/conformance/sse-normalize.ts +59 -0
  309. package/src/lab/conformance/suite-manifest.ts +78 -0
  310. package/src/lab/conformance/types.ts +214 -0
  311. package/src/lab/constants.ts +126 -0
  312. package/src/lab/digest.ts +64 -0
  313. package/src/lab/events/errors.ts +9 -0
  314. package/src/lab/events/limits.ts +117 -0
  315. package/src/lab/events/types.ts +229 -0
  316. package/src/lab/events/validate.ts +781 -0
  317. package/src/lab/fabric/constants.ts +40 -0
  318. package/src/lab/fabric/executor.ts +492 -0
  319. package/src/lab/fabric/index.ts +80 -0
  320. package/src/lab/fabric/manifest.ts +222 -0
  321. package/src/lab/fabric/observe.ts +489 -0
  322. package/src/lab/fabric/patch.ts +79 -0
  323. package/src/lab/fabric/producer-child.ts +139 -0
  324. package/src/lab/fabric/producer-isolate.ts +276 -0
  325. package/src/lab/fabric/producer-protocol.ts +61 -0
  326. package/src/lab/fabric/scratch.ts +439 -0
  327. package/src/lab/fabric/subject.ts +106 -0
  328. package/src/lab/fabric/types.ts +134 -0
  329. package/src/lab/fabric/verifier.ts +98 -0
  330. package/src/lab/index.ts +54 -0
  331. package/src/lab/ledger/artifact-refs.ts +127 -0
  332. package/src/lab/ledger/invalidation.ts +136 -0
  333. package/src/lab/ledger/purge.ts +310 -0
  334. package/src/lab/ledger/store.ts +532 -0
  335. package/src/lab/live/credential-lease.ts +53 -0
  336. package/src/lab/live/destination.ts +155 -0
  337. package/src/lab/live/executor.ts +336 -0
  338. package/src/lab/live/inert-tools.ts +56 -0
  339. package/src/lab/live/manifest.ts +85 -0
  340. package/src/lab/live/mcp-loopback.ts +57 -0
  341. package/src/lab/live/runner.ts +19 -0
  342. package/src/lab/live/sandbox.ts +61 -0
  343. package/src/lab/live/suite-manifest.ts +41 -0
  344. package/src/lab/live/transport.ts +118 -0
  345. package/src/lab/live/types.ts +197 -0
  346. package/src/lab/observe/from-conformance.ts +301 -0
  347. package/src/lab/observe/from-live.ts +117 -0
  348. package/src/lab/paths.ts +153 -0
  349. package/src/lab/projection/rebuild.ts +495 -0
  350. package/src/lab/projection/schema.ts +135 -0
  351. package/src/lab/projection/verdicts.ts +474 -0
  352. package/src/lab/projection/verification.ts +412 -0
  353. package/src/lab/public/bundle.ts +217 -0
  354. package/src/lab/public/community-authority.ts +175 -0
  355. package/src/lab/public/community-files.ts +29 -0
  356. package/src/lab/public/community.ts +479 -0
  357. package/src/lab/public/file-safety.ts +155 -0
  358. package/src/lab/public/ids.ts +26 -0
  359. package/src/lab/public/index.ts +16 -0
  360. package/src/lab/public/mutation-lock.ts +424 -0
  361. package/src/lab/public/operator.ts +353 -0
  362. package/src/lab/public/origin-purge.ts +79 -0
  363. package/src/lab/public/origin.ts +203 -0
  364. package/src/lab/public/privacy.ts +143 -0
  365. package/src/lab/public/private-file.ts +261 -0
  366. package/src/lab/public/project.ts +124 -0
  367. package/src/lab/public/purge-test-fault.ts +21 -0
  368. package/src/lab/public/purge.ts +223 -0
  369. package/src/lab/public/registry.ts +44 -0
  370. package/src/lab/public/revocation.ts +252 -0
  371. package/src/lab/public/signature.ts +243 -0
  372. package/src/lab/public/storage.ts +105 -0
  373. package/src/lab/public/strict-json.ts +206 -0
  374. package/src/lab/public/time.ts +26 -0
  375. package/src/lab/public/types.ts +172 -0
  376. package/src/lab/public/validate.ts +391 -0
  377. package/src/lab/query/catalog.ts +101 -0
  378. package/src/lab/query/connection.ts +107 -0
  379. package/src/lab/query/constants.ts +4 -0
  380. package/src/lab/query/cursor.ts +132 -0
  381. package/src/lab/query/dto-map.ts +277 -0
  382. package/src/lab/query/errors.ts +22 -0
  383. package/src/lab/query/freshness.ts +53 -0
  384. package/src/lab/query/index.ts +45 -0
  385. package/src/lab/query/latest-observation.ts +59 -0
  386. package/src/lab/query/passive-production.ts +159 -0
  387. package/src/lab/query/queries.ts +444 -0
  388. package/src/lab/query/types.ts +266 -0
  389. package/src/lab/subject/behavior-fingerprint.ts +77 -0
  390. package/src/lab/subject/installation-salt.ts +112 -0
  391. package/src/lab/subject/protocol-subject.ts +80 -0
  392. package/src/lab/subject/route-subject.ts +74 -0
  393. package/src/lib/app-owned-memory-stores.ts +22 -0
  394. package/src/lib/bounded-body.ts +153 -9
  395. package/src/lib/bun-runtime.ts +125 -12
  396. package/src/lib/bun-stream-caps.ts +13 -9
  397. package/src/lib/codex-restart-contract.ts +120 -0
  398. package/src/lib/config-ownership.ts +6 -2
  399. package/src/lib/destination-policy.ts +65 -1
  400. package/src/lib/errors.ts +44 -2
  401. package/src/lib/fabric-task-execution-authority.ts +7 -0
  402. package/src/lib/fabric-task-host.ts +29 -0
  403. package/src/lib/lab-activation.ts +223 -0
  404. package/src/lib/lab-live-execution-authority.ts +13 -0
  405. package/src/lib/lab-live-host.ts +30 -0
  406. package/src/lib/lab-live-pinned-sender.ts +56 -0
  407. package/src/lib/lab-live-route-production.ts +130 -0
  408. package/src/lib/lab-passive-linker-registration.ts +26 -0
  409. package/src/lib/local-management-attestation.ts +51 -0
  410. package/src/lib/local-management-capability.ts +100 -0
  411. package/src/lib/local-provider-reload-contract.ts +100 -0
  412. package/src/lib/optional-shutdown-hooks.ts +57 -0
  413. package/src/lib/pinned-http.ts +145 -26
  414. package/src/lib/process-control.ts +4 -1
  415. package/src/lib/provider-outbound.ts +49 -9
  416. package/src/lib/redact.ts +419 -3
  417. package/src/lib/self-launch-argv.ts +15 -0
  418. package/src/lib/server-resource-ownership.ts +71 -0
  419. package/src/lib/shadow-call.ts +35 -4
  420. package/src/lib/sse-decoder.ts +41 -0
  421. package/src/lib/state-store-registrations.ts +10 -2
  422. package/src/lib/system-restart-contract.ts +73 -0
  423. package/src/lib/token-estimate.ts +19 -2
  424. package/src/lib/tool-argument-integers.ts +202 -0
  425. package/src/lib/translator-budget.ts +44 -0
  426. package/src/lib/upstream-http-version.ts +57 -0
  427. package/src/lib/upstream-reachability.ts +95 -0
  428. package/src/lib/upstream-retry.ts +156 -3
  429. package/src/lib/windows-atomic-replace.ts +155 -0
  430. package/src/lib/windows-elevation.ts +70 -2
  431. package/src/lib/windows-secret-acl.ts +409 -69
  432. package/src/lib/windows-service-wrappers.ts +72 -0
  433. package/src/lib/windows-text.ts +106 -0
  434. package/src/lib/windows-user-principal.ts +341 -0
  435. package/src/lib/winsw.ts +33 -5
  436. package/src/oauth/account-import/google-antigravity-adapter.ts +74 -0
  437. package/src/oauth/account-import/index.ts +15 -0
  438. package/src/oauth/account-import/parser.ts +83 -0
  439. package/src/oauth/account-import/registry.ts +18 -0
  440. package/src/oauth/account-import/service.ts +75 -0
  441. package/src/oauth/account-import/types.ts +91 -0
  442. package/src/oauth/anthropic.ts +12 -1
  443. package/src/oauth/callback-server.ts +8 -2
  444. package/src/oauth/chatgpt.ts +12 -1
  445. package/src/oauth/command-code.ts +239 -0
  446. package/src/oauth/cursor.ts +46 -5
  447. package/src/oauth/google-antigravity.ts +35 -3
  448. package/src/oauth/health.ts +20 -12
  449. package/src/oauth/index.ts +398 -66
  450. package/src/oauth/key-providers.ts +16 -0
  451. package/src/oauth/kimi.ts +16 -2
  452. package/src/oauth/kiro.ts +50 -6
  453. package/src/oauth/local-token-detect.ts +11 -2
  454. package/src/oauth/log.ts +3 -1
  455. package/src/oauth/login-cli.ts +88 -28
  456. package/src/oauth/nous.ts +798 -0
  457. package/src/oauth/store.ts +119 -21
  458. package/src/oauth/token-guardian.ts +9 -3
  459. package/src/pi/models.ts +2 -2
  460. package/src/providers/alibaba-region-migration.ts +1 -1
  461. package/src/providers/antigravity-models.ts +521 -31
  462. package/src/providers/base-url-choices.ts +10 -0
  463. package/src/providers/codex-capacity.ts +292 -0
  464. package/src/providers/command-code-efforts.ts +144 -0
  465. package/src/providers/context-cap.ts +22 -5
  466. package/src/providers/cursor-pool.ts +72 -0
  467. package/src/providers/derive.ts +253 -6
  468. package/src/providers/fastwire.ts +501 -0
  469. package/src/providers/free-directory.ts +10 -7
  470. package/src/providers/google-vertex-location.ts +14 -0
  471. package/src/providers/key-failover.ts +71 -3
  472. package/src/providers/label.ts +1 -1
  473. package/src/providers/model-discovery-limits.ts +16 -0
  474. package/src/providers/model-discovery.ts +115 -22
  475. package/src/providers/model-rename-migration.ts +255 -0
  476. package/src/providers/model-rename-startup.ts +28 -0
  477. package/src/providers/openai-sidecar.ts +72 -4
  478. package/src/providers/openai-tier-startup.ts +31 -2
  479. package/src/providers/openai-tiers.ts +119 -4
  480. package/src/providers/openai-virtual-models.ts +1 -0
  481. package/src/providers/opencode-zen-rate-limit.ts +102 -0
  482. package/src/providers/provider-id-rewrite.ts +29 -0
  483. package/src/providers/quota.ts +1319 -38
  484. package/src/providers/registry.ts +1429 -111
  485. package/src/providers/request-pacing.ts +310 -0
  486. package/src/providers/service-tier.ts +277 -0
  487. package/src/providers/slug-codec.ts +42 -6
  488. package/src/providers/static-model-discovery.ts +86 -0
  489. package/src/providers/xai-responses-opt-in.ts +15 -0
  490. package/src/providers/xai-transport.ts +11 -4
  491. package/src/reasoning-effort.ts +49 -1
  492. package/src/responses/compaction.ts +26 -1
  493. package/src/responses/custom-tool-compat.ts +266 -0
  494. package/src/responses/hosted-tool-policy.ts +9 -0
  495. package/src/responses/namespace-tool-compat.ts +355 -0
  496. package/src/responses/parser.ts +220 -38
  497. package/src/responses/provider-continuation.ts +98 -0
  498. package/src/responses/provider-opaque-metadata.ts +73 -0
  499. package/src/responses/reasoning-envelope.ts +9 -1
  500. package/src/responses/reasoning-replay-cache.ts +426 -0
  501. package/src/responses/schema.ts +7 -1
  502. package/src/responses/spill-store.ts +75 -10
  503. package/src/responses/state.ts +565 -27
  504. package/src/responses/thought-signature-replay.ts +347 -0
  505. package/src/responses/tool-search-compat.ts +301 -0
  506. package/src/responses/truncated-stop-reason.ts +60 -0
  507. package/src/router.ts +366 -30
  508. package/src/routing/analytics.ts +378 -0
  509. package/src/routing/capability.ts +244 -0
  510. package/src/routing/compatibility/assemble.ts +73 -0
  511. package/src/routing/compatibility/behavior.ts +278 -0
  512. package/src/routing/compatibility/catalog.ts +99 -0
  513. package/src/routing/compatibility/endpoint.ts +52 -0
  514. package/src/routing/compatibility/lab-evidence-provider.ts +130 -0
  515. package/src/routing/compatibility/policy.ts +181 -0
  516. package/src/routing/compatibility/provider-slot.ts +56 -0
  517. package/src/routing/compatibility/reader.ts +110 -0
  518. package/src/routing/compatibility/subject.ts +191 -0
  519. package/src/routing/compatibility/types.ts +64 -0
  520. package/src/routing/compatibility/version.ts +104 -0
  521. package/src/routing/cost.ts +77 -0
  522. package/src/routing/evaluator.ts +495 -0
  523. package/src/routing/health.ts +412 -0
  524. package/src/routing/history/cursor.ts +43 -0
  525. package/src/routing/history/indexer.ts +605 -0
  526. package/src/routing/history/schema.ts +72 -0
  527. package/src/routing/profile-namespace.ts +15 -0
  528. package/src/routing/profile.ts +547 -0
  529. package/src/routing/quota.ts +145 -0
  530. package/src/routing/request-evidence.ts +45 -0
  531. package/src/routing/trace.ts +776 -0
  532. package/src/server/adapter-resolve.ts +2 -29
  533. package/src/server/auth-cors.ts +267 -46
  534. package/src/server/background-lifecycle.ts +182 -0
  535. package/src/server/chat-completions.ts +130 -56
  536. package/src/server/chat-native-sse.ts +331 -0
  537. package/src/server/chat-native.ts +426 -0
  538. package/src/server/claude-messages.ts +159 -43
  539. package/src/server/direct-local-http.ts +347 -0
  540. package/src/server/effort-policy.ts +18 -0
  541. package/src/server/github-copilot-responses-repair.ts +338 -0
  542. package/src/server/gui-static.ts +39 -10
  543. package/src/server/images.ts +94 -12
  544. package/src/server/index.ts +865 -181
  545. package/src/server/lifecycle.ts +284 -13
  546. package/src/server/live.ts +136 -17
  547. package/src/server/local-management-read-client.ts +90 -0
  548. package/src/server/local-provider-reload-client.ts +137 -0
  549. package/src/server/management/agent-settings-routes.ts +398 -103
  550. package/src/server/management/api-key-usage.ts +31 -5
  551. package/src/server/management/body.ts +6 -0
  552. package/src/server/management/combo-routes.ts +62 -24
  553. package/src/server/management/config-routes.ts +464 -51
  554. package/src/server/management/context.ts +80 -2
  555. package/src/server/management/integration-routes.ts +498 -0
  556. package/src/server/management/lab-automation-routes.ts +206 -0
  557. package/src/server/management/lab-routes.ts +563 -0
  558. package/src/server/management/logs-usage-routes.ts +101 -32
  559. package/src/server/management/model-routes.ts +189 -131
  560. package/src/server/management/model-rows.ts +163 -0
  561. package/src/server/management/native-integration-routes.ts +769 -0
  562. package/src/server/management/oauth-account-routes.ts +80 -4
  563. package/src/server/management/provider-capability-config.ts +48 -0
  564. package/src/server/management/provider-routes.ts +764 -157
  565. package/src/server/management/request-history-routes.ts +191 -0
  566. package/src/server/management/routing-analytics-routes.ts +74 -0
  567. package/src/server/management/routing-profile-routes.ts +380 -0
  568. package/src/server/management/shared.ts +27 -11
  569. package/src/server/management/sidebar-routes.ts +47 -31
  570. package/src/server/management/storage-log-guard-routes.ts +186 -0
  571. package/src/server/management/sync-response.ts +69 -0
  572. package/src/server/management/system-restart.ts +288 -32
  573. package/src/server/management/system-routes.ts +77 -0
  574. package/src/server/management/usage-summary-cache.ts +9 -1
  575. package/src/server/management/vision-sidecar-options.ts +167 -0
  576. package/src/server/management/web-search-sidecar-options.ts +120 -0
  577. package/src/server/management-api.ts +115 -14
  578. package/src/server/management-auth.ts +220 -5
  579. package/src/server/passive-route-linker.ts +66 -0
  580. package/src/server/ports.ts +41 -1
  581. package/src/server/proxy-liveness.ts +132 -5
  582. package/src/server/readiness.ts +99 -0
  583. package/src/server/relay-eager.ts +82 -42
  584. package/src/server/relay.ts +236 -76
  585. package/src/server/request-decompress.ts +113 -6
  586. package/src/server/request-log.ts +235 -22
  587. package/src/server/responses/agent-task-recovery-cache.ts +143 -0
  588. package/src/server/responses/agent-task-recovery.ts +465 -0
  589. package/src/server/responses/collaboration.ts +204 -35
  590. package/src/server/responses/compact.ts +442 -55
  591. package/src/server/responses/core.ts +2872 -331
  592. package/src/server/responses/empty-completion-guard.ts +276 -0
  593. package/src/server/responses/encrypted-payload.ts +62 -39
  594. package/src/server/responses/fetch-helpers.ts +79 -4
  595. package/src/server/responses/input-admission.ts +185 -0
  596. package/src/server/responses/pacing-overload.ts +13 -0
  597. package/src/server/responses/policy-fallback.ts +178 -0
  598. package/src/server/responses/responses-field-backfill.ts +251 -0
  599. package/src/server/responses/terminal-guard.ts +26 -5
  600. package/src/server/responses/upstream-error.ts +5 -0
  601. package/src/server/responses/ws-upstream.ts +308 -0
  602. package/src/server/responses-custom-tool-repair.ts +282 -0
  603. package/src/server/responses-item-id-repair.ts +54 -6
  604. package/src/server/responses-json-events.ts +90 -0
  605. package/src/server/responses-model-rewrite.ts +29 -0
  606. package/src/server/responses-reasoning-summary-rewrite.ts +178 -0
  607. package/src/server/responses-snapshot-repair.ts +621 -0
  608. package/src/server/responses-terminal-repair.ts +342 -0
  609. package/src/server/responses-tool-search-repair.ts +267 -0
  610. package/src/server/responses-undeclared-tool-guard.ts +153 -0
  611. package/src/server/responses.ts +18 -2
  612. package/src/server/search.ts +78 -13
  613. package/src/server/sse-frame-buffer.ts +292 -0
  614. package/src/server/sse-payload-rewrite.ts +110 -22
  615. package/src/server/startup-action-control.ts +8 -1
  616. package/src/server/startup-health-cache.ts +19 -1
  617. package/src/server/system-env.ts +80 -9
  618. package/src/server/ws-bridge.ts +39 -38
  619. package/src/service-manager-probe.ts +892 -0
  620. package/src/service.ts +1111 -90
  621. package/src/sidecar/auth.ts +92 -0
  622. package/src/sidecar/candidates.ts +83 -0
  623. package/src/storage/cleanup.ts +2 -2
  624. package/src/storage/scanner.ts +1 -1
  625. package/src/storage/worker-lifecycle.ts +14 -14
  626. package/src/tray/windows-tray.ps1 +83 -9
  627. package/src/tray/windows.ts +43 -16
  628. package/src/types/accounts.ts +37 -0
  629. package/src/types/config.ts +845 -0
  630. package/src/types/provider.ts +545 -0
  631. package/src/types/request.ts +384 -0
  632. package/src/types/tools.ts +131 -0
  633. package/src/types/wire.ts +80 -0
  634. package/src/types.ts +104 -1236
  635. package/src/update/index.ts +32 -19
  636. package/src/update/job.ts +442 -67
  637. package/src/update/notify.ts +12 -6
  638. package/src/update/npm-cache-preflight.d.mts +47 -0
  639. package/src/update/npm-cache-preflight.mjs +201 -0
  640. package/src/update/transactional-install.d.mts +22 -0
  641. package/src/update/transactional-install.mjs +259 -0
  642. package/src/usage/cost.ts +0 -0
  643. package/src/usage/expected-prices.ts +268 -16
  644. package/src/usage/log.ts +606 -41
  645. package/src/usage/summary.ts +177 -9
  646. package/src/usage/user-cost-overlay-reconciler.ts +313 -0
  647. package/src/usage/user-cost-overlays.ts +314 -0
  648. package/src/vision/anthropic-describe.ts +10 -6
  649. package/src/vision/backends.ts +97 -0
  650. package/src/vision/describe.ts +9 -3
  651. package/src/vision/eligibility.ts +250 -0
  652. package/src/vision/index.ts +238 -24
  653. package/src/vision/reasoning.ts +55 -0
  654. package/src/vision/routed-describe.ts +175 -0
  655. package/src/vision/timeout-bounds.ts +9 -0
  656. package/src/web-search/anthropic-executor.ts +13 -7
  657. package/src/web-search/backends.ts +108 -0
  658. package/src/web-search/exa-executor.ts +88 -0
  659. package/src/web-search/executor.ts +11 -3
  660. package/src/web-search/gemini-executor.ts +141 -0
  661. package/src/web-search/index.ts +150 -15
  662. package/src/web-search/loop.ts +279 -50
  663. package/src/web-search/parse.ts +125 -30
  664. package/src/web-search/sources.ts +60 -0
  665. package/src/web-search/xai-executor.ts +219 -0
  666. package/gui/dist/assets/index-DTpMHS4F.js +0 -67
  667. package/gui/dist/assets/index-ZNVDE3C7.css +0 -1
  668. package/gui/dist/provider-icons/antigravity.svg +0 -1
  669. package/gui/dist/provider-icons/claude.svg +0 -1
  670. package/gui/dist/provider-icons/copilot.svg +0 -1
  671. package/gui/dist/provider-icons/cursor.svg +0 -2
  672. package/gui/dist/provider-icons/gemini.svg +0 -1
  673. package/gui/dist/provider-icons/grok-color.svg +0 -1
  674. package/gui/dist/provider-icons/kiro.svg +0 -14
  675. package/src/cli/internal-dispatch.ts +0 -20
@@ -20,11 +20,39 @@
20
20
  * targeting it is the caller's explicit act.
21
21
  */
22
22
  import { homedir } from "node:os";
23
- import { join } from "node:path";
23
+ import { existsSync } from "node:fs";
24
+ import { isAbsolute, join, resolve } from "node:path";
24
25
  import { shouldInjectApiAuthHeader } from "../codex/inject";
26
+ import { FORMAT_MEDIA_TYPE, serializeDocument, type ConfigFormat } from "../integrations/serialize";
27
+ import { providerCodexAccountMode } from "../providers/registry";
28
+ import { sanitizeCodexReasoningEfforts } from "../reasoning-effort";
25
29
  import { probeHostname } from "../server/proxy-liveness";
26
30
  import type { OcxConfig } from "../types";
27
31
 
32
+ export type { ConfigFormat };
33
+
34
+ /**
35
+ * One entry opencodex owns inside a client's config: the JSON path to it and
36
+ * the value we put there.
37
+ *
38
+ * A path list rather than a single provider key because ownership is not
39
+ * always one entry — Kimi owns its provider block AND one model entry per
40
+ * model, and a writer that only knew about the provider would strand the rest
41
+ * (devlog 260802 006 §2).
42
+ */
43
+ export interface ManagedFragment {
44
+ path: readonly string[];
45
+ value: unknown;
46
+ }
47
+
48
+ /** Everything opencodex contributes to one client's config, as one unit. */
49
+ export interface ManagedContribution {
50
+ clientId: ExportClientId;
51
+ fragments: readonly ManagedFragment[];
52
+ }
53
+
54
+ export type BuildContribution = (ctx: ExportContext) => ManagedContribution;
55
+
28
56
  export interface OpencodeLaunchEnv {
29
57
  [key: string]: string | undefined;
30
58
  }
@@ -81,12 +109,42 @@ export const OPENCODE_API_KEY_ENV = "OPENCODEX_OPENCODE_API_KEY";
81
109
  /** Env reference shared by apiKey and the dedicated proxy admission header. */
82
110
  export const OPENCODE_API_KEY_ENV_REF = `{env:${OPENCODE_API_KEY_ENV}}`;
83
111
 
84
- /** Env var Pi interpolates. Pi takes bare `$NAME`, not opencode's `{env:NAME}`. */
112
+ /**
113
+ * Hermes interpolates `${VAR}` anywhere in config.yaml, so the credential stays
114
+ * in the environment exactly as it does for OpenCode.
115
+ */
116
+ export const HERMES_API_KEY_ENV = "OPENCODEX_HERMES_API_KEY";
117
+ export const HERMES_API_KEY_ENV_REF = `\${${HERMES_API_KEY_ENV}}`;
118
+
119
+ /** OpenClaw interpolates `${UPPERCASE_VAR}` and fails closed when it is unset. */
120
+ export const OPENCLAW_API_KEY_ENV = "OPENCODEX_OPENCLAW_API_KEY";
121
+ export const OPENCLAW_API_KEY_ENV_REF = `\${${OPENCLAW_API_KEY_ENV}}`;
122
+
123
+ /**
124
+ * Placeholder credential for loopback-only clients (Kimi, Pi). A loopback
125
+ * bind needs no real admission key, so we emit the same placeholder the Grok
126
+ * managed block uses rather than a user secret. Pi resolves `apiKey` before
127
+ * building its model list and hides the provider when an env reference is unset.
128
+ */
129
+ export const LOOPBACK_API_KEY_PLACEHOLDER = "opencodex-loopback";
130
+
131
+ /**
132
+ * Legacy Pi launch env var. Newer exports use {@link LOOPBACK_API_KEY_PLACEHOLDER}
133
+ * in models.json; `ocx pi` still seeds this env so older `$OPENCODEX_API_KEY`
134
+ * configs keep working.
135
+ */
85
136
  export const PI_API_KEY_ENV = "OPENCODEX_API_KEY";
86
137
 
87
- /** Pi's reference form for the admission key. Never the value. */
138
+ /** Pi env-reference form for older managed blocks (`$OPENCODEX_API_KEY`). */
88
139
  export const PI_API_KEY_ENV_REF = `$${PI_API_KEY_ENV}`;
89
140
 
141
+ /**
142
+ * Gajae's `apiKeyEnv` is env-name-only and fail-closed. Its sibling `apiKey`
143
+ * falls back to treating the literal text as the token when the variable is
144
+ * unset, which would silently ship a bogus credential — so we never emit it.
145
+ */
146
+ export const GAJAE_API_KEY_ENV = "OPENCODEX_GAJAE_API_KEY";
147
+
90
148
  /** Pi's wire-dialect selector for an OpenAI-compatible endpoint. */
91
149
  const PI_API_DIALECT = "openai-completions";
92
150
 
@@ -124,11 +182,308 @@ export function opencodeGlobalConfigPath(
124
182
  return join(xdg, "opencode", "opencode.json");
125
183
  }
126
184
 
185
+ const OMP_PROFILE_NAME_RE = /^[a-z0-9][a-z0-9._-]{0,63}$/;
186
+ const OMP_WINDOWS_RESERVED_PROFILE_RE = /^(?:CON|PRN|AUX|NUL|COM[0-9]|LPT[0-9])(?:\..*)?$/i;
187
+
188
+ function ompProfileName(env: OpencodeLaunchEnv): string | undefined {
189
+ // OMP_PROFILE wins by presence, even when explicitly empty; PI_PROFILE is
190
+ // only the legacy fallback when the canonical variable is undefined.
191
+ const raw = env.OMP_PROFILE !== undefined ? env.OMP_PROFILE : env.PI_PROFILE;
192
+ const profile = raw?.trim();
193
+ if (!profile || profile === "default") return undefined;
194
+ if (
195
+ profile === "."
196
+ || profile === ".."
197
+ || profile.endsWith(".")
198
+ || !OMP_PROFILE_NAME_RE.test(profile)
199
+ || OMP_WINDOWS_RESERVED_PROFILE_RE.test(profile)
200
+ ) {
201
+ throw new ClientPathError(`Invalid OMP profile "${raw}"`);
202
+ }
203
+ return profile;
204
+ }
205
+
206
+ /**
207
+ * Pi resolves its agent directory from `PI_CODING_AGENT_DIR`, falling back to
208
+ * `~/.pi/agent`. `ompAgentDir` below already reads that variable — OMP is a Pi
209
+ * derivative — so Pi's own resolver honoring it is what makes the two agree
210
+ * rather than a new claim about Pi's contract.
211
+ *
212
+ * A relative override is refused for the same reason MCode's and ZCode's are: a
213
+ * background proxy and a foreground client can have different working
214
+ * directories, and would otherwise disagree about which file is named.
215
+ */
216
+ export function piAgentDir(env: OpencodeLaunchEnv = process.env, home: string = homedir()): string {
217
+ const override = env.PI_CODING_AGENT_DIR?.trim();
218
+ if (override) return absoluteClientPath(override, home, "PI_CODING_AGENT_DIR");
219
+ return join(home, ".pi", "agent");
220
+ }
221
+
222
+ /** Pi's canonical custom-provider catalog. */
223
+ export function piConfigPath(env: OpencodeLaunchEnv = process.env, home: string = homedir()): string {
224
+ return join(piAgentDir(env, home), "models.json");
225
+ }
226
+
227
+ /** Resolve the global Oh My Pi agent directory using OMP's own env precedence. */
228
+ export function ompAgentDir(env: OpencodeLaunchEnv = process.env, home: string = homedir()): string {
229
+ const profile = ompProfileName(env);
230
+ if (!profile) {
231
+ const override = env.PI_CODING_AGENT_DIR?.trim();
232
+ if (override) return absoluteClientPath(override, home, "PI_CODING_AGENT_DIR");
233
+ }
234
+ // OMP treats PI_CONFIG_DIR as a directory name relative to the user's home,
235
+ // even when the value starts with `/` or `~`. Mirror that path.join contract
236
+ // exactly instead of assigning those values different filesystem semantics.
237
+ const root = join(home, env.PI_CONFIG_DIR || ".omp");
238
+ return profile ? join(root, "profiles", profile, "agent") : join(root, "agent");
239
+ }
240
+
241
+ /** OMP's canonical custom-provider catalog. */
242
+ export function ompModelsConfigPath(env: OpencodeLaunchEnv = process.env, home: string = homedir()): string {
243
+ const agentDir = ompAgentDir(env, home);
244
+ const yamlFallback = join(agentDir, "models.yaml");
245
+ const canonical = join(agentDir, "models.yml");
246
+ return !existsSync(canonical) && existsSync(yamlFallback) ? yamlFallback : canonical;
247
+ }
248
+
127
249
  /** Compose the OpenAI-compatible proxy base URL from a live probe result. */
128
250
  export function opencodeProxyBaseUrl(port: number, hostname?: string): string {
129
251
  return `http://${probeHostname(hostname)}:${port}/v1`;
130
252
  }
131
253
 
254
+ /**
255
+ * Hermes resolves its home the way cc-switch's writer does: an explicit
256
+ * `HERMES_HOME`, then Windows `%LOCALAPPDATA%\hermes`, then `~/.hermes`.
257
+ */
258
+ export function hermesHomeDir(env: OpencodeLaunchEnv = process.env, home: string = homedir()): string {
259
+ const override = env.HERMES_HOME?.trim();
260
+ if (override) return override;
261
+ if (process.platform === "win32") {
262
+ const local = env.LOCALAPPDATA?.trim();
263
+ return join(local && local.length > 0 ? local : join(home, "AppData", "Local"), "hermes");
264
+ }
265
+ return join(home, ".hermes");
266
+ }
267
+
268
+ export function hermesConfigPath(env: OpencodeLaunchEnv = process.env, home: string = homedir()): string {
269
+ return join(hermesHomeDir(env, home), "config.yaml");
270
+ }
271
+
272
+ /**
273
+ * Expand `~` against the effective home; REFUSE anything still relative.
274
+ *
275
+ * A first attempt at this called `resolve()` and claimed the path would "mean
276
+ * the same thing next time". It does not: `resolve()` only anchors the current
277
+ * invocation, so applying from one directory and disabling from another still
278
+ * resolved two different files — the second reported "not applied" and left
279
+ * the managed block behind with nothing claiming it.
280
+ *
281
+ * There is no honest way to recover the other process's cwd, so a relative
282
+ * selector is refused at the boundary instead of being silently anchored to
283
+ * whichever directory we happened to start in. A `~` path IS stable, because
284
+ * it anchors to the effective home rather than the cwd.
285
+ */
286
+ export class ClientPathError extends Error {}
287
+
288
+ function absoluteClientPath(raw: string, home: string, variable: string): string {
289
+ const trimmed = raw.trim();
290
+ if (trimmed === "~") return home;
291
+ if (trimmed.startsWith("~/") || trimmed.startsWith("~\\")) return join(home, trimmed.slice(2));
292
+ if (!isAbsolute(trimmed)) {
293
+ throw new ClientPathError(
294
+ `${variable} must be an absolute path or start with ~; "${trimmed}" depends on the working directory, `
295
+ + "so opencodex and the client would disagree about which file it names.",
296
+ );
297
+ }
298
+ return trimmed;
299
+ }
300
+
301
+ /**
302
+ * OpenClaw's EFFECTIVE home: `OPENCLAW_HOME` outranks the OS home.
303
+ *
304
+ * Everything below derives from this, which is why it is separate: a profile
305
+ * directory and the default state directory both hang off the effective home,
306
+ * not off `homedir()`.
307
+ */
308
+ function openclawEffectiveHome(env: OpencodeLaunchEnv, home: string): string {
309
+ const override = env.OPENCLAW_HOME?.trim();
310
+ return override ? absoluteClientPath(override, home, "OPENCLAW_HOME") : home;
311
+ }
312
+
313
+ /**
314
+ * OpenClaw's state directory, in the gateway's own precedence order:
315
+ *
316
+ * 1. `OPENCLAW_STATE_DIR` — an explicit relocation wins outright.
317
+ * 2. `OPENCLAW_PROFILE` — a named profile is `.openclaw-<profile>` under the
318
+ * effective home. `default` is the unnamed profile, so it stays
319
+ * `.openclaw`.
320
+ * 3. `.openclaw` under the effective home (`OPENCLAW_HOME` or the OS home).
321
+ *
322
+ * This is also what "is it installed?" detection looks at, so it has to follow
323
+ * the same selectors the gateway does — otherwise an operator running a
324
+ * profile reads as not installed while their gateway runs fine. We honor the
325
+ * ENVIRONMENT selectors only: a `--profile` flag passed to some other process
326
+ * is not something we can observe, and guessing it would be worse than
327
+ * following the same environment the user gave us.
328
+ */
329
+ export function openclawHomeDir(env: OpencodeLaunchEnv = process.env, home: string = homedir()): string {
330
+ const stateDir = env.OPENCLAW_STATE_DIR?.trim();
331
+ const effectiveHome = openclawEffectiveHome(env, home);
332
+ if (stateDir) return absoluteClientPath(stateDir, effectiveHome, "OPENCLAW_STATE_DIR");
333
+ const profile = env.OPENCLAW_PROFILE?.trim();
334
+ // OpenClaw compares the profile name case-insensitively, so `DEFAULT` is
335
+ // still the unnamed profile rather than a `.openclaw-DEFAULT` directory.
336
+ if (profile && profile.toLowerCase() !== "default") return join(effectiveHome, `.openclaw-${profile}`);
337
+ /*
338
+ * `.clawdbot` is not migration debris — OpenClaw still treats it as an
339
+ * active runtime candidate, preferring the modern directory when it exists
340
+ * and otherwise selecting the legacy one. Mirroring that order is not
341
+ * guessing: an install that has not migrated is one this integration would
342
+ * otherwise report as "not installed" while its gateway runs fine.
343
+ */
344
+ const modern = join(effectiveHome, ".openclaw");
345
+ if (existsSync(modern)) return modern;
346
+ const legacy = join(effectiveHome, ".clawdbot");
347
+ if (existsSync(legacy)) return legacy;
348
+ return modern;
349
+ }
350
+
351
+ /**
352
+ * The config file OpenClaw actually reads.
353
+ *
354
+ * An explicit `OPENCLAW_CONFIG_PATH` wins outright — it is a file selector, so
355
+ * it does NOT relocate the state directory that detection looks at. Otherwise
356
+ * `openclaw.json` under the resolved state directory.
357
+ *
358
+ * Ignoring these selectors meant the toggle could report success after writing
359
+ * `~/.openclaw/openclaw.json` while the running gateway read somewhere else —
360
+ * and snapshot the wrong file, so the rollback promise pointed at a file
361
+ * nobody loads.
362
+ */
363
+ export function openclawConfigPath(env: OpencodeLaunchEnv = process.env, home: string = homedir()): string {
364
+ const explicit = env.OPENCLAW_CONFIG_PATH?.trim();
365
+ if (explicit) return absoluteClientPath(explicit, openclawEffectiveHome(env, home), "OPENCLAW_CONFIG_PATH");
366
+ /*
367
+ * OpenClaw searches FILE candidates, not directories: a `.openclaw`
368
+ * directory that exists but holds no config does not beat an actual
369
+ * `.clawdbot/clawdbot.json`. Checking the directory first picked an
370
+ * absent modern file over a real legacy one and wrote where nothing reads.
371
+ *
372
+ * An explicit state dir still scopes the search to that directory, because
373
+ * the operator named it.
374
+ */
375
+ const stateOverride = env.OPENCLAW_STATE_DIR?.trim();
376
+ const effectiveHome = openclawEffectiveHome(env, home);
377
+ const profile = env.OPENCLAW_PROFILE?.trim();
378
+ const scoped = stateOverride !== undefined && stateOverride !== ""
379
+ || (profile !== undefined && profile !== "" && profile.toLowerCase() !== "default");
380
+ const stateDir = openclawHomeDir(env, home);
381
+ const candidates = scoped
382
+ ? [join(stateDir, "openclaw.json"), join(stateDir, "clawdbot.json")]
383
+ : [
384
+ join(effectiveHome, ".openclaw", "openclaw.json"),
385
+ join(effectiveHome, ".openclaw", "clawdbot.json"),
386
+ join(effectiveHome, ".clawdbot", "openclaw.json"),
387
+ join(effectiveHome, ".clawdbot", "clawdbot.json"),
388
+ ];
389
+ for (const candidate of candidates) {
390
+ if (existsSync(candidate)) return candidate;
391
+ }
392
+ return candidates[0]!;
393
+ }
394
+
395
+ export function kimiHomeDir(env: OpencodeLaunchEnv = process.env, home: string = homedir()): string {
396
+ const override = env.KIMI_CODE_HOME?.trim();
397
+ return override && override.length > 0 ? override : join(home, ".kimi-code");
398
+ }
399
+
400
+ export function kimiConfigPath(env: OpencodeLaunchEnv = process.env, home: string = homedir()): string {
401
+ return join(kimiHomeDir(env, home), "config.toml");
402
+ }
403
+
404
+ export function gajaeHomeDir(_env: OpencodeLaunchEnv = process.env, home: string = homedir()): string {
405
+ return join(home, ".gjc");
406
+ }
407
+
408
+ export function gajaeConfigPath(env: OpencodeLaunchEnv = process.env, home: string = homedir()): string {
409
+ return join(gajaeHomeDir(env, home), "agent", "models.yml");
410
+ }
411
+
412
+ /** DSH_HOME uses the raw nonblank value; trimming it would name a different path. */
413
+ export function dshHomeDir(env: OpencodeLaunchEnv = process.env, home: string = homedir()): string {
414
+ const raw = env.DSH_HOME;
415
+ if (raw === undefined || raw.trim().length === 0) return join(home, ".dsh");
416
+ if (raw === "~") return home;
417
+ if (raw.startsWith("~/") || raw.startsWith("~\\")) return join(home, raw.slice(2));
418
+ if (!isAbsolute(raw)) {
419
+ throw new ClientPathError(
420
+ `DSH_HOME must be an absolute path or start with ~; "${raw}" depends on the working directory, `
421
+ + "so opencodex and DSH would disagree about which settings file it names.",
422
+ );
423
+ }
424
+ // DSH calls node:path.resolve after tilde expansion. Preserve the raw value
425
+ // for the decision above, then normalize the absolute spelling the same way
426
+ // so both processes bind ownership and locks to one path string.
427
+ return resolve(raw);
428
+ }
429
+
430
+ export function dshConfigPath(env: OpencodeLaunchEnv = process.env, home: string = homedir()): string {
431
+ return join(dshHomeDir(env, home), "settings.yaml");
432
+ }
433
+
434
+ /**
435
+ * MiniMax Code stores runtime state under `MINIMAX_DATA_DIR`, then the legacy
436
+ * `MAVIS_DATA_DIR`, and finally `~/.minimax`. Relative overrides are refused
437
+ * because a background proxy and a foreground client can have different CWDs.
438
+ */
439
+ export function mcodeHomeDir(env: OpencodeLaunchEnv = process.env, home: string = homedir()): string {
440
+ const primary = env.MINIMAX_DATA_DIR?.trim();
441
+ if (primary) return absoluteClientPath(primary, home, "MINIMAX_DATA_DIR");
442
+ const legacy = env.MAVIS_DATA_DIR?.trim();
443
+ if (legacy) return absoluteClientPath(legacy, home, "MAVIS_DATA_DIR");
444
+ return join(home, ".minimax");
445
+ }
446
+
447
+ export function mcodeConfigPath(env: OpencodeLaunchEnv = process.env, home: string = homedir()): string {
448
+ return join(mcodeHomeDir(env, home), "config.yaml");
449
+ }
450
+
451
+ /**
452
+ * ZCode (Z.ai's desktop client) keeps everything under `~/.zcode`; custom
453
+ * providers live in `v2/config.json`. `ZCODE_DATA_DIR` mirrors the other
454
+ * clients' override convention; relative overrides are refused for the same
455
+ * reason as MCode's.
456
+ */
457
+ export function zcodeHomeDir(env: OpencodeLaunchEnv = process.env, home: string = homedir()): string {
458
+ const override = env.ZCODE_DATA_DIR?.trim();
459
+ if (override) return absoluteClientPath(override, home, "ZCODE_DATA_DIR");
460
+ return join(home, ".zcode");
461
+ }
462
+
463
+ export function zcodeConfigPath(env: OpencodeLaunchEnv = process.env, home: string = homedir()): string {
464
+ return join(zcodeHomeDir(env, home), "v2", "config.json");
465
+ }
466
+
467
+ /**
468
+ * Prime Agent resolves its agent directory from `PRIME_AGENT_CODING_AGENT_DIR`
469
+ * — the brand-derived spelling of the `PI_CODING_AGENT_DIR` that `ompAgentDir`
470
+ * already honors, because the agent builds that variable name from its own
471
+ * `piConfig.name` — and otherwise falls back to `~/.prime/agent`. Relative
472
+ * overrides are refused for the same reason as MCode's and ZCode's: a
473
+ * background proxy and a foreground client can have different working
474
+ * directories.
475
+ */
476
+ export function primeAgentDir(env: OpencodeLaunchEnv = process.env, home: string = homedir()): string {
477
+ const override = env.PRIME_AGENT_CODING_AGENT_DIR?.trim();
478
+ if (override) return absoluteClientPath(override, home, "PRIME_AGENT_CODING_AGENT_DIR");
479
+ return join(home, ".prime", "agent");
480
+ }
481
+
482
+ /** Prime Agent's canonical custom-provider catalog. */
483
+ export function primeConfigPath(env: OpencodeLaunchEnv = process.env, home: string = homedir()): string {
484
+ return join(primeAgentDir(env, home), "models.json");
485
+ }
486
+
132
487
  /**
133
488
  * One proxy-routed model destined for a client config. Deliberately narrower than
134
489
  * `CatalogModel` so a serializer cannot reach for a field that does not survive the
@@ -144,6 +499,9 @@ export interface ExportModel {
144
499
  displayName?: string;
145
500
  contextWindow?: number;
146
501
  inputModalities?: string[];
502
+ /** Optional effort ladder exported only to clients that support it. */
503
+ reasoningEfforts?: string[];
504
+ defaultReasoningEffort?: string;
147
505
  }
148
506
 
149
507
  export interface ExportContext {
@@ -157,7 +515,18 @@ export interface ExportContext {
157
515
  config?: OcxConfig;
158
516
  }
159
517
 
160
- export type ExportClientId = "opencode" | "pi";
518
+ export type ExportClientId =
519
+ | "opencode"
520
+ | "pi"
521
+ | "omp"
522
+ | "hermes"
523
+ | "openclaw"
524
+ | "kimi"
525
+ | "gajae"
526
+ | "dsh"
527
+ | "mcode"
528
+ | "zcode"
529
+ | "prime";
161
530
 
162
531
  export interface ExportClientSpec {
163
532
  id: ExportClientId;
@@ -170,6 +539,34 @@ export interface ExportClientSpec {
170
539
  /** Shell line the user runs before launching the client. */
171
540
  exportHint: string;
172
541
  build: (ctx: ExportContext) => unknown;
542
+ /**
543
+ * Text format of the client's config file. `filename` already carries the
544
+ * extension; this drives serialization and the download media type so no
545
+ * consumer has to infer either from the name.
546
+ */
547
+ format: ConfigFormat;
548
+ /**
549
+ * Count models in THIS client's document shape. Required so a new client
550
+ * cannot be added without teaching the summarizer about it — the old
551
+ * "anything that is not OpenCode must be Pi" branch was a latent bug.
552
+ */
553
+ summarize: (document: unknown) => { modelCount: number; modelsWithoutLimits: number };
554
+ /**
555
+ * The fragments opencodex owns inside this client's config. Only the builder
556
+ * knows where a client keeps our entries, so ownership paths originate here
557
+ * rather than being re-derived by the writer.
558
+ */
559
+ buildContribution: BuildContribution;
560
+ /**
561
+ * True when the generated integration deliberately supports loopback only.
562
+ *
563
+ * `/v1/chat/completions` rejects bearer credentials and requires the
564
+ * dedicated `x-opencodex-api-key` header (AUTH_MATRIX in
565
+ * src/server/auth-cors.ts). If this exporter cannot safely emit that header,
566
+ * it refuses a remote bind rather than generating a config that 401s. Same
567
+ * reasoning as the Grok managed block's non-loopback refusal.
568
+ */
569
+ loopbackOnly: boolean;
173
570
  }
174
571
 
175
572
  /**
@@ -178,7 +575,8 @@ export interface ExportClientSpec {
178
575
  */
179
576
  function authoritativeContextWindow(contextWindow: number | undefined): number | undefined {
180
577
  if (typeof contextWindow === "number" && Number.isFinite(contextWindow) && contextWindow > 0) {
181
- return Math.floor(contextWindow);
578
+ const integer = Math.floor(contextWindow);
579
+ return integer > 0 ? integer : undefined;
182
580
  }
183
581
  return undefined;
184
582
  }
@@ -188,6 +586,67 @@ function outputBudgetFor(context: number): number {
188
586
  return Math.min(SCHEMA_REQUIRED_OUTPUT_BUDGET, context);
189
587
  }
190
588
 
589
+ /**
590
+ * Modalities a given client's schema will actually accept.
591
+ *
592
+ * Our internal vocabulary is `text | image | audio` (ALLOWED_INPUT_MODALITIES in
593
+ * src/server/management/model-routes.ts). Pi and Gajae accept only
594
+ * `text | image`, and both reject the WHOLE config file over one out-of-enum
595
+ * value — Gajae reports `/providers/opencodex/models/N/input/2: Invalid option`
596
+ * and falls back to its built-in list, Pi returns an empty model config. So a
597
+ * single `audio` model takes every routed model down with it. That is not
598
+ * hypothetical: zenmux/meta-muse-spark-1.1 advertises audio and did exactly
599
+ * this. It is also the same defect the Codex catalog had with `video`, where
600
+ * the app showed zero apps (tests/catalog-input-modality-enum.test.ts).
601
+ *
602
+ * UNKNOWN and INCOMPATIBLE are different inputs, and the Codex fix could
603
+ * conflate them safely only because its enum is wider. A model with nothing
604
+ * declared is unknown, and `text` is the honest floor — every routed model takes
605
+ * prompts. A model declaring `["audio"]` and nothing else is incompatible with a
606
+ * text|image client, and rewriting it to `["text"]` would advertise a capability
607
+ * it does not have. That input is reachable three ways: `ocx models add
608
+ * --modalities audio`, `/api/custom-models`, and provider discovery.
609
+ *
610
+ * So unknown falls back to text and incompatible returns null, which drops the
611
+ * row. Omitting a model costs the user a line in a picker; fabricating `text`
612
+ * costs them a model that fails at call time with no explanation.
613
+ *
614
+ * Deliberately NOT applied in `ExportModel` construction: the management and CLI
615
+ * boundaries carry catalog modalities verbatim on purpose, and stripping `audio`
616
+ * globally would destroy valid metadata before the destination is known.
617
+ */
618
+ const CLIENT_INPUT_MODALITIES: Record<"pi" | "gajae", ReadonlySet<string>> = {
619
+ pi: new Set(["text", "image"]),
620
+ gajae: new Set(["text", "image"]),
621
+ };
622
+
623
+ /** `null` means the model cannot be represented for this client — drop the row. */
624
+ function inputModalitiesForClient(
625
+ client: "pi" | "gajae",
626
+ modalities: readonly string[] | undefined,
627
+ ): string[] | null {
628
+ const declared = modalities ?? [];
629
+ if (declared.length === 0) return ["text"];
630
+ const accepted = CLIENT_INPUT_MODALITIES[client];
631
+ const kept: string[] = [];
632
+ for (const value of declared) {
633
+ if (accepted.has(value) && !kept.includes(value)) kept.push(value);
634
+ }
635
+ return kept.length > 0 ? kept : null;
636
+ }
637
+
638
+ /** DSH rc.6 accepts text/image; unknown values degrade to text, while audio-only cannot be represented. */
639
+ function dshInputModalities(modalities: readonly string[] | undefined): string[] | null {
640
+ const declared = modalities ?? [];
641
+ if (declared.length === 0) return ["text"];
642
+ const kept: string[] = [];
643
+ for (const value of declared) {
644
+ if ((value === "text" || value === "image") && !kept.includes(value)) kept.push(value);
645
+ }
646
+ if (kept.length > 0) return kept;
647
+ return declared.every(value => value === "audio") ? null : ["text"];
648
+ }
649
+
191
650
  /**
192
651
  * Label shared by every client: `"<displayName|id> (<native|provider|routed>)"`. The
193
652
  * provider suffix is what makes two same-named models from different upstreams
@@ -293,6 +752,15 @@ export interface PiModelEntry {
293
752
  input: string[];
294
753
  contextWindow?: number;
295
754
  maxTokens?: number;
755
+ /** Advertised when the catalog row carries a non-empty effort ladder. */
756
+ reasoning?: true;
757
+ /**
758
+ * Constrains pi's own level scale (minimal..max) to the declared ladder: members map to
759
+ * themselves, everything else is hidden (`null`). Without it pi would offer levels the
760
+ * ladder does not contain — harmless for provider-config ladders (the proxy clamps those
761
+ * at the wire) but a real 400 risk for custom-row ladders, which are advertisement-only.
762
+ */
763
+ thinkingLevelMap?: Record<string, string | null>;
296
764
  }
297
765
 
298
766
  export interface PiProviderBlock {
@@ -306,46 +774,754 @@ export interface PiGeneratedConfig {
306
774
  providers: Record<string, PiProviderBlock>;
307
775
  }
308
776
 
777
+ /**
778
+ * omp accepts a model-level API override. Keep the provider on Chat
779
+ * Completions so routed providers retain their established wire format, while
780
+ * native OpenAI models can use the lossless Responses surface.
781
+ */
782
+ export interface OmpModelEntry extends PiModelEntry {
783
+ api?: "openai-responses";
784
+ /** omp requires this flag before it honors a thinking block. */
785
+ reasoning?: true;
786
+ thinking?: {
787
+ mode: "effort";
788
+ efforts: string[];
789
+ defaultLevel?: string;
790
+ };
791
+ }
792
+
793
+ export interface OmpProviderBlock {
794
+ baseUrl: string;
795
+ api: typeof PI_API_DIALECT;
796
+ apiKey: string;
797
+ models: OmpModelEntry[];
798
+ }
799
+
800
+ export interface OmpGeneratedConfig {
801
+ providers: Record<string, OmpProviderBlock>;
802
+ }
803
+
804
+ /**
805
+ * omp validates model entries strictly. These are its documented effort
806
+ * values; omit an unknown value rather than invalidating the whole provider.
807
+ */
808
+ const OMP_EFFORT_VOCABULARY = new Set(["minimal", "low", "medium", "high", "xhigh", "max"]);
809
+
810
+ function ompEfforts(model: ExportModel): string[] {
811
+ const efforts: string[] = [];
812
+ for (const effort of model.reasoningEfforts ?? []) {
813
+ const normalized = effort.trim().toLowerCase();
814
+ if (OMP_EFFORT_VOCABULARY.has(normalized) && !efforts.includes(normalized)) {
815
+ efforts.push(normalized);
816
+ }
817
+ }
818
+ return efforts;
819
+ }
820
+
821
+ /**
822
+ * Hermes `~/.hermes/config.yaml`. We emit ONLY the provider entry — never
823
+ * `model.default` — because hijacking the user's main model is not what a
824
+ * connect action asks for.
825
+ */
826
+ export interface HermesProviderBlock {
827
+ api: string;
828
+ api_key: string;
829
+ api_mode: "chat_completions";
830
+ /** We supply the list, so skip their live `/models` probe. */
831
+ discover_models: false;
832
+ models: string[];
833
+ extra_headers?: Record<string, string>;
834
+ }
835
+
836
+ export interface HermesGeneratedConfig {
837
+ providers: Record<string, HermesProviderBlock>;
838
+ }
839
+
840
+ export interface OpenclawModelEntry {
841
+ id: string;
842
+ name: string;
843
+ contextWindow?: number;
844
+ }
845
+
846
+ export interface OpenclawProviderBlock {
847
+ baseUrl: string;
848
+ apiKey: string;
849
+ api: "openai-completions";
850
+ models: OpenclawModelEntry[];
851
+ headers?: Record<string, string>;
852
+ }
853
+
854
+ /** `mode: "merge"` keeps OpenClaw's bundled catalog alongside ours. */
855
+ export interface OpenclawGeneratedConfig {
856
+ models: {
857
+ mode: "merge";
858
+ providers: Record<string, OpenclawProviderBlock>;
859
+ };
860
+ }
861
+
862
+ export interface KimiProviderBlock {
863
+ type: "openai";
864
+ base_url: string;
865
+ api_key: string;
866
+ }
867
+
868
+ /**
869
+ * `max_context_size` is mandatory and must be positive, so a model with no
870
+ * authoritative context window is omitted from the document entirely rather
871
+ * than guessed at. `capabilities` is never emitted: our catalog does not
872
+ * assert them, and Kimi's own inference works off OpenAI-style name prefixes
873
+ * that a routed selector will not match.
874
+ */
875
+ export interface KimiModelBlock {
876
+ provider: string;
877
+ model: string;
878
+ max_context_size: number;
879
+ display_name?: string;
880
+ }
881
+
882
+ export interface KimiGeneratedConfig {
883
+ providers: Record<string, KimiProviderBlock>;
884
+ models: Record<string, KimiModelBlock>;
885
+ }
886
+
887
+ export interface GajaeModelEntry {
888
+ id: string;
889
+ name: string;
890
+ input: string[];
891
+ contextWindow?: number;
892
+ maxTokens?: number;
893
+ }
894
+
895
+ /** Gajae validates strictly: an unknown field fails the whole config. */
896
+ export interface GajaeProviderBlock {
897
+ baseUrl: string;
898
+ apiKeyEnv: string;
899
+ api: "openai-completions";
900
+ models: GajaeModelEntry[];
901
+ }
902
+
903
+ export interface GajaeGeneratedConfig {
904
+ providers: Record<string, GajaeProviderBlock>;
905
+ }
906
+
907
+ export type DshReasoningEffort = "low" | "medium" | "high" | "xhigh" | "max";
908
+ export type DshWireReasoningEffort = DshReasoningEffort | "ultra";
909
+
910
+ export interface DshModelEntry {
911
+ id: string;
912
+ name: string;
913
+ input: string[];
914
+ contextWindow?: number;
915
+ reasoningEfforts?: Partial<Record<DshReasoningEffort, DshWireReasoningEffort>>;
916
+ }
917
+
918
+ export interface DshProviderBlock {
919
+ displayName: "OpenCodex";
920
+ api: "openai-responses";
921
+ baseURL: string;
922
+ headers: { Authorization: "Bearer ocx_data_dsh" };
923
+ models: DshModelEntry[];
924
+ }
925
+
926
+ export interface DshGeneratedConfig {
927
+ "llm-pi-ai": {
928
+ providers: Record<string, DshProviderBlock>;
929
+ };
930
+ }
931
+
932
+ export interface McodeProviderBlock {
933
+ name: "OpenCodex";
934
+ kind: "custom";
935
+ enabled: true;
936
+ api: "anthropic-messages";
937
+ options: {
938
+ apiKey: string;
939
+ baseURL: string;
940
+ authMode: "api-key";
941
+ };
942
+ models: Record<string, McodeModelEntry>;
943
+ }
944
+
945
+ export interface McodeModelEntry {
946
+ /** MCode uses this value for context accounting and compaction. */
947
+ limit?: { context: number };
948
+ /** MCode exposes these exact levels in `/model` and sends the selected effort. */
949
+ thinking?: { effortOptions: string[] };
950
+ }
951
+
952
+ export interface McodeGeneratedConfig {
953
+ custom_provider: Record<string, McodeProviderBlock>;
954
+ }
955
+
956
+ /**
957
+ * ZCode's `~/.zcode/v2/config.json` provider entry (observed schema, validated
958
+ * live against ZCode 3.7.7 / 3.8.1). `kind: "openai-compatible"` selects the
959
+ * OpenAI Chat Completions protocol, which the proxy serves at `/v1/chat/completions`.
960
+ * `apiKeyRequired` keeps ZCode's UI from prompting for a key it does not need on
961
+ * loopback; the serialized key is always the non-secret loopback placeholder.
962
+ */
963
+ export interface ZcodeModelEntry {
964
+ name?: string;
965
+ limit?: { context: number; output?: number };
966
+ modalities: { input: string[]; output: string[] };
967
+ }
968
+
969
+ export interface ZcodeProviderBlock {
970
+ name: "OpenCodex";
971
+ kind: "openai-compatible";
972
+ enabled: true;
973
+ source: "custom";
974
+ options: {
975
+ apiKey: string;
976
+ baseURL: string;
977
+ apiKeyRequired: true;
978
+ };
979
+ models: Record<string, ZcodeModelEntry>;
980
+ }
981
+
982
+ export interface ZcodeGeneratedConfig {
983
+ provider: Record<string, ZcodeProviderBlock>;
984
+ }
985
+
309
986
  /**
310
987
  * Pi's `~/.pi/agent/models.json` shape. `models` is an ARRAY (identity lives in `id`),
311
988
  * unlike OpenCode's keyed object.
312
989
  *
313
- * Two fields are deliberately absent. `cost` requires all four price fields and we have
314
- * no price data at all, so emitting zeros would assert every routed model is free.
315
- * `reasoning` is a boolean in Pi while our catalog carries an effort list — mapping one
316
- * to the other would be a guess.
990
+ * Two fields were deliberately absent once. `cost` still is: it requires all four price
991
+ * fields and we have no price data at all, so emitting zeros would assert every routed
992
+ * model is free. `reasoning` used to be omitted because Pi's boolean and the catalog's
993
+ * effort ladder did not obviously map — but a NON-EMPTY ladder is the catalog's own
994
+ * statement that the model accepts reasoning parameters (adapters honor `reasoning_effort`),
995
+ * and an empty or absent ladder is the statement that it does not. Emitting `reasoning:
996
+ * true` exactly for rows with a ladder is therefore not a guess; it is what makes Pi's
997
+ * effort control appear for routed models at all. The export also emits a `thinkingLevelMap`
998
+ * that hides every pi level outside the declared ladder, so pi never offers (and sends) an
999
+ * effort the ladder does not contain — custom-row ladders are catalog advertisement only
1000
+ * and get no wire clamp, so this map is what keeps pi honest for those. Users who need a
1001
+ * different mapping can still hand-tune `thinkingLevelMap` afterwards.
317
1002
  *
318
- * Pi's schema is UNVERIFIED against a real installation (001 §2); this contract is ours,
319
- * not a claim about Pi's acceptance.
1003
+ * Pi's input enum IS verified: its documented model configuration accepts only
1004
+ * `text` and `image`, and a validation failure yields an EMPTY model config
1005
+ * rather than dropping the offending entry — one bad value costs every routed
1006
+ * model. The rest of this contract (omitting `cost`) is still ours rather than
1007
+ * a claim about Pi's acceptance.
320
1008
  */
321
1009
  function buildPiClientConfig(ctx: ExportContext): PiGeneratedConfig {
322
- const models: PiModelEntry[] = normalizeExportModels(ctx.models).map(model => {
1010
+ const models: PiModelEntry[] = [];
1011
+ for (const model of normalizeExportModels(ctx.models)) {
1012
+ // Text is the one modality every routed model supports; anything richer must come
1013
+ // from the catalog rather than an assumption — and must still be inside the enum
1014
+ // Pi accepts, because one rejected value empties the whole config.
1015
+ const input = inputModalitiesForClient("pi", model.inputModalities);
1016
+ // An audio-only model has no honest representation here; claiming `text`
1017
+ // would fail at call time instead, so the row is dropped.
1018
+ if (input === null) continue;
323
1019
  const entry: PiModelEntry = {
324
1020
  id: model.namespaced,
325
1021
  name: exportModelLabel(model),
326
- // Text is the one modality every routed model supports; anything richer must come
327
- // from the catalog rather than an assumption.
328
- input: model.inputModalities && model.inputModalities.length > 0 ? [...model.inputModalities] : ["text"],
1022
+ input,
329
1023
  };
1024
+ if (Array.isArray(model.reasoningEfforts) && model.reasoningEfforts.length > 0) {
1025
+ entry.reasoning = true;
1026
+ const efforts = model.reasoningEfforts;
1027
+ entry.thinkingLevelMap = {
1028
+ // pi's off level maps to the declared `none` sentinel (the proxy omits the
1029
+ // reasoning parameter for it); hidden when the ladder does not declare none.
1030
+ off: efforts.includes("none") ? "none" : null,
1031
+ minimal: efforts.includes("minimal") ? "minimal" : null,
1032
+ low: efforts.includes("low") ? "low" : null,
1033
+ medium: efforts.includes("medium") ? "medium" : null,
1034
+ high: efforts.includes("high") ? "high" : null,
1035
+ xhigh: efforts.includes("xhigh") ? "xhigh" : null,
1036
+ max: efforts.includes("max") ? "max" : efforts.includes("ultra") ? "ultra" : null,
1037
+ };
1038
+ }
330
1039
  const context = authoritativeContextWindow(model.contextWindow);
331
1040
  if (context !== undefined) {
332
1041
  entry.contextWindow = context;
333
1042
  entry.maxTokens = outputBudgetFor(context);
334
1043
  }
335
- return entry;
336
- });
1044
+ models.push(entry);
1045
+ }
1046
+ return {
1047
+ providers: {
1048
+ [OPENCODE_PROVIDER_ID]: {
1049
+ baseUrl: ctx.baseUrl,
1050
+ api: PI_API_DIALECT,
1051
+ apiKey: LOOPBACK_API_KEY_PLACEHOLDER,
1052
+ models,
1053
+ },
1054
+ },
1055
+ };
1056
+ }
1057
+
1058
+ /**
1059
+ * omp's models.yml is Pi-like, but it supports effort metadata and a per-model
1060
+ * API dialect. Native OpenAI models use Responses; all routed models inherit
1061
+ * the provider's existing Chat Completions dialect.
1062
+ */
1063
+ function buildOmpClientConfig(ctx: ExportContext): OmpGeneratedConfig {
1064
+ const models: OmpModelEntry[] = [];
1065
+ for (const model of normalizeExportModels(ctx.models)) {
1066
+ const input = inputModalitiesForClient("pi", model.inputModalities);
1067
+ if (input === null) continue;
1068
+ const entry: OmpModelEntry = {
1069
+ id: model.namespaced,
1070
+ name: exportModelLabel(model),
1071
+ input,
1072
+ ...(model.native && model.provider === "openai" ? { api: "openai-responses" } : {}),
1073
+ };
1074
+ const context = authoritativeContextWindow(model.contextWindow);
1075
+ if (context !== undefined) {
1076
+ entry.contextWindow = context;
1077
+ entry.maxTokens = outputBudgetFor(context);
1078
+ }
1079
+ const efforts = ompEfforts(model);
1080
+ if (efforts.length > 0) {
1081
+ const defaultLevel = model.defaultReasoningEffort?.trim().toLowerCase();
1082
+ entry.reasoning = true;
1083
+ entry.thinking = {
1084
+ mode: "effort",
1085
+ efforts,
1086
+ ...(defaultLevel && efforts.includes(defaultLevel) ? { defaultLevel } : {}),
1087
+ };
1088
+ }
1089
+ models.push(entry);
1090
+ }
337
1091
  return {
338
1092
  providers: {
339
1093
  [OPENCODE_PROVIDER_ID]: {
340
1094
  baseUrl: ctx.baseUrl,
341
1095
  api: PI_API_DIALECT,
342
- apiKey: PI_API_KEY_ENV_REF,
1096
+ apiKey: LOOPBACK_API_KEY_PLACEHOLDER,
1097
+ models,
1098
+ },
1099
+ },
1100
+ };
1101
+ }
1102
+
1103
+ /** Extra headers a non-loopback bind needs, or nothing on loopback. */
1104
+ function proxyAdmissionHeaders(config: OcxConfig | undefined, envRef: string): Record<string, string> | undefined {
1105
+ return shouldInjectApiAuthHeader(config) ? { "x-opencodex-api-key": envRef } : undefined;
1106
+ }
1107
+
1108
+ function buildHermesClientConfig(ctx: ExportContext): HermesGeneratedConfig {
1109
+ const models = normalizeExportModels(ctx.models).map(model => model.namespaced);
1110
+ const headers = proxyAdmissionHeaders(ctx.config, HERMES_API_KEY_ENV_REF);
1111
+ return {
1112
+ providers: {
1113
+ [OPENCODE_PROVIDER_ID]: {
1114
+ api: ctx.baseUrl,
1115
+ api_key: HERMES_API_KEY_ENV_REF,
1116
+ api_mode: "chat_completions",
1117
+ discover_models: false,
1118
+ models,
1119
+ ...(headers ? { extra_headers: headers } : {}),
1120
+ },
1121
+ },
1122
+ };
1123
+ }
1124
+
1125
+ function buildOpenclawClientConfig(ctx: ExportContext): OpenclawGeneratedConfig {
1126
+ const models: OpenclawModelEntry[] = normalizeExportModels(ctx.models).map(model => {
1127
+ const context = authoritativeContextWindow(model.contextWindow);
1128
+ return {
1129
+ id: model.namespaced,
1130
+ name: exportModelLabel(model),
1131
+ ...(context !== undefined ? { contextWindow: context } : {}),
1132
+ };
1133
+ });
1134
+ const headers = proxyAdmissionHeaders(ctx.config, OPENCLAW_API_KEY_ENV_REF);
1135
+ return {
1136
+ models: {
1137
+ mode: "merge",
1138
+ providers: {
1139
+ [OPENCODE_PROVIDER_ID]: {
1140
+ baseUrl: ctx.baseUrl,
1141
+ apiKey: OPENCLAW_API_KEY_ENV_REF,
1142
+ api: "openai-completions",
1143
+ models,
1144
+ ...(headers ? { headers } : {}),
1145
+ },
1146
+ },
1147
+ },
1148
+ };
1149
+ }
1150
+
1151
+ /** Kimi's model alias: one key per model, namespaced under our provider id. */
1152
+ export function kimiModelAlias(namespaced: string): string {
1153
+ return `${OPENCODE_PROVIDER_ID}/${namespaced}`;
1154
+ }
1155
+
1156
+ function buildKimiClientConfig(ctx: ExportContext): KimiGeneratedConfig {
1157
+ const models: Record<string, KimiModelBlock> = {};
1158
+ for (const model of normalizeExportModels(ctx.models)) {
1159
+ const context = authoritativeContextWindow(model.contextWindow);
1160
+ // `max_context_size` is mandatory and must be positive. We do not guess it,
1161
+ // so a model without an authoritative window is left out rather than
1162
+ // shipped with a number we invented.
1163
+ if (context === undefined) continue;
1164
+ models[kimiModelAlias(model.namespaced)] = {
1165
+ provider: OPENCODE_PROVIDER_ID,
1166
+ model: model.namespaced,
1167
+ max_context_size: context,
1168
+ ...(model.displayName ? { display_name: model.displayName } : {}),
1169
+ };
1170
+ }
1171
+ return {
1172
+ providers: {
1173
+ [OPENCODE_PROVIDER_ID]: {
1174
+ type: "openai",
1175
+ base_url: ctx.baseUrl,
1176
+ api_key: LOOPBACK_API_KEY_PLACEHOLDER,
1177
+ },
1178
+ },
1179
+ models,
1180
+ };
1181
+ }
1182
+
1183
+ function buildGajaeClientConfig(ctx: ExportContext): GajaeGeneratedConfig {
1184
+ const models: GajaeModelEntry[] = [];
1185
+ for (const model of normalizeExportModels(ctx.models)) {
1186
+ // Gajae's enum is text|image and it rejects the whole file over one bad
1187
+ // value, naming the offending index in the error.
1188
+ const input = inputModalitiesForClient("gajae", model.inputModalities);
1189
+ if (input === null) continue;
1190
+ const entry: GajaeModelEntry = {
1191
+ id: model.namespaced,
1192
+ name: exportModelLabel(model),
1193
+ input,
1194
+ };
1195
+ const context = authoritativeContextWindow(model.contextWindow);
1196
+ if (context !== undefined) {
1197
+ entry.contextWindow = context;
1198
+ entry.maxTokens = outputBudgetFor(context);
1199
+ }
1200
+ models.push(entry);
1201
+ }
1202
+ return {
1203
+ providers: {
1204
+ [OPENCODE_PROVIDER_ID]: {
1205
+ baseUrl: ctx.baseUrl,
1206
+ apiKeyEnv: GAJAE_API_KEY_ENV,
1207
+ api: "openai-completions",
343
1208
  models,
344
1209
  },
345
1210
  },
346
1211
  };
347
1212
  }
348
1213
 
1214
+ const DSH_EFFORT_ORDER: readonly DshReasoningEffort[] = ["low", "medium", "high", "xhigh", "max"];
1215
+
1216
+ function dshReasoningEfforts(model: ExportModel): DshModelEntry["reasoningEfforts"] {
1217
+ const offered = new Set<string>();
1218
+ for (const raw of model.reasoningEfforts ?? []) {
1219
+ const effort = raw.trim().toLowerCase();
1220
+ if (effort === "ultra" || DSH_EFFORT_ORDER.includes(effort as DshReasoningEffort)) offered.add(effort);
1221
+ }
1222
+ if (offered.size === 0) return undefined;
1223
+ const entries: Array<[DshReasoningEffort, DshWireReasoningEffort]> = [];
1224
+ for (const effort of DSH_EFFORT_ORDER) {
1225
+ if (effort !== "max") {
1226
+ if (offered.has(effort)) entries.push([effort, effort]);
1227
+ continue;
1228
+ }
1229
+ // DSH's key is the selectable level; the value is what it sends on the
1230
+ // wire. Preserve OpenCodex's `ultra` spelling when that is the only
1231
+ // highest effort, exactly like the rc.6 `max: ultra` contract.
1232
+ if (offered.has("max")) entries.push(["max", "max"]);
1233
+ else if (offered.has("ultra")) entries.push(["max", "ultra"]);
1234
+ }
1235
+ return Object.fromEntries(entries);
1236
+ }
1237
+
1238
+ function isKnownSafeDshCombo(model: ExportModel, config: OcxConfig): boolean {
1239
+ const combos = (config as { combos?: unknown }).combos;
1240
+ if (typeof combos !== "object" || combos === null || Array.isArray(combos)) return false;
1241
+ const combo = (combos as Record<string, unknown>)[model.id];
1242
+ if (typeof combo !== "object" || combo === null || Array.isArray(combo)) return false;
1243
+ const targets = (combo as { targets?: unknown }).targets;
1244
+ if (!Array.isArray(targets) || targets.length === 0) return false;
1245
+ return targets.every(target => {
1246
+ if (typeof target !== "object" || target === null || Array.isArray(target)) return false;
1247
+ const provider = (target as { provider?: unknown }).provider;
1248
+ const modelId = (target as { model?: unknown }).model;
1249
+ return typeof provider === "string"
1250
+ && provider.length > 0
1251
+ && provider === provider.trim()
1252
+ && provider !== "openai"
1253
+ && typeof modelId === "string"
1254
+ && modelId.length > 0
1255
+ && modelId === modelId.trim();
1256
+ });
1257
+ }
1258
+
1259
+ function buildDshClientConfig(ctx: ExportContext): DshGeneratedConfig {
1260
+ const direct = providerCodexAccountMode("openai", ctx.config?.providers?.openai) === "direct";
1261
+ const models: DshModelEntry[] = [];
1262
+ for (const model of normalizeExportModels(ctx.models)) {
1263
+ if (direct && (model.native === true || model.provider === "openai")) continue;
1264
+ if (direct && model.provider === "combo" && (!ctx.config || !isKnownSafeDshCombo(model, ctx.config))) continue;
1265
+ const input = dshInputModalities(model.inputModalities);
1266
+ if (input === null) continue;
1267
+ const contextWindow = authoritativeContextWindow(model.contextWindow);
1268
+ const reasoningEfforts = dshReasoningEfforts(model);
1269
+ models.push({
1270
+ id: model.namespaced,
1271
+ name: exportModelLabel(model),
1272
+ input,
1273
+ ...(contextWindow !== undefined ? { contextWindow } : {}),
1274
+ ...(reasoningEfforts ? { reasoningEfforts } : {}),
1275
+ });
1276
+ }
1277
+ return {
1278
+ "llm-pi-ai": {
1279
+ providers: {
1280
+ [OPENCODE_PROVIDER_ID]: {
1281
+ displayName: "OpenCodex",
1282
+ api: "openai-responses",
1283
+ baseURL: ctx.baseUrl,
1284
+ headers: { Authorization: "Bearer ocx_data_dsh" },
1285
+ models,
1286
+ },
1287
+ },
1288
+ },
1289
+ };
1290
+ }
1291
+
1292
+ /**
1293
+ * MiniMax Code's `provider add` command persists custom providers under
1294
+ * `custom_provider.<id>`. Its current model schema reads `limit.context` for
1295
+ * context accounting and `thinking.effortOptions` for the `/model` effort
1296
+ * control. Do not emit the removed `thinking.effort` / `defaultEffort` fields:
1297
+ * MCode 0.1.6 migrates those into options and keeps the selected effort in the
1298
+ * session. Do not emit `defaultModel` either: connecting a client must not
1299
+ * silently replace the user's current model selection.
1300
+ */
1301
+ function buildMcodeClientConfig(ctx: ExportContext): McodeGeneratedConfig {
1302
+ const models: Record<string, McodeModelEntry> = {};
1303
+ for (const model of normalizeExportModels(ctx.models)) {
1304
+ const entry: McodeModelEntry = {};
1305
+ const context = authoritativeContextWindow(model.contextWindow);
1306
+ if (context !== undefined) entry.limit = { context };
1307
+ // `none` is an internal Codex catalog sentinel, not an MCode effort. MCode
1308
+ // forwards every option as `output_config.effort` while keeping adaptive
1309
+ // thinking enabled, and the Anthropic ingress deliberately accepts only
1310
+ // minimal..ultra. Advertising `none` would therefore create a selectable
1311
+ // value that cannot disable reasoning and is not forwarded as an effort.
1312
+ const efforts = sanitizeCodexReasoningEfforts(model.reasoningEfforts)
1313
+ ?.filter(effort => effort !== "none");
1314
+ if (efforts && efforts.length > 0) entry.thinking = { effortOptions: efforts };
1315
+ models[model.namespaced] = entry;
1316
+ }
1317
+ return {
1318
+ custom_provider: {
1319
+ [OPENCODE_PROVIDER_ID]: {
1320
+ name: "OpenCodex",
1321
+ kind: "custom",
1322
+ enabled: true,
1323
+ api: "anthropic-messages",
1324
+ options: {
1325
+ apiKey: LOOPBACK_API_KEY_PLACEHOLDER,
1326
+ baseURL: ctx.baseUrl.replace(/\/v1\/?$/, ""),
1327
+ authMode: "api-key",
1328
+ },
1329
+ models,
1330
+ },
1331
+ },
1332
+ };
1333
+ }
1334
+
1335
+ /**
1336
+ * ZCode dials the OpenAI Chat Completions surface (`openai-compatible`), which
1337
+ * appends `/chat/completions` to `baseURL`. We supply `baseURL` with the `/v1`
1338
+ * suffix so requests land on `/v1/chat/completions`. Model ids are the proxy's canonical
1339
+ * `provider/id` selectors, which `/v1/chat/completions` resolves directly. Context
1340
+ * limits follow the authoritative-window rule: a model without one ships
1341
+ * without `limit` rather than guessing. Modalities are ZCode's observed
1342
+ * `text`-floor vocabulary; image-capable rows advertise image input.
1343
+ */
1344
+ function buildZcodeClientConfig(ctx: ExportContext): ZcodeGeneratedConfig {
1345
+ const models: Record<string, ZcodeModelEntry> = {};
1346
+ for (const model of normalizeExportModels(ctx.models)) {
1347
+ const input = inputModalitiesForClient("pi", model.inputModalities);
1348
+ if (input === null) continue;
1349
+ const entry: ZcodeModelEntry = {
1350
+ name: exportModelLabel(model),
1351
+ modalities: { input, output: ["text"] },
1352
+ };
1353
+ // `limit.context` follows the authoritative-window rule. `output` is
1354
+ // deliberately absent: ZCode's schema makes it optional and we have no
1355
+ // authoritative output budget to assert (reviewer finding: an emitted
1356
+ // stand-in would be a guessed capability, exactly what "no metadata is
1357
+ // guessed" forbids).
1358
+ const context = authoritativeContextWindow(model.contextWindow);
1359
+ if (context !== undefined) {
1360
+ entry.limit = { context };
1361
+ }
1362
+ models[model.namespaced] = entry;
1363
+ }
1364
+ return {
1365
+ provider: {
1366
+ [OPENCODE_PROVIDER_ID]: {
1367
+ name: "OpenCodex",
1368
+ kind: "openai-compatible",
1369
+ enabled: true,
1370
+ source: "custom",
1371
+ options: {
1372
+ apiKey: LOOPBACK_API_KEY_PLACEHOLDER,
1373
+ baseURL: ctx.baseUrl.replace(/\/v1\/?$/, "") + "/v1",
1374
+ apiKeyRequired: true,
1375
+ },
1376
+ models,
1377
+ },
1378
+ },
1379
+ };
1380
+ }
1381
+
1382
+ /**
1383
+ * Per-client model counts, read back off the SERIALIZED document rather than
1384
+ * recomputed from the input rows: `modelsWithoutLimits` drives a GUI line about
1385
+ * the bytes the user actually receives, so a parallel reimplementation of the
1386
+ * "authoritative context window" rule would be free to drift from it.
1387
+ */
1388
+ function summarizeOpencode(document: unknown): { modelCount: number; modelsWithoutLimits: number } {
1389
+ const models = Object.values((document as OpencodeGeneratedConfig | undefined)?.provider?.[OPENCODE_PROVIDER_ID]?.models ?? {});
1390
+ return { modelCount: models.length, modelsWithoutLimits: models.filter(model => !model.limit).length };
1391
+ }
1392
+
1393
+ function summarizePi(document: unknown): { modelCount: number; modelsWithoutLimits: number } {
1394
+ const models = (document as PiGeneratedConfig | undefined)?.providers?.[OPENCODE_PROVIDER_ID]?.models ?? [];
1395
+ return { modelCount: models.length, modelsWithoutLimits: models.filter(model => model.contextWindow === undefined).length };
1396
+ }
1397
+
1398
+ function summarizeOmp(document: unknown): { modelCount: number; modelsWithoutLimits: number } {
1399
+ const models = (document as OmpGeneratedConfig | undefined)?.providers?.[OPENCODE_PROVIDER_ID]?.models ?? [];
1400
+ return { modelCount: models.length, modelsWithoutLimits: models.filter(model => model.contextWindow === undefined).length };
1401
+ }
1402
+
1403
+ function summarizeHermes(document: unknown): { modelCount: number; modelsWithoutLimits: number } {
1404
+ const models = (document as HermesGeneratedConfig | undefined)?.providers?.[OPENCODE_PROVIDER_ID]?.models ?? [];
1405
+ // Hermes carries selectors only; it has no per-model limit to be missing.
1406
+ return { modelCount: models.length, modelsWithoutLimits: 0 };
1407
+ }
1408
+
1409
+ function summarizeOpenclaw(document: unknown): { modelCount: number; modelsWithoutLimits: number } {
1410
+ const models = (document as OpenclawGeneratedConfig | undefined)?.models?.providers?.[OPENCODE_PROVIDER_ID]?.models ?? [];
1411
+ return { modelCount: models.length, modelsWithoutLimits: models.filter(model => model.contextWindow === undefined).length };
1412
+ }
1413
+
1414
+ function summarizeKimi(document: unknown): { modelCount: number; modelsWithoutLimits: number } {
1415
+ const models = Object.values((document as KimiGeneratedConfig | undefined)?.models ?? {});
1416
+ // A model with no authoritative window is omitted entirely, so every model
1417
+ // present carries max_context_size by construction.
1418
+ return { modelCount: models.length, modelsWithoutLimits: 0 };
1419
+ }
1420
+
1421
+ function summarizeGajae(document: unknown): { modelCount: number; modelsWithoutLimits: number } {
1422
+ const models = (document as GajaeGeneratedConfig | undefined)?.providers?.[OPENCODE_PROVIDER_ID]?.models ?? [];
1423
+ return { modelCount: models.length, modelsWithoutLimits: models.filter(model => model.contextWindow === undefined).length };
1424
+ }
1425
+
1426
+ function summarizeDsh(document: unknown): { modelCount: number; modelsWithoutLimits: number } {
1427
+ const models = (document as DshGeneratedConfig | undefined)?.["llm-pi-ai"]?.providers?.[OPENCODE_PROVIDER_ID]?.models ?? [];
1428
+ return { modelCount: models.length, modelsWithoutLimits: models.filter(model => model.contextWindow === undefined).length };
1429
+ }
1430
+
1431
+ function summarizeMcode(document: unknown): { modelCount: number; modelsWithoutLimits: number } {
1432
+ const models = Object.values((document as McodeGeneratedConfig | undefined)?.custom_provider?.[OPENCODE_PROVIDER_ID]?.models ?? {});
1433
+ return { modelCount: models.length, modelsWithoutLimits: models.filter(model => !model.limit).length };
1434
+ }
1435
+
1436
+ function summarizeZcode(document: unknown): { modelCount: number; modelsWithoutLimits: number } {
1437
+ const models = Object.values((document as ZcodeGeneratedConfig | undefined)?.provider?.[OPENCODE_PROVIDER_ID]?.models ?? {});
1438
+ return { modelCount: models.length, modelsWithoutLimits: models.filter(model => !model.limit).length };
1439
+ }
1440
+
1441
+ /** One fragment at `path`, built from this client's own document. */
1442
+ function singleFragment(clientId: ExportClientId, path: readonly string[], value: unknown): ManagedContribution {
1443
+ return { clientId, fragments: [{ path, value }] };
1444
+ }
1445
+
1446
+ function buildOpencodeContribution(ctx: ExportContext): ManagedContribution {
1447
+ const doc = buildOpencodeClientConfig(ctx);
1448
+ return singleFragment("opencode", ["provider", OPENCODE_PROVIDER_ID], doc.provider[OPENCODE_PROVIDER_ID]);
1449
+ }
1450
+
1451
+ function buildPiContribution(ctx: ExportContext): ManagedContribution {
1452
+ const doc = buildPiClientConfig(ctx);
1453
+ return singleFragment("pi", ["providers", OPENCODE_PROVIDER_ID], doc.providers[OPENCODE_PROVIDER_ID]);
1454
+ }
1455
+
1456
+ function buildOmpContribution(ctx: ExportContext): ManagedContribution {
1457
+ const doc = buildOmpClientConfig(ctx);
1458
+ return singleFragment("omp", ["providers", OPENCODE_PROVIDER_ID], doc.providers[OPENCODE_PROVIDER_ID]);
1459
+ }
1460
+
1461
+ function buildHermesContribution(ctx: ExportContext): ManagedContribution {
1462
+ const doc = buildHermesClientConfig(ctx);
1463
+ return singleFragment("hermes", ["providers", OPENCODE_PROVIDER_ID], doc.providers[OPENCODE_PROVIDER_ID]);
1464
+ }
1465
+
1466
+ function buildOpenclawContribution(ctx: ExportContext): ManagedContribution {
1467
+ const doc = buildOpenclawClientConfig(ctx);
1468
+ return singleFragment("openclaw", ["models", "providers", OPENCODE_PROVIDER_ID], doc.models.providers[OPENCODE_PROVIDER_ID]);
1469
+ }
1470
+
1471
+ /**
1472
+ * Kimi is why a contribution is a LIST: it owns the provider block AND one
1473
+ * `models` entry per model. A writer that only knew about the provider would
1474
+ * strand every model entry on disable.
1475
+ */
1476
+ function buildKimiContribution(ctx: ExportContext): ManagedContribution {
1477
+ const doc = buildKimiClientConfig(ctx);
1478
+ const fragments: ManagedFragment[] = [
1479
+ { path: ["providers", OPENCODE_PROVIDER_ID], value: doc.providers[OPENCODE_PROVIDER_ID] },
1480
+ ];
1481
+ for (const [alias, block] of Object.entries(doc.models)) {
1482
+ fragments.push({ path: ["models", alias], value: block });
1483
+ }
1484
+ return { clientId: "kimi", fragments };
1485
+ }
1486
+
1487
+ function buildGajaeContribution(ctx: ExportContext): ManagedContribution {
1488
+ const doc = buildGajaeClientConfig(ctx);
1489
+ return singleFragment("gajae", ["providers", OPENCODE_PROVIDER_ID], doc.providers[OPENCODE_PROVIDER_ID]);
1490
+ }
1491
+
1492
+ function buildDshContribution(ctx: ExportContext): ManagedContribution {
1493
+ const doc = buildDshClientConfig(ctx);
1494
+ return singleFragment("dsh", ["llm-pi-ai", "providers", OPENCODE_PROVIDER_ID], doc["llm-pi-ai"].providers[OPENCODE_PROVIDER_ID]);
1495
+ }
1496
+
1497
+ function buildMcodeContribution(ctx: ExportContext): ManagedContribution {
1498
+ const doc = buildMcodeClientConfig(ctx);
1499
+ return singleFragment("mcode", ["custom_provider", OPENCODE_PROVIDER_ID], doc.custom_provider[OPENCODE_PROVIDER_ID]);
1500
+ }
1501
+
1502
+ function buildZcodeContribution(ctx: ExportContext): ManagedContribution {
1503
+ const doc = buildZcodeClientConfig(ctx);
1504
+ return singleFragment("zcode", ["provider", OPENCODE_PROVIDER_ID], doc.provider[OPENCODE_PROVIDER_ID]);
1505
+ }
1506
+
1507
+ /**
1508
+ * Prime Agent (PrimeIntellect) is the pi coding agent shipped under a different
1509
+ * brand rather than a lookalike: its package declares a `piConfig` block, and
1510
+ * the agent derives its config directory (`.prime/agent`) and env prefix from
1511
+ * that block alone. `models.json` is therefore the SAME contract Pi reads, so
1512
+ * this client reuses Pi's builder and summarizer verbatim. Restating the shape
1513
+ * here would create a second copy of one fact, which is exactly how the
1514
+ * "anything that is not OpenCode must be Pi" summarizer bug happened.
1515
+ *
1516
+ * The one thing that could still differ is the path we own, and it does not:
1517
+ * Prime keeps our entries under the same `providers.<id>` key. So the only new
1518
+ * code is stamping the right client id on the ownership record.
1519
+ */
1520
+ function buildPrimeContribution(ctx: ExportContext): ManagedContribution {
1521
+ const doc = buildPiClientConfig(ctx);
1522
+ return singleFragment("prime", ["providers", OPENCODE_PROVIDER_ID], doc.providers[OPENCODE_PROVIDER_ID]);
1523
+ }
1524
+
349
1525
  export const EXPORT_CLIENTS: Record<ExportClientId, ExportClientSpec> = {
350
1526
  opencode: {
351
1527
  id: "opencode",
@@ -354,14 +1530,150 @@ export const EXPORT_CLIENTS: Record<ExportClientId, ExportClientSpec> = {
354
1530
  apiKeyEnv: OPENCODE_API_KEY_ENV,
355
1531
  exportHint: `export ${OPENCODE_API_KEY_ENV}=<your key>`,
356
1532
  build: buildOpencodeClientConfig,
1533
+ format: "json",
1534
+ summarize: summarizeOpencode,
1535
+ buildContribution: buildOpencodeContribution,
1536
+ // carries the dedicated header in provider options
1537
+ loopbackOnly: false,
357
1538
  },
358
1539
  pi: {
359
1540
  id: "pi",
360
1541
  filename: "pi-models.json",
361
- destination: () => join(homedir(), ".pi", "agent", "models.json"),
362
- apiKeyEnv: PI_API_KEY_ENV,
363
- exportHint: `export ${PI_API_KEY_ENV}=<your key>`,
1542
+ destination: env => piConfigPath(env),
1543
+ apiKeyEnv: "",
1544
+ exportHint: "Pi reads a non-secret placeholder from models.json; loopback needs no key.",
364
1545
  build: buildPiClientConfig,
1546
+ format: "json",
1547
+ summarize: summarizePi,
1548
+ buildContribution: buildPiContribution,
1549
+ // No header field in Pi's provider block, so there is nowhere to put the
1550
+ // dedicated admission header a remote bind requires.
1551
+ loopbackOnly: true,
1552
+ },
1553
+ omp: {
1554
+ id: "omp",
1555
+ filename: "omp-models.yaml",
1556
+ destination: env => ompModelsConfigPath(env),
1557
+ apiKeyEnv: "",
1558
+ exportHint: "OMP reads a non-secret placeholder from models.yml; loopback needs no key.",
1559
+ build: buildOmpClientConfig,
1560
+ format: "yaml",
1561
+ summarize: summarizeOmp,
1562
+ buildContribution: buildOmpContribution,
1563
+ // OMP supports provider-level headers, but remote credential wiring is
1564
+ // intentionally deferred from this initial loopback-only integration.
1565
+ loopbackOnly: true,
1566
+ },
1567
+ hermes: {
1568
+ id: "hermes",
1569
+ filename: "hermes-config.yaml",
1570
+ destination: env => hermesConfigPath(env),
1571
+ apiKeyEnv: HERMES_API_KEY_ENV,
1572
+ exportHint: `export ${HERMES_API_KEY_ENV}=<your key>`,
1573
+ build: buildHermesClientConfig,
1574
+ format: "yaml",
1575
+ summarize: summarizeHermes,
1576
+ buildContribution: buildHermesContribution,
1577
+ // extra_headers carries the dedicated header
1578
+ loopbackOnly: false,
1579
+ },
1580
+ openclaw: {
1581
+ id: "openclaw",
1582
+ filename: "openclaw.json5",
1583
+ destination: env => openclawConfigPath(env),
1584
+ apiKeyEnv: OPENCLAW_API_KEY_ENV,
1585
+ exportHint: `export ${OPENCLAW_API_KEY_ENV}=<your key>`,
1586
+ build: buildOpenclawClientConfig,
1587
+ format: "json5",
1588
+ summarize: summarizeOpenclaw,
1589
+ buildContribution: buildOpenclawContribution,
1590
+ // headers carries the dedicated header
1591
+ loopbackOnly: false,
1592
+ },
1593
+ kimi: {
1594
+ id: "kimi",
1595
+ filename: "kimi-config.toml",
1596
+ destination: env => kimiConfigPath(env),
1597
+ // Kimi reads credentials only from its own file, so there is no env var to
1598
+ // export: a loopback bind uses the placeholder, and a remote bind is
1599
+ // refused rather than handed the user's real key.
1600
+ apiKeyEnv: "",
1601
+ exportHint: "Kimi Code reads credentials from its config file; loopback needs no key.",
1602
+ build: buildKimiClientConfig,
1603
+ format: "toml",
1604
+ summarize: summarizeKimi,
1605
+ buildContribution: buildKimiContribution,
1606
+ // no header field, and credentials come only from this file
1607
+ loopbackOnly: true,
1608
+ },
1609
+ gajae: {
1610
+ id: "gajae",
1611
+ filename: "gajae-models.yaml",
1612
+ destination: env => gajaeConfigPath(env),
1613
+ apiKeyEnv: GAJAE_API_KEY_ENV,
1614
+ exportHint: `export ${GAJAE_API_KEY_ENV}=<your key>`,
1615
+ build: buildGajaeClientConfig,
1616
+ format: "yaml",
1617
+ summarize: summarizeGajae,
1618
+ buildContribution: buildGajaeContribution,
1619
+ // strict schema with no header field, so the dedicated header has nowhere to go
1620
+ loopbackOnly: true,
1621
+ },
1622
+ dsh: {
1623
+ id: "dsh",
1624
+ filename: "settings.yaml",
1625
+ destination: env => dshConfigPath(env),
1626
+ apiKeyEnv: "",
1627
+ exportHint: "DSH uses a non-secret loopback bearer placeholder in settings.yaml; loopback needs no key.",
1628
+ build: buildDshClientConfig,
1629
+ format: "yaml",
1630
+ summarize: summarizeDsh,
1631
+ buildContribution: buildDshContribution,
1632
+ loopbackOnly: true,
1633
+ },
1634
+ mcode: {
1635
+ id: "mcode",
1636
+ filename: "mcode-config.yaml",
1637
+ destination: env => mcodeConfigPath(env),
1638
+ apiKeyEnv: "",
1639
+ exportHint: "MiniMax Code reads a non-secret placeholder from config.yaml; loopback needs no key.",
1640
+ build: buildMcodeClientConfig,
1641
+ format: "yaml",
1642
+ summarize: summarizeMcode,
1643
+ buildContribution: buildMcodeContribution,
1644
+ // MCode persists this credential and exposes no dedicated proxy-admission
1645
+ // header field, so real keys are never serialized and remote binds refuse.
1646
+ loopbackOnly: true,
1647
+ },
1648
+ zcode: {
1649
+ id: "zcode",
1650
+ filename: "config.json",
1651
+ destination: env => zcodeConfigPath(env),
1652
+ apiKeyEnv: "",
1653
+ exportHint: "ZCode reads a non-secret placeholder from v2/config.json; loopback needs no key.",
1654
+ build: buildZcodeClientConfig,
1655
+ format: "json",
1656
+ summarize: summarizeZcode,
1657
+ buildContribution: buildZcodeContribution,
1658
+ // ZCode persists the credential in its own file and has no dedicated
1659
+ // proxy-admission header field, so real keys are never serialized and
1660
+ // remote binds refuse — same reasoning as MCode.
1661
+ loopbackOnly: true,
1662
+ },
1663
+ prime: {
1664
+ id: "prime",
1665
+ filename: "prime-models.json",
1666
+ destination: env => primeConfigPath(env),
1667
+ apiKeyEnv: "",
1668
+ exportHint: "Prime Agent reads a non-secret placeholder from models.json; loopback needs no key.",
1669
+ build: buildPiClientConfig,
1670
+ format: "json",
1671
+ summarize: summarizePi,
1672
+ buildContribution: buildPrimeContribution,
1673
+ // Prime's provider block does accept `headers`, so a dedicated admission
1674
+ // header has somewhere to live, but remote credential wiring is deferred
1675
+ // from this initial loopback-only integration — same stance as OMP's.
1676
+ loopbackOnly: true,
365
1677
  },
366
1678
  };
367
1679
 
@@ -375,3 +1687,28 @@ export function isExportClientId(value: string): value is ExportClientId {
375
1687
  export function buildClientConfig(client: ExportClientId, ctx: ExportContext): unknown {
376
1688
  return EXPORT_CLIENTS[client].build(ctx);
377
1689
  }
1690
+
1691
+ /**
1692
+ * The bytes a user actually receives, plus what they are. One place turns a
1693
+ * client id into text so the CLI, the API and the GUI cannot disagree about
1694
+ * format or media type — and so no consumer has to infer either from a
1695
+ * filename.
1696
+ */
1697
+ export function buildClientConfigText(
1698
+ client: ExportClientId,
1699
+ ctx: ExportContext,
1700
+ ): { document: unknown; text: string; format: ConfigFormat; mediaType: string } {
1701
+ const spec = EXPORT_CLIENTS[client];
1702
+ const document = spec.build(ctx);
1703
+ return {
1704
+ document,
1705
+ text: serializeDocument(document, spec.format),
1706
+ format: spec.format,
1707
+ mediaType: FORMAT_MEDIA_TYPE[spec.format],
1708
+ };
1709
+ }
1710
+
1711
+ /** The fragments opencodex owns in a client's config (writer-side). */
1712
+ export function buildClientContribution(client: ExportClientId, ctx: ExportContext): ManagedContribution {
1713
+ return EXPORT_CLIENTS[client].buildContribution(ctx);
1714
+ }