@bitkyc08/opencodex 2.10.0 → 2.10.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (274) hide show
  1. package/AGENTS_INSTALL.md +77 -0
  2. package/README.md +4 -10
  3. package/bin/ocx.mjs +71 -18
  4. package/gui/dist/assets/index-Cd6_PBKn.css +1 -0
  5. package/gui/dist/assets/index-ChZQsmBY.js +70 -0
  6. package/gui/dist/index.html +2 -2
  7. package/gui/dist/provider-icons/alibaba-color.svg +1 -1
  8. package/gui/dist/provider-icons/antigravity-color.svg +1 -1
  9. package/gui/dist/provider-icons/claude-color.svg +1 -1
  10. package/gui/dist/provider-icons/cline-color.svg +16 -0
  11. package/gui/dist/provider-icons/cloudflare-ai-gateway-color.svg +1 -1
  12. package/gui/dist/provider-icons/copilot-color.svg +1 -1
  13. package/gui/dist/provider-icons/cursor-color.svg +1 -1
  14. package/gui/dist/provider-icons/deepseek-color.svg +1 -1
  15. package/gui/dist/provider-icons/firepass-color.svg +1 -1
  16. package/gui/dist/provider-icons/fireworks-color.svg +1 -1
  17. package/gui/dist/provider-icons/gemini-color.svg +1 -1
  18. package/gui/dist/provider-icons/github-copilot-color.svg +1 -1
  19. package/gui/dist/provider-icons/gitlab-duo-color.svg +1 -1
  20. package/gui/dist/provider-icons/grok.svg +1 -1
  21. package/gui/dist/provider-icons/groq-color.svg +1 -1
  22. package/gui/dist/provider-icons/huggingface-color.svg +1 -1
  23. package/gui/dist/provider-icons/kimi-color.svg +1 -1
  24. package/gui/dist/provider-icons/kiro-color.svg +2 -2
  25. package/gui/dist/provider-icons/lm-studio-color.svg +1 -1
  26. package/gui/dist/provider-icons/mistral-color.svg +1 -1
  27. package/gui/dist/provider-icons/moonshot-color.svg +1 -1
  28. package/gui/dist/provider-icons/nvidia-color.svg +1 -1
  29. package/gui/dist/provider-icons/ollama-color.svg +1 -1
  30. package/gui/dist/provider-icons/openai.svg +1 -1
  31. package/gui/dist/provider-icons/opencode.svg +2 -1
  32. package/gui/dist/provider-icons/openrouter-color.svg +1 -1
  33. package/gui/dist/provider-icons/pi.svg +2 -2
  34. package/gui/dist/provider-icons/qianfan-color.svg +1 -1
  35. package/gui/dist/provider-icons/qwen-portal-color.svg +1 -1
  36. package/gui/dist/provider-icons/vercel-ai-gateway-color.svg +1 -1
  37. package/gui/dist/provider-icons/vllm-color.svg +1 -1
  38. package/gui/dist/provider-icons/xiaomi-color.svg +1 -1
  39. package/package.json +8 -4
  40. package/src/adapters/anthropic.ts +208 -14
  41. package/src/adapters/base.ts +16 -5
  42. package/src/adapters/cursor/effort-map.ts +3 -2
  43. package/src/adapters/cursor/framing.ts +39 -0
  44. package/src/adapters/cursor/live-transport.ts +105 -95
  45. package/src/adapters/cursor/native-exec.ts +32 -6
  46. package/src/adapters/cursor/protobuf-request.ts +20 -15
  47. package/src/adapters/cursor/request-builder.ts +21 -7
  48. package/src/adapters/cursor/types.ts +7 -0
  49. package/src/adapters/google-antigravity-replay.ts +237 -21
  50. package/src/adapters/google-truncation.ts +11 -0
  51. package/src/adapters/google.ts +50 -9
  52. package/src/adapters/identity.ts +39 -6
  53. package/src/adapters/kiro-errors.ts +11 -0
  54. package/src/adapters/kiro-events.ts +19 -1
  55. package/src/adapters/kiro-thinking.ts +10 -2
  56. package/src/adapters/kiro-tools.ts +10 -1
  57. package/src/adapters/kiro.ts +37 -11
  58. package/src/adapters/openai-chat.ts +284 -83
  59. package/src/adapters/openai-responses.ts +182 -24
  60. package/src/bridge.ts +177 -7
  61. package/src/chat/outbound.ts +78 -23
  62. package/src/claude/agents-inject.ts +27 -5
  63. package/src/claude/inbound.ts +11 -1
  64. package/src/claude/model-info.ts +13 -10
  65. package/src/claude/outbound.ts +17 -0
  66. package/src/cli/account-api.ts +24 -0
  67. package/src/cli/account-auth.ts +31 -6
  68. package/src/cli/account-main.ts +317 -0
  69. package/src/cli/account.ts +5 -0
  70. package/src/cli/claude.ts +2 -1
  71. package/src/cli/doctor.ts +93 -22
  72. package/src/cli/export-command.ts +26 -12
  73. package/src/cli/help.ts +8 -6
  74. package/src/cli/index.ts +56 -22
  75. package/src/cli/integrations.ts +84 -1
  76. package/src/cli/observe.ts +54 -1
  77. package/src/cli/opencode.ts +2 -1
  78. package/src/cli/provider-runtime.ts +18 -1
  79. package/src/cli/route-policy.ts +92 -0
  80. package/src/cli/runtime-api.ts +6 -3
  81. package/src/cli/star-prompt.ts +71 -15
  82. package/src/cli/status.ts +1 -1
  83. package/src/cli/v2.ts +36 -9
  84. package/src/clients/config-export.ts +687 -10
  85. package/src/codex/account-lifecycle.ts +30 -5
  86. package/src/codex/account-usability.ts +22 -2
  87. package/src/codex/admission.ts +255 -0
  88. package/src/codex/auth-api.ts +427 -140
  89. package/src/codex/auth-context.ts +155 -30
  90. package/src/codex/autostart-health.ts +8 -1
  91. package/src/codex/catalog/account-models.ts +62 -0
  92. package/src/codex/catalog/aggregation.ts +14 -1
  93. package/src/codex/catalog/bundled.ts +282 -32
  94. package/src/codex/catalog/filesystem-evidence.ts +302 -0
  95. package/src/codex/catalog/metadata.ts +51 -6
  96. package/src/codex/catalog/parsing.ts +6 -3
  97. package/src/codex/catalog/provider-fetch.ts +576 -41
  98. package/src/codex/catalog/sync.ts +505 -66
  99. package/src/codex/catalog-admission.ts +197 -0
  100. package/src/codex/catalog-write-serialization.ts +241 -0
  101. package/src/codex/catalog.ts +2 -1
  102. package/src/codex/codex-write-lock.ts +372 -0
  103. package/src/codex/convergence-types.ts +593 -0
  104. package/src/codex/convergence.ts +441 -0
  105. package/src/codex/desired-state.ts +177 -0
  106. package/src/codex/features.ts +52 -8
  107. package/src/codex/generation.ts +202 -0
  108. package/src/codex/history-job.ts +257 -0
  109. package/src/codex/history-lock.ts +241 -0
  110. package/src/codex/history-migration-guardian.ts +18 -5
  111. package/src/codex/history-provider.ts +9 -2
  112. package/src/codex/history-transition.ts +105 -0
  113. package/src/codex/history-worker.ts +176 -0
  114. package/src/codex/inject-coordination.ts +245 -0
  115. package/src/codex/inject.ts +605 -124
  116. package/src/codex/integration-record.ts +266 -0
  117. package/src/codex/internal/catalog-writer.ts +203 -0
  118. package/src/codex/internal/history-writer.ts +80 -0
  119. package/src/codex/journal.ts +10 -1
  120. package/src/codex/main-account-cache.ts +24 -0
  121. package/src/codex/management-convergence.ts +114 -0
  122. package/src/codex/native-main-admission.ts +47 -0
  123. package/src/codex/native-main-auth-temp.ts +187 -0
  124. package/src/codex/native-main-claim.ts +167 -0
  125. package/src/codex/native-main-lock-file.ts +158 -0
  126. package/src/codex/native-main-owner.ts +315 -0
  127. package/src/codex/native-profile-api.ts +247 -0
  128. package/src/codex/native-profile-manager.ts +1512 -0
  129. package/src/codex/native-profile-processes.ts +121 -0
  130. package/src/codex/native-profile-recovery.ts +99 -0
  131. package/src/codex/native-profile-stage-store.ts +387 -0
  132. package/src/codex/native-profile-startup.ts +340 -0
  133. package/src/codex/native-profile-store.ts +855 -0
  134. package/src/codex/native-profile-types.ts +120 -0
  135. package/src/codex/native-residue.ts +557 -0
  136. package/src/codex/project-config-warnings.ts +18 -4
  137. package/src/codex/prompt-journal.ts +311 -0
  138. package/src/codex/prompt-layers.ts +967 -0
  139. package/src/codex/prompt-lock.ts +143 -0
  140. package/src/codex/quota-rejection.ts +224 -0
  141. package/src/codex/quota.ts +86 -3
  142. package/src/codex/routing.ts +299 -62
  143. package/src/codex/runtime.ts +159 -38
  144. package/src/codex/shim.ts +39 -13
  145. package/src/codex/subagent-model-fallback.ts +73 -12
  146. package/src/codex/transition-state.ts +604 -0
  147. package/src/codex/upstream-host-health.ts +70 -0
  148. package/src/codex/user-identity.ts +266 -0
  149. package/src/codex/write-coordination.ts +114 -0
  150. package/src/config.ts +562 -26
  151. package/src/generated/jawcode-model-metadata.ts +2 -2
  152. package/src/grok/inject.ts +15 -4
  153. package/src/grok/inspect.ts +45 -0
  154. package/src/images/loop.ts +113 -20
  155. package/src/integrations/config-io.ts +151 -0
  156. package/src/integrations/journal.ts +315 -0
  157. package/src/integrations/merge.ts +135 -0
  158. package/src/integrations/native/ownership-preflight.ts +165 -0
  159. package/src/integrations/ownership.ts +111 -0
  160. package/src/integrations/registry.ts +101 -0
  161. package/src/integrations/serialize.ts +235 -0
  162. package/src/integrations/state.ts +290 -0
  163. package/src/integrations/store.ts +103 -0
  164. package/src/integrations/writer.ts +492 -0
  165. package/src/lib/bounded-body.ts +46 -8
  166. package/src/lib/bun-runtime.ts +110 -1
  167. package/src/lib/bun-stream-caps.ts +2 -1
  168. package/src/lib/redact.ts +407 -2
  169. package/src/lib/shadow-call.ts +24 -0
  170. package/src/lib/translator-budget.ts +10 -0
  171. package/src/lib/upstream-reachability.ts +91 -0
  172. package/src/lib/upstream-retry.ts +154 -2
  173. package/src/lib/windows-secret-acl.ts +212 -11
  174. package/src/lib/winsw.ts +9 -3
  175. package/src/oauth/index.ts +61 -3
  176. package/src/oauth/key-providers.ts +4 -0
  177. package/src/oauth/kiro.ts +50 -6
  178. package/src/oauth/store.ts +31 -6
  179. package/src/oauth/token-guardian.ts +9 -3
  180. package/src/providers/codex-capacity.ts +288 -0
  181. package/src/providers/derive.ts +33 -1
  182. package/src/providers/free-directory.ts +3 -1
  183. package/src/providers/key-failover.ts +71 -3
  184. package/src/providers/openai-sidecar.ts +64 -4
  185. package/src/providers/openai-virtual-models.ts +1 -0
  186. package/src/providers/quota.ts +334 -26
  187. package/src/providers/registry.ts +284 -16
  188. package/src/providers/xai-transport.ts +11 -4
  189. package/src/responses/compaction.ts +8 -1
  190. package/src/responses/hosted-tool-policy.ts +9 -0
  191. package/src/responses/parser.ts +44 -2
  192. package/src/responses/reasoning-envelope.ts +9 -1
  193. package/src/responses/reasoning-replay-cache.ts +105 -0
  194. package/src/responses/spill-store.ts +45 -8
  195. package/src/responses/state.ts +161 -17
  196. package/src/router.ts +302 -16
  197. package/src/routing/analytics.ts +377 -0
  198. package/src/routing/capability.ts +204 -0
  199. package/src/routing/cost.ts +77 -0
  200. package/src/routing/evaluator.ts +444 -0
  201. package/src/routing/health.ts +401 -0
  202. package/src/routing/history/cursor.ts +43 -0
  203. package/src/routing/history/indexer.ts +590 -0
  204. package/src/routing/history/schema.ts +72 -0
  205. package/src/routing/profile.ts +423 -0
  206. package/src/routing/quota.ts +124 -0
  207. package/src/routing/request-evidence.ts +45 -0
  208. package/src/routing/trace.ts +686 -0
  209. package/src/server/auth-cors.ts +46 -6
  210. package/src/server/chat-completions.ts +28 -13
  211. package/src/server/claude-messages.ts +23 -15
  212. package/src/server/gui-static.ts +39 -10
  213. package/src/server/images.ts +10 -1
  214. package/src/server/index.ts +238 -52
  215. package/src/server/lifecycle.ts +228 -9
  216. package/src/server/live.ts +14 -3
  217. package/src/server/management/agent-settings-routes.ts +64 -14
  218. package/src/server/management/combo-routes.ts +5 -5
  219. package/src/server/management/config-routes.ts +1 -1
  220. package/src/server/management/context.ts +42 -2
  221. package/src/server/management/integration-routes.ts +538 -0
  222. package/src/server/management/logs-usage-routes.ts +1 -1
  223. package/src/server/management/model-routes.ts +32 -113
  224. package/src/server/management/model-rows.ts +117 -0
  225. package/src/server/management/native-integration-routes.ts +587 -0
  226. package/src/server/management/oauth-account-routes.ts +1 -1
  227. package/src/server/management/provider-routes.ts +218 -117
  228. package/src/server/management/request-history-routes.ts +191 -0
  229. package/src/server/management/routing-analytics-routes.ts +74 -0
  230. package/src/server/management/routing-profile-routes.ts +177 -0
  231. package/src/server/management/shared.ts +2 -2
  232. package/src/server/management/sidebar-routes.ts +47 -31
  233. package/src/server/management/sync-response.ts +69 -0
  234. package/src/server/management/system-restart.ts +276 -24
  235. package/src/server/management/system-routes.ts +4 -0
  236. package/src/server/management-api.ts +84 -9
  237. package/src/server/management-auth.ts +43 -5
  238. package/src/server/relay-eager.ts +82 -42
  239. package/src/server/relay.ts +120 -6
  240. package/src/server/request-log.ts +26 -6
  241. package/src/server/responses/collaboration.ts +63 -8
  242. package/src/server/responses/compact.ts +272 -41
  243. package/src/server/responses/core.ts +730 -132
  244. package/src/server/responses/fetch-helpers.ts +15 -1
  245. package/src/server/responses-item-id-repair.ts +32 -3
  246. package/src/server/responses-json-events.ts +52 -0
  247. package/src/server/responses-snapshot-repair.ts +621 -0
  248. package/src/server/search.ts +51 -6
  249. package/src/server/sse-payload-rewrite.ts +89 -12
  250. package/src/server/startup-health-cache.ts +7 -1
  251. package/src/server/ws-bridge.ts +11 -17
  252. package/src/service-manager-probe.ts +297 -0
  253. package/src/service.ts +222 -32
  254. package/src/tray/windows-tray.ps1 +9 -0
  255. package/src/tray/windows.ts +15 -7
  256. package/src/types.ts +194 -14
  257. package/src/update/index.ts +13 -13
  258. package/src/update/job.ts +24 -21
  259. package/src/update/notify.ts +7 -3
  260. package/src/usage/cost.ts +0 -0
  261. package/src/usage/expected-prices.ts +129 -10
  262. package/src/usage/log.ts +50 -15
  263. package/src/usage/summary.ts +4 -4
  264. package/src/vision/index.ts +6 -1
  265. package/src/web-search/loop.ts +161 -34
  266. package/gui/dist/assets/index-OY43ubAq.css +0 -1
  267. package/gui/dist/assets/index-YwNnKZcL.js +0 -67
  268. package/gui/dist/provider-icons/antigravity.svg +0 -1
  269. package/gui/dist/provider-icons/claude.svg +0 -1
  270. package/gui/dist/provider-icons/copilot.svg +0 -1
  271. package/gui/dist/provider-icons/cursor.svg +0 -2
  272. package/gui/dist/provider-icons/gemini.svg +0 -1
  273. package/gui/dist/provider-icons/grok-color.svg +0 -1
  274. package/gui/dist/provider-icons/kiro.svg +0 -14
@@ -0,0 +1,74 @@
1
+ /**
2
+ * Routing analytics API (RI-03): `GET /api/routing-analytics`.
3
+ *
4
+ * Returns source-backed reliability/latency/cost metrics over the
5
+ * request-history index. Read-only; never changes routing behavior.
6
+ */
7
+
8
+ import {
9
+ ANALYTICS_API_DEFAULT_ROWS,
10
+ ANALYTICS_MAX_ROWS,
11
+ computeRoutingAnalytics,
12
+ } from "../../routing/analytics";
13
+ import { jsonResponse } from "../auth-cors";
14
+ import type { ManagementContext } from "./context";
15
+
16
+ function parseQueryInt(raw: string | null): number | undefined | "invalid" {
17
+ if (raw === null) return undefined;
18
+ const trimmed = raw.trim();
19
+ if (trimmed.length === 0) return "invalid";
20
+ const value = Number(trimmed);
21
+ return Number.isInteger(value) ? value : "invalid";
22
+ }
23
+
24
+ export async function handleRoutingAnalyticsRoutes(ctx: ManagementContext): Promise<Response | null> {
25
+ const { url, req, config } = ctx;
26
+ if (url.pathname !== "/api/routing-analytics" || req.method !== "GET") return null;
27
+
28
+ const fromParsed = parseQueryInt(url.searchParams.get("from"));
29
+ if (fromParsed === "invalid") {
30
+ return jsonResponse({ error: { code: "invalid_from", message: "from must be an integer timestamp" } }, 400, req, config);
31
+ }
32
+ const toParsed = parseQueryInt(url.searchParams.get("to"));
33
+ if (toParsed === "invalid") {
34
+ return jsonResponse({ error: { code: "invalid_to", message: "to must be an integer timestamp" } }, 400, req, config);
35
+ }
36
+ const from = fromParsed;
37
+ const to = toParsed;
38
+ if (from !== undefined && to !== undefined && from > to) {
39
+ return jsonResponse({ error: { code: "invalid_range", message: "from must not be after to" } }, 400, req, config);
40
+ }
41
+ const limitParsed = parseQueryInt(url.searchParams.get("limit"));
42
+ if (limitParsed === "invalid") {
43
+ return jsonResponse(
44
+ { error: { code: "invalid_limit", message: "limit must be an integer" } },
45
+ 400,
46
+ req,
47
+ config,
48
+ );
49
+ }
50
+ const maxRows = limitParsed ?? ANALYTICS_API_DEFAULT_ROWS;
51
+ if (maxRows < 1 || maxRows > ANALYTICS_MAX_ROWS) {
52
+ return jsonResponse(
53
+ {
54
+ error: {
55
+ code: "invalid_limit",
56
+ message: `limit must be between 1 and ${ANALYTICS_MAX_ROWS}`,
57
+ },
58
+ },
59
+ 400,
60
+ req,
61
+ config,
62
+ );
63
+ }
64
+
65
+ const result = await computeRoutingAnalytics({
66
+ provider: url.searchParams.get("provider")?.trim() || undefined,
67
+ model: url.searchParams.get("model")?.trim() || undefined,
68
+ profileId: url.searchParams.get("profileId")?.trim() || undefined,
69
+ surface: url.searchParams.get("surface")?.trim() || undefined,
70
+ from,
71
+ to,
72
+ }, { maxRows });
73
+ return jsonResponse(result, 200, req, config);
74
+ }
@@ -0,0 +1,177 @@
1
+ /**
2
+ * Routing-profile management API (RI-04).
3
+ *
4
+ * - `GET /api/routing-profiles` - normalized profiles with revisions
5
+ * - `POST /api/routing-profiles/dry-run` - deterministic dry-run evaluation
6
+ * (never dispatches an upstream request)
7
+ */
8
+
9
+ import { listRoutingProfileIds, getRoutingProfile, policyPublicModelId } from "../../routing/profile";
10
+ import { evaluatePolicyProfile, type PolicyCandidateEvidence, type PolicyRequestEvidence } from "../../routing/evaluator";
11
+ import { candidateCapabilityEvidence } from "../../routing/capability";
12
+ import { policyCandidateHealthEvidence } from "../../routing/health";
13
+ import { quotaEvidenceForCandidate } from "../../routing/quota";
14
+ import { costEvidenceForCandidate } from "../../routing/cost";
15
+ import { providerCodexAccountMode } from "../../providers/registry";
16
+ import { getEffectiveActiveCodexAccountId } from "../../codex/routing";
17
+ import { getAccountSet } from "../../oauth/store";
18
+ import { OPENAI_CODEX_PROVIDER_ID } from "../../providers/openai-tiers";
19
+ import { isPlainRecord } from "./shared";
20
+ import { readManagementJsonBody, rethrowManagementBodyTooLarge } from "./body";
21
+ import { jsonResponse } from "../auth-cors";
22
+ import type { ManagementContext } from "./context";
23
+ import type { OcxConfig } from "../../types";
24
+
25
+ function profileDto(config: Parameters<typeof getRoutingProfile>[0], id: string): Record<string, unknown> | null {
26
+ const profile = getRoutingProfile(config, id);
27
+ if (!profile) return null;
28
+ return {
29
+ id,
30
+ model: policyPublicModelId(id, profile),
31
+ revision: profile.revision,
32
+ candidates: profile.candidates,
33
+ require: profile.require,
34
+ optimize: profile.optimize,
35
+ limits: profile.limits,
36
+ unknownEvidence: profile.unknownEvidence,
37
+ };
38
+ }
39
+
40
+ function parseEvidence(raw: unknown): { evidence: PolicyRequestEvidence; ok: boolean } {
41
+ // Absent evidence is empty evidence, mirroring the absent-candidates case.
42
+ if (raw === undefined) return { evidence: {}, ok: true };
43
+ if (!isPlainRecord(raw)) return { evidence: {}, ok: false };
44
+ const record = raw as Record<string, unknown>;
45
+ const evidence: PolicyRequestEvidence = {};
46
+ if (typeof record.contextWindow === "number" && Number.isFinite(record.contextWindow) && record.contextWindow >= 0) {
47
+ evidence.contextWindow = record.contextWindow;
48
+ }
49
+ for (const key of ["toolsRequired", "imageInputRequired", "structuredOutputRequired", "encryptedCodexTask"] as const) {
50
+ if (typeof record[key] === "boolean") evidence[key] = record[key];
51
+ }
52
+ if (typeof record.reasoningEffort === "string") evidence.reasoningEffort = record.reasoningEffort;
53
+ if (typeof record.serviceTier === "string") evidence.serviceTier = record.serviceTier;
54
+ return { evidence, ok: true };
55
+ }
56
+
57
+ function parseCandidateEvidence(raw: unknown): PolicyCandidateEvidence[] | null {
58
+ if (!Array.isArray(raw)) return null;
59
+ const out: PolicyCandidateEvidence[] = [];
60
+ for (const item of raw) {
61
+ if (!isPlainRecord(item)) return null;
62
+ const provider = item.provider;
63
+ const model = item.model;
64
+ if (typeof provider !== "string" || typeof model !== "string") return null;
65
+ out.push({
66
+ provider,
67
+ model,
68
+ ...(typeof item.accountRef === "string" ? { accountRef: item.accountRef } : {}),
69
+ ...(typeof item.codexAccountId === "string" ? { codexAccountId: item.codexAccountId } : {}),
70
+ // Dry-run evidence is caller-supplied and echoed back in the result as
71
+ // given; the trace's candidate rows carry only score/exclusions, which
72
+ // the trace builder bounds. Structural casts keep the API permissive.
73
+ ...(isPlainRecord(item.capability) ? { capability: item.capability as unknown as PolicyCandidateEvidence["capability"] } : {}),
74
+ ...(isPlainRecord(item.health) ? { health: item.health as unknown as PolicyCandidateEvidence["health"] } : {}),
75
+ ...(isPlainRecord(item.quota) ? { quota: item.quota as unknown as PolicyCandidateEvidence["quota"] } : {}),
76
+ ...(isPlainRecord(item.cost) ? { cost: item.cost as unknown as PolicyCandidateEvidence["cost"] } : {}),
77
+ // Derive account-scoped quota evidence from the documented refs when the
78
+ // caller does not supply an explicit quota object, so a dry-run following
79
+ // the documented shape reports the same cached account quota as routing.
80
+ ...(item.quota === undefined && typeof item.codexAccountId === "string"
81
+ ? { quota: quotaEvidenceForCandidate({ provider, model, codexAccountId: item.codexAccountId }) }
82
+ : {}),
83
+ ...(item.quota === undefined && typeof item.accountRef === "string" && typeof item.codexAccountId !== "string"
84
+ ? { quota: quotaEvidenceForCandidate({ provider, model, accountRef: item.accountRef }) }
85
+ : {}),
86
+ });
87
+ }
88
+ return out;
89
+ }
90
+
91
+ function assembleCandidateEvidence(
92
+ config: OcxConfig,
93
+ profile: NonNullable<ReturnType<typeof getRoutingProfile>>,
94
+ ): PolicyCandidateEvidence[] {
95
+ // Match execution: fill the same candidate evidence the router would
96
+ // assemble, so dry-run/evaluate reports the same eligibility as real routing
97
+ // instead of treating every capability as unknown. Cost is always present so
98
+ // evaluate mode can surface the profile limit even without a usage estimate.
99
+ return profile.candidates.map(candidate => ({
100
+ provider: candidate.provider,
101
+ model: candidate.model,
102
+ capability: candidateCapabilityEvidence(config, candidate.provider, candidate.model),
103
+ health: policyCandidateHealthEvidence(config, candidate),
104
+ quota: quotaEvidenceForCandidate({
105
+ provider: candidate.provider,
106
+ model: candidate.model,
107
+ ...(candidate.provider === OPENAI_CODEX_PROVIDER_ID
108
+ && providerCodexAccountMode(
109
+ OPENAI_CODEX_PROVIDER_ID,
110
+ config.providers[OPENAI_CODEX_PROVIDER_ID],
111
+ ) === "pool"
112
+ ? (() => {
113
+ const codexAccountId = getEffectiveActiveCodexAccountId(config);
114
+ return {
115
+ codexAccountId,
116
+ codexAccountPlan: codexAccountId
117
+ ? config.codexAccounts?.find(account => account.id === codexAccountId)?.plan
118
+ : undefined,
119
+ };
120
+ })()
121
+ : {}),
122
+ accountRef: candidate.provider === "anthropic"
123
+ ? getAccountSet("anthropic")?.activeAccountId
124
+ : undefined,
125
+ }),
126
+ cost: costEvidenceForCandidate({
127
+ provider: candidate.provider,
128
+ model: candidate.model,
129
+ limitUsd: profile.limits.maxEstimatedCostUsd,
130
+ }),
131
+ }));
132
+ }
133
+
134
+ export async function handleRoutingProfileRoutes(ctx: ManagementContext): Promise<Response | null> {
135
+ const { req, url, config } = ctx;
136
+
137
+ if (url.pathname === "/api/routing-profiles" && req.method === "GET") {
138
+ const profiles = listRoutingProfileIds(config).map(id => profileDto(config, id)).filter(
139
+ (profile): profile is Record<string, unknown> => profile !== null,
140
+ );
141
+ return jsonResponse({ profiles }, 200, req, config);
142
+ }
143
+
144
+ if (url.pathname === "/api/routing-profiles/dry-run" && req.method === "POST") {
145
+ let rawBody: unknown;
146
+ try { rawBody = await readManagementJsonBody(req); } catch (error) {
147
+ rethrowManagementBodyTooLarge(error);
148
+ return jsonResponse({ error: "invalid JSON body" }, 400, req, config);
149
+ }
150
+ if (!isPlainRecord(rawBody)) {
151
+ return jsonResponse({ error: "request body must be an object" }, 400, req, config);
152
+ }
153
+ const body = rawBody as Record<string, unknown>;
154
+ const profile = typeof body.profile === "string" ? body.profile.trim() : "";
155
+ if (!profile) {
156
+ return jsonResponse({ error: { code: "missing_profile", message: "profile is required" } }, 400, req, config);
157
+ }
158
+ const resolvedProfile = getRoutingProfile(config, profile);
159
+ if (!resolvedProfile) {
160
+ return jsonResponse({ error: { code: "unknown_profile", message: `unknown routing profile: ${profile}` } }, 404, req, config);
161
+ }
162
+ const { evidence, ok } = parseEvidence(body.evidence);
163
+ if (!ok) {
164
+ return jsonResponse({ error: { code: "invalid_evidence", message: "evidence must be an object" } }, 400, req, config);
165
+ }
166
+ const candidateEvidence = body.candidates === undefined
167
+ ? assembleCandidateEvidence(config, resolvedProfile)
168
+ : parseCandidateEvidence(body.candidates);
169
+ if (candidateEvidence === null) {
170
+ return jsonResponse({ error: { code: "invalid_candidates", message: "candidates must be an array of evidence objects" } }, 400, req, config);
171
+ }
172
+ const result = evaluatePolicyProfile(config, profile, evidence, candidateEvidence);
173
+ return jsonResponse(result, 200, req, config);
174
+ }
175
+
176
+ return null;
177
+ }
@@ -51,7 +51,7 @@ import type { OcxClaudeCodeConfig, OcxClaudeDesktopProfile, OcxConfig, OcxCustom
51
51
  import type { DesktopProfileModel } from "../../claude/desktop-profile";
52
52
  import { drainAndShutdown } from "../lifecycle";
53
53
  import { filterRequestLogs, getRequestLogEntries, type RequestLogEntry } from "../request-log";
54
- import { estimateComboCost, estimateRequestCost, effectiveServiceTier, normalizeCostTokens, tokensPerSecond } from "../../usage/cost";
54
+ import { estimateComboCost, estimateRequestCost, serviceTierContext, normalizeCostTokens, tokensPerSecond } from "../../usage/cost";
55
55
  import type { PersistedUsageAttempt } from "../../usage/log";
56
56
  import { isAllowedRequestOrigin, jsonResponse, providerManagementConfigError, publicProviderBaseUrl, safeConfigDTO } from "../auth-cors";
57
57
  import { applySystemEnvToggle } from "../system-env";
@@ -124,7 +124,7 @@ export function unavailableCostReason(entry: MetricSource): MetricUnavailableRea
124
124
  }
125
125
 
126
126
  export function costResult(entry: MetricSource): CostResult {
127
- const tier = effectiveServiceTier(entry);
127
+ const tier = serviceTierContext(entry);
128
128
  const estimate = entry.attempts?.length
129
129
  ? estimateComboCost(entry.attempts, undefined, tier)
130
130
  : estimateRequestCost({ provider: entry.provider, model: entry.model, usage: entry.usage, usageStatus: entry.usageStatus, serviceTier: tier });
@@ -9,40 +9,54 @@
9
9
  * this surface only learns the yes/no answer. `gh` writes the authenticated account
10
10
  * name to stderr, so that output is discarded at the source rather than forwarded.
11
11
  *
12
- * The star POST additionally refuses agent-driven programmatic callers. Management
13
- * auth proves the caller reached the admin token, not that a person chose to star:
14
- * a coding agent runs on the user's machine and can read that token from disk, so
15
- * the CLI's "ask the user" deferral would be bypassable with one `curl` here.
12
+ * The star POST additionally requires a dashboard session. Management auth proves
13
+ * the caller reached the admin token, not that a person chose to star: a coding
14
+ * agent runs on the user's machine and can read that token from disk, so the CLI's
15
+ * "ask the user" deferral would be bypassable with one `curl` here.
16
16
  *
17
- * The dashboard button must keep working even when the proxy itself was started by
18
- * an agent, which is the common case the person is at the browser, not at the
19
- * spawning shell. A GUI click is therefore distinguished by its browser session
20
- * evidence (a same-origin `Origin` plus the minted CSRF header, both already
21
- * verified by the management auth gate) rather than by the proxy's own env.
17
+ * The requirement is unconditional, and that is the point. It used to apply only
18
+ * when `isAgentDriven()` was truebut that function reads the SERVER's
19
+ * environment, not the caller's, so a proxy already running as a service (no agent
20
+ * markers, the normal remote setup) accepted a raw-token star from anyone who could
21
+ * read the token, which includes every agent on the machine. The provenance of the
22
+ * HTTP caller is not knowable from the server's env; only the credential is. So the
23
+ * mutation asks for a GUI session this process minted for a browser, which the auth
24
+ * gate accepts only after matching origin and the per-session CSRF token.
22
25
  */
23
26
  import { jsonResponse } from "../auth-cors";
24
- import { agentDrivenMarkers, isAgentDriven } from "../../cli/agent-driven";
27
+ import { agentDrivenMarkers } from "../../cli/agent-driven";
25
28
  import type { ManagementContext } from "./context";
26
29
 
27
30
  /**
28
- * True when this request carries the browser-session evidence a dashboard click
29
- * always has: an `Origin` (only a browser sends one) plus the per-session CSRF
30
- * token, which `requireManagementAuth` has already matched against the minted
31
- * session before dispatch. A shell/HTTP caller holding only the admin token has
32
- * neither, which is exactly the case the agent guard is aimed at.
31
+ * True only when a minted GUI session authorized this request.
32
+ *
33
+ * The previous version of this check looked for an `Origin` plus the CSRF headers
34
+ * and reasoned that the auth gate had already validated them. It had not: the gate
35
+ * accepts a raw admin token BEFORE it ever consults the session table, so a caller
36
+ * holding that token (any process running as the user, a coding agent included)
37
+ * could add three nonempty headers of its choosing and satisfy this check without
38
+ * a browser ever being involved. The credential itself is the only part of the
39
+ * request an agent cannot fabricate, so that is what this now reads.
33
40
  */
34
- function hasBrowserSessionEvidence(req: Request): boolean {
35
- return !!req.headers.get("Origin")?.trim()
36
- && !!req.headers.get("x-opencodex-csrf-token")?.trim()
37
- && !!req.headers.get("x-opencodex-gui-origin")?.trim();
41
+ function hasBrowserSessionEvidence(ctx: ManagementContext): boolean {
42
+ return ctx.principal === "gui-session";
38
43
  }
39
44
 
40
- // Known edge, deliberately fail-closed: a non-loopback operator dashboard signs in
41
- // with the raw admin token instead of a minted GUI session, so its clicks carry no
42
- // CSRF header. If that proxy was *also* started from an agent shell, the button is
43
- // refused and the response names the one-line `gh` command to run by hand. A
44
- // service-run proxy (`OCX_SERVICE`, the usual remote setup) is not agent-driven and
45
- // is unaffected.
45
+ // Known edge, deliberately fail-closed: a non-loopback operator dashboard that signs
46
+ // in with the raw admin token instead of a minted GUI session gets its click refused,
47
+ // and the response names the one-line `gh` command to run by hand. That is the
48
+ // correct trade an endpoint reachable with a readable token cannot establish that
49
+ // a human chose to spend their own GitHub identity.
50
+ //
51
+ // The honest limit of this guard: a local process running AS THE USER can mint its
52
+ // own GUI session (the dashboard bootstrap is served to any loopback GET) and can
53
+ // equally just run `gh api -X PUT /user/starred/...` itself, which needs no proxy at
54
+ // all. No check inside this process can distinguish that caller from the browser,
55
+ // because both hold every local credential. So this endpoint is not a technical
56
+ // barrier against a determined local agent — it removes the CASUAL path (an agent
57
+ // that would have POSTed here because the endpoint existed) and makes the refusal
58
+ // legible. The actual boundary is normative and lives in AGENTS.md: an agent must
59
+ // not spend the user's identity, whichever mechanism is at hand.
46
60
 
47
61
  export async function handleSidebarRoutes(ctx: ManagementContext): Promise<Response | null> {
48
62
  const { req, url } = ctx;
@@ -55,10 +69,11 @@ export async function handleSidebarRoutes(ctx: ManagementContext): Promise<Respo
55
69
  if (url.pathname === "/api/github/star" && req.method === "POST") {
56
70
  const { STAR_REPO, STAR_REPO_URL, starRepository } = await import("../../github/star-state");
57
71
  // Starring uses the user's GitHub identity, so consent must come from the
58
- // account owner. An agent-driven caller without browser-session evidence
59
- // cannot have obtained it, and must relay the question instead of answering
60
- // it with an HTTP call.
61
- if (isAgentDriven() && !hasBrowserSessionEvidence(req)) {
72
+ // account owner. Only a minted dashboard session evidences that; a caller
73
+ // holding the admin token must relay the question instead of answering it
74
+ // with an HTTP call.
75
+ if (!hasBrowserSessionEvidence(ctx)) {
76
+ const markers = agentDrivenMarkers().slice(0, 3);
62
77
  return jsonResponse({
63
78
  ok: false,
64
79
  state: "not-starred",
@@ -66,8 +81,9 @@ export async function handleSidebarRoutes(ctx: ManagementContext): Promise<Respo
66
81
  url: STAR_REPO_URL,
67
82
  code: "agent_consent_required",
68
83
  message:
69
- `Refused: agent session detected (${agentDrivenMarkers().slice(0, 3).join(", ")}) and this request `
70
- + `carries no dashboard session. Starring writes to the user's own GitHub account, so ask the user `
84
+ `Refused: this request carries no dashboard session`
85
+ + `${markers.length ? ` (agent session detected: ${markers.join(", ")})` : ""}. `
86
+ + `Starring writes to the user's own GitHub account, so ask the user `
71
87
  + `directly as a required Yes/No choice — not a soft aside, and no answer is not a No, so re-ask `
72
88
  + `it unchanged while it is open — and only if they say yes run: `
73
89
  + `gh api -X PUT /user/starred/${STAR_REPO}`,
@@ -0,0 +1,69 @@
1
+ /**
2
+ * The single HTTP projection of ConvergeOutcome.
3
+ *
4
+ * Three phase documents once mapped /api/sync independently and one silently
5
+ * dropped Retry-After. Keeping the exhaustive switch here makes a new domain
6
+ * outcome a compile error until its management contract is chosen explicitly.
7
+ */
8
+ import type { ConvergeOutcome } from "../../codex/convergence-types";
9
+ import { jsonResponse } from "../auth-cors";
10
+
11
+ export function toSyncResponse(outcome: ConvergeOutcome): Response {
12
+ switch (outcome.kind) {
13
+ case "catalog-only":
14
+ return jsonResponse({
15
+ ok: true,
16
+ changed: outcome.changed,
17
+ observed: outcome.observed,
18
+ catalogRefresh: outcome.catalogRefresh,
19
+ history: outcome.history,
20
+ });
21
+ case "converged":
22
+ return jsonResponse({
23
+ ok: true,
24
+ changed: outcome.changed,
25
+ observed: outcome.observed,
26
+ catalogRefresh: outcome.catalogRefresh,
27
+ history: outcome.history,
28
+ });
29
+ case "skipped":
30
+ return jsonResponse({
31
+ ok: true,
32
+ changed: false,
33
+ observed: outcome.observed,
34
+ catalogRefresh: outcome.catalogRefresh,
35
+ history: outcome.history,
36
+ });
37
+ case "refused":
38
+ return jsonResponse({
39
+ ok: false,
40
+ authority: outcome.authority,
41
+ message: outcome.message,
42
+ observed: outcome.observed,
43
+ }, 409);
44
+ case "busy": {
45
+ const response = jsonResponse({
46
+ ok: false,
47
+ surface: outcome.surface,
48
+ retryAfterMs: outcome.retryAfterMs,
49
+ }, 503);
50
+ response.headers.set("Retry-After", String(Math.ceil(outcome.retryAfterMs / 1_000)));
51
+ return response;
52
+ }
53
+ case "deferred":
54
+ return jsonResponse({
55
+ ok: true,
56
+ changed: outcome.changed,
57
+ unresolved: outcome.unresolved,
58
+ observed: outcome.observed,
59
+ catalogRefresh: outcome.catalogRefresh,
60
+ history: outcome.history,
61
+ });
62
+ case "failed":
63
+ return jsonResponse({ error: outcome.message, surface: outcome.surface }, 500);
64
+ default: {
65
+ const exhaustive: never = outcome;
66
+ return exhaustive;
67
+ }
68
+ }
69
+ }