mirror of
https://github.com/diegosouzapw/OmniRoute.git
synced 2026-07-26 09:52:11 +03:00
* fix(install): add pnpm-workspace.yaml allowBuilds + pnpm.json for pnpm 11+ pnpm 11 introduced ERR_PNPM_IGNORED_BUILDS for native addon packages. Without explicit allowBuilds approval, these packages silently skip build scripts and OmniRoute fails to start with missing native modules. Changes: - pnpm-workspace.yaml: Set allowBuilds=true for all 13 native addon packages (@parcel/watcher, @swc/core, better-sqlite3, core-js, esbuild, keytar, koffi, libxmljs2, onnxruntime-node, protobufjs, sharp, tls-client-node, unrs-resolver) - pnpm.json: Migrate onlyBuiltDependencies from package.json (deprecated field) to the new pnpm.json config file per pnpm 11 spec. Tested on: pnpm 11.9.0, Node 24, Windows 11. Fixes: pnpm install ERR_PNPM_IGNORED_BUILDS on fresh clone with pnpm 11. * chore(release): open v3.8.44 development cycle * test(security): parse Kimi Web URL host instead of substring match (CodeQL #689) (#5928) Alert js/incomplete-url-substring-sanitization: the Kimi Web executor test asserted result.url.includes("www.kimi.com"), which a hostile host like www.kimi.com.evil.net would also satisfy. Parse the URL and assert on the exact hostname (new URL(result.url).hostname === "www.kimi.com"), which is both a stronger check and clears the CodeQL warning. * refactor(translator): extract thinking-budget fitting from openai-to-claude (#5932) Extract the thinking-budget fitting cluster (fitThinkingToMaxTokens + private safeCapMaxOutputTokens + MIN_* constants) verbatim into the pure leaf openai-to-claude/thinkingBudget.ts. Host re-exports fitThinkingToMaxTokens so external importers keep working and imports it back for internal use. Host 822 -> 738 LOC (under the 800 cap). No behavior change: byte-identical bodies, public export set unchanged. Adds a split-guard test; all consumer tests stay green (translator-openai-to-claude, strip-empty, minimax-m3, passthrough). * chore(release): pipeline hardening — test-masking pre-flight gate + contributors/uncovered helpers (#5926) * chore(ci): add test-masking PR-context gate to release-green pre-flight Reproduce check:test-masking (vs origin/main) inside validate-release-green so non-allowlisted net-assert reductions surface in the local pre-flight instead of in a ~40-min CI layer on the release PR. run() now merges a per-gate opts.env so GITHUB_BASE_REF reaches the child. HARD gate; skipped under --quick. Context: v3.8.43 release cost 3 CI round-trips for PR-context gates (test-masking, file-size, pr-evidence) that check:release-green did not reproduce locally. * chore(release): add contributors generator + uncovered-commit reconciliation helpers - scripts/release/gen-contributors.mjs: reproducible `### 🙌 Contributors` table for a CHANGELOG version (parenthetical-group parser → accurate per-PR attribution, noise-handle denylist). v3.8.43 shipped without the section (a real miss) because it was hand-built. npm run release:contributors <version> [--inject]. - scripts/release/list-uncovered-commits.mjs: lists commits since the last tag with no CHANGELOG bullet (v3.8.43 had 123/176 uncovered at reconciliation start). Advisory, maintainer-side. npm run release:uncovered. - 20 unit tests (parenthetical attribution, noise exclusion, idempotent injection, coverage window). * chore(quality): absorb web-cookie-providers-new file-size drift from #5928 (base-red on release/v3.8.44) * refactor(translator): split openai-responses request translator into pure leaves (#5940) Extract the shared pure primitives and the chat->Responses direction out of the 894-line openai-responses.ts request translator: - openai-responses/helpers.ts: pure primitives (toRecord/toString/clampCallId/ normalizeVerbosity/etc + markers/regexes/JsonRecord), zero host imports - openai-responses/toResponses.ts: openaiToOpenAIResponsesRequest (chat->Responses), imports the helpers leaf Host keeps openaiResponsesToOpenAIRequest (Responses->chat, imported by production) plus both register() directions, and re-exports openaiToOpenAIResponsesRequest so external importers (tests) keep working. Host 894 -> 529 LOC (under the 800 cap). Verbatim bodies (multiset check: leaf A 54/54, leaf B 294 lines, fn1 intact), public export set unchanged, leaves never import the host (no cycle). Adds a split-guard test; all consumer tests stay green (responses-translation-fixes 37, verbosity 4, reasoning-effort 4, orphaned-tool-filter 8, empty-tool-name-loop 8, headroom-responses-format 3). * chore(ci): pr-evidence FAIL output tells you to push (body edit does not re-run the gate) (#5944) ci.yml ignores the 'edited' event, so adding the Evidence block to the PR body after a push does not re-run check:pr-evidence — you need another commit. The FAIL report now says so, at the exact place someone sees the red check. + 5 unit tests (classification + hint-on-fail / no-hint-on-pass). Decided against a separate edited-triggered workflow: pr-evidence is not a required check (no ruleset gates it; release PRs merge UNSTABLE, not BLOCKED), so the gap is cosmetic and the generate-release skill already puts Evidence in the body before the first push. * fix(providers): Perplexity Web emits real tool_calls in streaming mode (mirror chatgpt-web toolMode) (#5927) (#5937) Perplexity Web (Pro/Max) only converted <tool>{...}</tool> text into OpenAI tool_calls for non-streaming requests (hasTools && !stream). Streaming requests -- the default for agentic coding clients -- got the raw <tool> text as plain delta.content and never emitted a tool_calls SSE delta, so clients could not execute tools. Reuses the provider-agnostic buildToolModeResponse()/ toolCompletionToSseStream() helpers already shipped for chatgpt-web (#5240): when tools are requested, buffer the full completion and convert it into either a JSON completion or a terminal SSE replay carrying delta.tool_calls + finish_reason: tool_calls, regardless of the caller's stream flag. Extended buildToolModeResponse()'s idSeed to be caller-supplied (default 'cgpt', perplexity-web passes 'pplx') so tool_call ids stay provider-specific without duplicating the helper. Non-tool streaming is unchanged (still lives token-by-token via buildStreamingResponse). * fix(discovery): resolve duplicate /v1 paths and redirect aborts (#5904) Integrated into release/v3.8.44. Thanks @hamsa0x7 for diagnosing the doubled /v1 discovery path and the REDIRECT_BLOCKED probe-loop abort (#5899). De-scoped to the discovery fix (the #5903 session-affinity work is handled by #5943) and added Rule #18 regression guards. * docs(changelog): record #5926 + #5944 (release-pipeline hardening) under v3.8.44 Maintenance (#5952) * docs(claude): add Hard Rule #22 — cross-session safety (git stash + in-flight PRs) (#5955) Integrated into release/v3.8.44 — Hard Rule #22 (cross-session safety). * refactor(translator): extract pure helpers from response/openai-responses (#5949) Extract the 5 stateless helpers (normalizeToolName, stripEmptyOptionalToolArgs, normalizeOutputIndex, normalizeUpstreamFailure, extractResponsesReasoningSummaryText) verbatim into the pure leaf openai-responses/pureHelpers.ts (no stream state, no host import). Host imports them back and re-exports normalizeUpstreamFailure for external importers (tests). Host 1091 -> 1001 LOC. The stateful streaming core stays in the host (out of scope). Byte-identical bodies (multiset 73/73), no cycle. Adds a split-guard; consumer tests stay green (responses-translation-fixes 37, combo-param-validation-fallback-4519 5). * docs(compression): document upstream sync policy for RTK/Caveman engines (#5830) (#5948) Integrated into release/v3.8.44 — docs-only upstream sync policy for RTK/Caveman engines (closes #5830). All 7 checks green. * fix(sse): strip ANSI/VT100 codes from gemini-cli stream frames (#5934) Integrated into release/v3.8.44 — ReDoS-safe ANSI/VT100 strip for gemini-cli stream frames (port of upstream #2273, thanks @anki1kr). PR test green (5/5), file-size gate OK. * fix(translator): strict Anthropic content-block compliance in antigravity→openai request (#5935) Integrated into release/v3.8.44 — strict Anthropic content-block compliance in antigravity→openai (port upstream #2296). PR test green (9/9). UNSTABLE red is the pre-existing environmental setup-claude base-red (opencode-plugin dist not built in fast-path), not a regression from this PR. * fix(mcp): auto-recover stale streamable HTTP sessions on initialize (#5957) Integrated into release/v3.8.44 — MCP stale streamable-HTTP session auto-recovery (thanks @Chewji9875). * fix(providers): validate v0 Platform API keys via chats endpoint (#5954) Integrated into release/v3.8.44 — v0-vercel Platform API key validation (thanks @vittoroliveira-dev). * fix(api): relax provider-scoped chat completion validation (#5907) Integrated into release/v3.8.44 — relaxed provider-scoped chat validation + regression test (thanks @nickwizard). * fix(providers): strip /v1 unconditionally to avoid /v1/v1/models fetch error (#5899) (#5920) Integrated into release/v3.8.44 — unconditional /v1 strip in both models-discovery paths + regression test (thanks @anki1kr). * fix(resilience): per-window is_exhausted + honor quota-exhaustion preflight for priority combos (#5923) (#5941) Integrated into release/v3.8.44. * fix(resilience): honor active codex session affinity over per-request reset-aware re-scoring (#5903) (#5943) Integrated into release/v3.8.44. * fix(thinking): only inject redacted_thinking replay block when tool_use present and thinking enabled (#5945) (#5953) Integrated into release/v3.8.44. * feat(providers): add ClinePass API-key provider (#5942) Integrated into release/v3.8.44 — ClinePass API-key (BYOK) provider (port upstream 9router#2304, co-authored @adentdk). Validated locally: 16 clinepass tests green; fixed the APIKEY count 158→159 + translate-path golden snapshot (clinepass is a genuine new provider). Remaining UNSTABLE red is the pre-existing environmental setup-claude base-red (opencode-plugin dist not built in fast-path). Supersedes stub #5541. * feat(api): add /v1/ocr endpoint (Mistral OCR) + Mistral moderation (#5950) Integrated into release/v3.8.44 — /v1/ocr endpoint (Mistral OCR) + Mistral moderation (port upstream 9router#2064, co-authored @waguriagentic). Validated locally: 14 ocr-route tests + moderation/servicekind/endpoint-category suites green (CORS→Zod→handler + no-stack-leak assertion). Reds are inherited DRIFT only: cognitive-complexity ratchet (none from OCR files — pre-existing cycle drift, rebaselined at release) + environmental setup-claude base-red. * fix(codex): convert chat json schema to responses text format (#5933) Integrated into release/v3.8.44 — converts Chat Completions json_schema response_format → Responses API text.format on the Codex path, and preserves existing text.format through verbosity normalization. Base redirected main→release; the openai-responses.ts split that landed this cycle was reconciled by re-applying the delta onto openai-responses/toResponses.ts. Validated locally: 48 translator-openai-responses-req + 8 codex-verbosity tests green. Co-authored-by: diegosouzapw <diegosouza.pw@gmail.com> * feat(providers): add Claude Sonnet 5 support across the model pipeline (#5833) Integrated into release/v3.8.44 — wires claude-sonnet-5 end-to-end (registries, modelSpecs, pricing ×3, cost, Sonnet-family fallback, 1M-ctx, static models). Reconciled the add/add overlap with the already-merged #5796 (kept the PR's superset test with the family-fallback assertion). Validated locally: kiro-sonnet-5 + catalog + pricing/modelSpecs/fallback suites all green. Thanks @ggiak! Co-authored-by: diegosouzapw <diegosouza.pw@gmail.com> * feat(relay): gate bifrost auto routing by provider manifest (#5870) Integrated into release/v3.8.44 — gates Bifrost auto-routing by the provider plugin manifest (only manifest-eligible providers reach the sidecar; ineligible/unknown fall back to the TS path with explicit reasons). Superset of #5869 (carries the full manifest + registry + docs). Resolved an integration-test conflict in favor of the release (which already subsumes this PR's readiness/removeDirWithRetry improvements). Validated locally: 4 provider-plugin-manifest + 11 relay-routing-backend tests green. Thanks @KooshaPari! Co-authored-by: diegosouzapw <diegosouza.pw@gmail.com> * refactor(translator): extract pure message helpers from openai-to-kiro (852→751) (#5947) * refactor(translator): extract pure message helpers from openai-to-kiro Extract the pure tool/message helpers (parseToolInput, normalizeKiroToolSchema, serializeToolResultContent) verbatim into the leaf openai-to-kiro/messageHelpers.ts. The host imports them back for convertMessages. They were module-private, so the public export set is unchanged (no re-export needed). Host 852 -> 751 LOC. Byte-identical bodies (multiset 99/99), leaf has zero imports (no cycle). Adds a split-guard; consumer tests stay green (translator-openai-to-kiro 33, translator-ai-sdk-image-parts 3). * chore: re-trigger CI (stuck runner on 2/2 shard) * refactor(executors): extract pure prompt + composer helpers from cursor (#5960) Extract two pure clusters from the cursor executor into sibling leaves: - cursor/prompt.ts: isRecordLike + toolChoiceDirectiveLine + buildCursorOutputConstraints - cursor/composer.ts: composer thinking-as-content decoding (isComposerModel, visibleComposerContentFromThinking, composerReasoningRemainder + markers) Host imports both back for internal use and re-exports the 3 composer helpers for external importers (tests). Host 1576 -> 1451 LOC. Byte-identical bodies (verbatim multiset prompt 65/65, composer 32/32), leaves have zero imports (no cycle). Adds a split-guard; consumer tests stay green (cursor-composer-thinking, cursor-streaming, cursor-agent-tool-calls, translator-openai-to-cursor, cursor-agent-system-prompt). * refactor(executors): extract pure SSE-collect parsing from antigravity (#5962) Extract the pure SSE-payload -> collected-stream parser (AntigravityCollectedStream, stripZeroWidth, parseAntigravityTextualToolCall, addAntigravityTextualToolCall, processAntigravitySSEPayload/Text, flushAntigravitySSEText) verbatim into the leaf antigravity/sseCollect.ts. Host imports the helpers it uses and re-exports processAntigravitySSEPayload for external importers (tests). Host 1812 -> 1671 LOC. Byte-identical bodies (verbatim multiset 135/135), leaf does not import the host (no cycle). Credit/quota state, auth, and HTTP dispatch untouched. Adds a split-guard; consumer tests stay green (executor-agy 8, executor-antigravity 26, antigravity-sse-collect-socket-release, copilot-agent-antigravity-parity 6). * refactor(executors): extract pure model maps + resolvers from chatgpt-web (#5967) Extract the static model maps (MODEL_MAP, MODEL_FORCED_EFFORT, THINKING_CAPABLE_SLUGS) and the pure thinking-effort resolvers (isThinkingCapableModel, normalizeThinkingEffort, resolveThinkingEffort, ResolvedChatGptModel, resolveChatGptModel) verbatim into the pure leaf chatgpt-web/models.ts. Host imports the two resolvers it uses back. Host 3205 -> 3076 LOC. Byte-identical bodies (verbatim multiset 120/120), leaf has zero imports (no cycle). Auth/PoW/session/HTTP dispatch and all module caches untouched. Adds a split-guard; consumer tests stay green (chatgpt-web 86, chatgpt-web-tools-5240 4, chatgpt-web-sha3-boringssl-5531 5). * refactor(executors): decompose grok-web into pure tool/markup leaves (#5994) Extract the pure OpenAI<->Grok tool-translation, native-tool mapping, markup cleanup, and NDJSON stream types out of the 1872-line grok-web executor into 4 sibling leaves: - grok-web/types.ts: GrokStreamResponse/GrokStreamEvent (stream types) - grok-web/tool-bridge.ts: OpenAI<->Grok tool translation + registry + classifiers - grok-web/native-tools.ts: native-tool selection/scoring + native->OpenAI mapping - grok-web/text-cleanup.ts: Grok markup stripping + GrokMarkupFilter Layered, acyclic: types <- tool-bridge <- native-tools; text-cleanup <- types; host imports the leaves. All symbols module-private (no host re-export). Host 1872 -> 887 LOC. Byte-identical bodies (verbatim per-leaf), no cycle, all new leaves <= 800 cap (tool-bridge split at line 753 to stay under). Auth/cookie/TLS/HTTP dispatch untouched. Adds a split-guard; consumer tests stay green (grok-web 62, grok-cli-oauth 15, grok-cli-strip-params 2). * refactor(executors): extract pure quota parsing from codex (#5999) Extract the pure Codex quota-snapshot parsing + reset/cooldown scheduling (CodexQuotaSnapshot, parseCodexQuotaHeaders, getCodexResetTime, getCodexDualWindowCooldownMs) verbatim into the leaf codex/quota.ts. Host re-exports the 4 symbols so handlers/chatCore/codexQuota.ts + tests keep resolving. Host 1539 -> 1427 LOC. Byte-identical bodies (verbatim 98/98), leaf has zero imports (only Date, no cycle). WS transport, auth, HTTP dispatch untouched. Adds a split-guard; consumer tests stay green (executor-codex 40, codex-quota-fetcher 7, chatcore-codex-quota 5). * refactor(executors): extract pure stream formatters from deepseek-web (#6000) Extract the pure content/citation formatters (isThinkingModel, isSearchModel, cleanDeepSeekToken, formatStreamContent, DeepSeekSearchResult, appendSearchCitations) verbatim into the leaf deepseek-web/stream-format.ts. Host imports the 5 it uses back into transformSSE/collectSSEContent (cleanDeepSeekToken stays internal to the leaf). Host 1147 -> 1108 LOC. Byte-identical bodies (verbatim 34/34), leaf has zero imports (no cycle), all module-private (no re-export). PoW/auth/token-cache/HTTP dispatch untouched. Adds a split-guard; consumer tests stay green (deepseek-web 35, deepseek-web-rolling-window-2942 5, deepseek-web-tools-execute 3). * refactor(api): add validatedJsonBody helper (salvage #5075) (#5931) Fuses JSON body parsing + Zod validation into a single call that returns either type-narrowed data or a ready-to-return 400 NextResponse with the standard error envelope. Salvaged as the Tier 1 portable helper from the closed refactor PR #5075; the bulk route migration is intentionally not ported. Adds a focused 6-case regression test. Co-authored-by: KooshaPari <KooshaPari@users.noreply.github.com> * feat(qoder): drive PAT auth via qodercli, add dashboard quota, fix connection display (#5816) Integrated into release/v3.8.44 — Qoder PAT auth via qodercli binary + dashboard quota + dual-auth connection fix. Thanks @AgentKiller45 (co-author @judy459)! Validated locally (release-green on its own merits): lint 0, typecheck:core 0, 104 qoder/usage/UI tests green, file-size gate OK (owner-approved qoderCli.ts baseline-freeze 666→989), env-doc-sync fixed (documented QODER_CLI_CONFIG_DIR). The 2 remaining CI reds are INHERITED base-reds, not caused by this PR: (1) LEDGER-4 minimax-m3 supportsVision (minimax-m3 base + cline-pass/minimax-m3 from the already-merged #5942); (2) mutation-test-coverage missing 3 tests in stryker.conf (#5903/#5942/#5923). Both cleaned up separately. Co-authored-by: diegosouzapw <diegosouza.pw@gmail.com> * fix(providers): minimax-m3 supportsVision (LEDGER-4) + stryker tap.testFiles drift (#6012) Release-green cleanup — clears LEDGER-4 minimax-m3 supportsVision + stryker tap.testFiles drift base-reds. Validated locally. * fix(registry): flag cline-pass/minimax-m3 as multimodal (supportsVision) (#6003) The cline-pass provider's minimax-m3 entry was missing supportsVision, breaking the LEDGER-4 registry-consistency test (all minimax-m3 entries must set supportsVision to match lite.ts — minimax-m3 is multimodal). Every other minimax-m3 registry entry (trae, bazaarlink, cline, ollama-cloud, ...) already sets it. This was a base-red on release/v3.8.44 inherited by every open PR. Validated by the existing failing-then-passing guard tests/unit/review-reviews-v3814-fixes.test.ts (LEDGER-4). * refactor(executors): extract pure payload construction from claude-web (#6006) Extract the pure Claude-web payload types + transforms + default tools/style (ClaudeWebRequestPayload, ClaudeWebStreamChunk, DEFAULT_CLAUDE_MODEL, generateMessageUUIDs, getDefaultTools, getDefaultPersonalizedStyle, transformToClaude, transformFromClaude) verbatim into the leaf claude-web/payload.ts. Host imports the 3 it uses back (ClaudeWebRequestPayload type + the two transforms). Host 1056 -> 835 LOC. Byte-identical bodies (verbatim 149/149), leaf imports only randomUUID (no host import, no cycle), all module-private (no re-export). Cookie/auth/ Turnstile/TLS/HTTP dispatch untouched. Adds a split-guard; consumer tests stay green (claude-web 13, claude-web-auto-refresh 6). * refactor(executors): extract pure upstream-header helpers from base (#6008) Extract the pure upstream-header helpers (mergeUpstreamExtraHeaders, getCustomUserAgent, setUserAgentHeader, applyConfiguredUserAgent, isOpenAICompatibleEndpoint, stripStainlessHeadersForOpenAICompat) verbatim into the leaf base/headers.ts. base.ts is imported by ~18 executors, so the host re-exports all 6 to keep those import paths intact; it also imports the 4 it uses internally in the BaseExecutor class. The trivial JsonRecord type alias is redefined locally in the leaf to avoid a base<->leaf cycle. Host 1539 -> 1451 LOC. Byte-identical bodies (verbatim 78/78), leaf does not import the host (no cycle). typecheck:core validates all base importers still resolve via the re-export. Adds a split-guard; consumer tests stay green (executor-base-utils 22, executor-default-base 49, executor-strip-stainless-openai-compat 6, plus executor sanity via typecheck). * refactor(executors): extract pure wire protocol from perplexity-web (#6014) Extract the pure Perplexity wire protocol (consts, SSE stream types, SSE parsing, OpenAI<->Perplexity message translation, request/query builders, content extraction, sseChunk) verbatim into the leaf perplexity-web/protocol.ts. Host imports back the 10 symbols it uses; everything module-private (no re-export). Session cache, TLS fetch, auth, and the executor class stay in the host. Host 1028 -> 534 LOC. Byte-identical bodies (verbatim), leaf imports only randomUUID (no host import, no cycle). Adds a split-guard; consumer tests stay green (perplexity-web 26, streaming-tools-5927 2, tls-client 6, key-validation-models 2). * refactor(executors): extract pure URL normalizers from default (#6015) Extract the pure per-provider chat-URL normalizers (normalizeBailianMessagesUrl, normalizeDataRobotChatUrl, normalizeAzureAiChatUrl, normalizeWatsonxChatUrl, normalizeOciChatUrl, normalizeSapChatUrl, normalizeXiaomiMimoChatUrl, normalizeOpenAIChatUrl, getOpenRouterConnectionPreset) verbatim into the leaf default/urlNormalizers.ts. Host imports them back into buildUrl/transformRequest; the now-dead build*ChatUrl/normalizeBaseUrl imports move to the leaf. All module-private (no re-export). Host 864 -> 815 LOC (shrunk below its frozen baseline). Byte-identical bodies (verbatim 45/45), leaf does not import the host (no cycle). buildHeaders/execute/auth untouched. Adds a split-guard; consumer tests stay green (executor-default-base 49, anthropic-compatible-bearer 3, strip-client-metadata 3). * feat(webfetch): support self-hosted FireCrawl instances (#5793) Integrated into release/v3.8.44 — self-hosted FireCrawl support (FIRECRAWL_BASE_URL/FIRECRAWL_TIMEOUT_MS). Re-cut clean onto the release tip (branch was fossilized from a pre-v3.8.40 snapshot). Validated: 4 firecrawl tests green, env-doc-sync + docs-sync pass. UNSTABLE red is the inherited environmental setup-claude base-red. * feat(xai): register XaiExecutor with reasoning-effort suffix parsing (#5800) Integrated into release/v3.8.44 — XaiExecutor with reasoning-effort suffix parsing. Re-cut clean onto the release tip (branch was fossilized). Validated: 6 xai-executor tests green, provider-consistency OK, typecheck:core 0 errors, env-doc-sync in sync. UNSTABLE red is the inherited environmental setup-claude base-red. * feat(discovery): Phase 2 — reporter, /api/discovery/* routes (strict loopback-only) + dashboard UI (#5939) * feat(discovery): Phase 2 reporter — discoveryResults DB module + service wiring Adds src/lib/db/discoveryResults.ts (CRUD over the discovery_results table from migration 074) and wires the opt-in discovery service to persist and read findings through it: persistDiscoveryResult / getDiscoveryResults / getDiscoveryResultById / markVerified / deleteDiscoveryResult, with (provider, method, endpoint) upsert de-duplication. Re-exported from localDb. The service stays opt-in / default-off. The /api/discovery/* routes and the dashboard UI tab are intentionally deferred to Phase 2b — they need the local-only enforcement model (Hard Rules #15/#17 territory) decided first. TDD: tests/unit/db/discovery-results.test.ts (8 cases, DB + service delegation), isolated DATA_DIR with resetDbInstance cleanup. * feat(discovery): Phase 2b — /api/discovery/* routes (strict loopback-only) Adds the discovery HTTP surface on top of the reporter DB module: GET /api/discovery/results list findings (optional ?providerId) GET /api/discovery/results/:id one finding (404 if absent) DELETE /api/discovery/results/:id delete a finding POST /api/discovery/scan scan a provider + persist findings POST /api/discovery/verify/:id mark a finding verified Authorization: strict loopback-only. "/api/discovery/" is added to LOCAL_ONLY_API_PREFIXES so the central authz pipeline (proxy.ts → runAuthzPipeline → managementPolicy) rejects non-loopback callers with a 403 LOCAL_ONLY before any handler runs. It is deliberately NOT in LOCAL_ONLY_MANAGE_SCOPE_BYPASS_PREFIXES — no remote manage-scope bypass — because POST /scan issues outbound probes to provider endpoints (SSRF-adjacent) and must never be tunnel-reachable. Handlers also call requireManagementAuth (defense in depth) and return sanitized errors via createErrorResponse. Tests: - tests/unit/authz/discovery-routes-local-only.test.ts (8) — security guard: isLocalOnlyPath true + not manage-scope-bypassable for all four paths. - tests/unit/api/discovery-routes.test.ts (6) — handler integration over an isolated DATA_DIR: list/filter, by-id 200/404/400, scan persist + 400 on empty/malformed body, verify 200/404, delete 200/404, no stack-trace leak. * feat(discovery): Phase 2c — dashboard UI tab (Tools → Discovery) Adds the /dashboard/discovery page (DiscoveryPageClient) that consumes the Phase 2b /api/discovery/* routes: scan a provider, list findings, verify or delete them. Registered in the sidebar under the Tools group (icon travel_explore) and given a "discovery" i18n namespace + sidebar keys in en.json (other locales fall back to en via next-intl until synced — the locale files are in a pre-existing coverage deficit unrelated to this change). Registers the UI test path in vitest.config.ts (advisory ui suite). Tests: src/app/(dashboard)/dashboard/discovery/__tests__/DiscoveryPageClient.test.tsx (3 cases: loads+renders results, empty state, fetches /api/discovery/results on mount; stable useTranslations mock to avoid the fetch-loop). NOTE: the ui vitest suite cannot run in this workspace — @testing-library/dom (a @testing-library/ react peer dep) is absent from node_modules, which fails ALL existing ui tests equally; the test runs in CI. Component verified locally via typecheck + lint. * test(discovery): register discovery-routes-local-only in stryker tap.testFiles The mutation-test-coverage gate (--strict) flags any unit test covering a mutated module that isn't listed in stryker.conf.json tap.testFiles. This PR's tests/unit/authz/discovery-routes-local-only.test.ts covers src/server/authz/ routeGuard.ts (a mutated module, which this PR edits by adding the /api/discovery/ local-only prefix), so it must be registered for its mutant kills to count. No behavior change. * refactor(discovery): split DiscoveryPageClient to satisfy max-lines-per-function The complexity ratchet (max-lines-per-function: 80) flagged the single 184-line DiscoveryPageClient function (+1 over baseline). Extract the data layer into two hooks (useDiscoveryResults for list/loading/feedback, useDiscoveryActions for scan/verify/delete), a shared callApi helper, and two presentational sub-components (DiscoveryScanForm, DiscoveryResultCard). Every function is now under the 80-line ceiling; complexity gate back to baseline 1995. No behavior change — same exported component, same endpoints, same props. * test(sidebar): include discovery in omni-proxy item-order snapshot Adding the Discovery item to the Tools group (this PR's sidebar entry) extends the ordered omni-proxy section list. Update the exact-match deepEqual snapshot in sidebar-visibility.test.ts to include "discovery" in its position (after traffic-inspector). The assertion stays exact — this reflects the intentional new item, it does not weaken the check. * docs(changelog): restore release bullets eaten by merge auto-resolve; re-add discovery bullet additively * chore(quality): bump testFrozen for translator-openai-responses-req.test.ts (1097 -> 1172) Base-red inherited from #5933, which grew the test file to 1171 lines (Hard Rule #18 regression tests) without adjusting the frozen cap. The release tip itself fails check:file-size; this unblocks every PR into release/v3.8.44. File untouched by this PR. * chore(quality): restore stryker tap.testFiles entries eaten by merge auto-resolve The merge of origin/release/v3.8.44 silently dropped the 3 entries added on the release side (#5903, clinepass, #5923). Took the release version verbatim and re-added only this PR's entry (discovery-routes-local-only) in alphabetical order. check:mutation-test-coverage green locally. * chore(quality): reconcile inherited v3.8.44 merge-burst drift + include discovery in tools-group order test - complexity 1995->2003 and cognitive 856->859: both measure IDENTICAL on the pristine release tip (3a3d618fe) and this PR's merged HEAD — the PR is complexity-net-zero; drift is from the 2026-07-02 merge burst (notes added to both baselines, same family as prior reconciliations). - sidebar-tools-group.test.ts: append 'discovery' to the expected TOOLS_GROUP order — the intentional new sidebar item this PR adds (same expected-value update already made in sidebar-visibility.test.ts). * feat(providers): custom icon URL for compatible provider nodes (#5815) Integrated into release/v3.8.44 — custom icon URL for compatible provider nodes (DB migration 113 + nodes.ts + Zod schema + API routes + catalog + ProviderIcon UI). Re-cut onto the release tip (branch was fossilized ~13 real files); reconciled icon_url into the release's evolved nodes.ts/routes via 3-way. Validated: 14 backend + 5 frontend(vitest) + 24 page-utils tests green, typecheck:core 0, provider-consistency OK, file-size/env-doc-sync pass. UNSTABLE red is the inherited environmental setup-claude base-red. * feat(api): add /v1/audio/translations endpoint (#5809) Integrated into release/v3.8.44 — /v1/audio/translations endpoint (Whisper-style audio translation) + audioTranslation handler + translation providers in audioRegistry. Re-cut clean onto the release tip (branch was fossilized). Validated: 8 route tests (incl. no-stack-leak), typecheck:core 0, route-guard-membership OK, docs gates pass. UNSTABLE red is the inherited environmental setup-claude base-red. * feat(dashboard): wildcard-CORS runtime warning + CORS security doc (#5602) (#5759) Integrated into release/v3.8.44 — wildcard-CORS runtime warning banner + docs/security/CORS.md security guide (#5602). Re-cut clean onto the release tip (branch was fossilized). Validated: 20+9 backend + 2 banner(vitest) tests green, typecheck:core 0, docs-sync/symbols/fabricated/doc-links pass. UNSTABLE red is the inherited environmental setup-claude base-red. * refactor(executors): extract pure JSONL stream translation from huggingchat (#6016) Extract the pure JSONL->OpenAI-SSE translation (sseChunk, parseJsonlLine, streamJsonlToOpenAi, readJsonlResponse) verbatim into the leaf huggingchat/jsonlStream.ts. They consume a passed-in ReadableStream (no fetch/network/state). Host imports back the two it uses; all module-private (no re-export). Host 812 -> 594 LOC. Byte-identical bodies (verbatim), leaf has zero imports (no cycle). Cookie/auth/multipart/execute untouched. Adds a split-guard; consumer tests stay green (executor-huggingchat 6, huggingchat-model-catalog 3). * refactor(executors): extract pure Meta AI response parser from muse-spark-web (#6017) Extract the pure Meta AI SSE/JSON response parsing + content/reasoning/error extraction (parseMetaSseFrames, readMetaJsonPayloads, collect*/extract*/classify* helpers, parseMetaAiResponseText, isRecord, the reasoning/renderer key arrays, MetaSseFrame/ ParsedMetaAiResponse types) verbatim into the leaf muse-spark-web/response-parser.ts. Host imports back the 3 it uses; all module-private (no re-export). Host 1301 -> 925 LOC. Byte-identical bodies (verbatim), leaf has zero imports (no cycle). Conversation cache, cookie/auth, fetch, executor class untouched. Adds a split-guard; consumer tests stay green (muse-spark-cookie-copy-5449 2, muse-spark-web-continuation 6). * refactor(executors): extract pure EventStream framing from kiro (#6018) Extract the pure AWS EventStream binary framing (ByteQueue, CRC32 table + crc32, TEXT_ENCODER/TEXT_DECODER, KIRO_VERIFY_FULL_CRC, parseEventFrame, EventFrame type) verbatim into the self-contained leaf kiro/eventstream.ts (local JsonRecord alias to avoid a cycle). Host imports back the 3 it uses (ByteQueue, TEXT_ENCODER, parseEventFrame). Host 943 -> 758 LOC. Byte-identical bodies (verbatim 145/145), leaf has zero host imports (no cycle). Auth/token-refresh/streaming-state/executor class untouched; the test-imported flushBufferedToolArgs/resolveKiroRegion/kiroRuntimeHost stay exported on the host. Adds a split-guard; consumer tests stay green (executor-kiro 9, kiro-tool-args-streaming 7, kiro-iam-region 10). * refactor(executors): extract challenge solver from duckduckgo-web (#6020) Extract the DuckDuckGo anti-abuse challenge solver + FE signals (CHALLENGE_STUBS, countHtmlElements, buildHtmlLookup, sha256Base64, solveDuckDuckGoChallenge, makeDuckDuckGoFeSignals) verbatim into the leaf duckduckgo-web/challenge.ts. The vm sandbox + 5s timeout (SECURITY note) are preserved. Host imports back the two it uses. Host 924 -> 788 LOC. Byte-identical bodies (verbatim 132/132), leaf does not import the host (no cycle). The now-dead createHash/parse5 host imports are removed; vm stays (still used in host). Auth/cookie/warm/seed/executor untouched. Adds a split-guard; consumer tests stay green (duckduckgo-web-executor 15, duckduckgo-domain-4037 8). * test(cli): deflake setup-claude.test.ts — silence console to stop stdout/report interleaving (#5959) (#6019) Integrated into release/v3.8.44. Deflakes tests/unit/cli/setup-claude.test.ts (#5959) — verified in CI: setup-claude now passes in Unit Tests fast-path (2/2). Merged with --admin over two PRE-EXISTING base-reds proven independent of this test-only change (this PR only touches setup-claude.test.ts + CHANGELOG): - Fast Quality Gates → check:test-discovery: tests/unit/executors/{firecrawl-fetch,xai-executor}.test.ts are orphaned on release/v3.8.44 (added by #5793/#5800); the shard glob 'tests/unit/{api,...,ui}/**' omits 'executors'. Both blobs exist on the pristine base. - Unit Tests fast-path (2/2): tests/unit/settings-i18n-keys.test.ts → 'direct translation calls have English messages' fails on the pristine base too (unrelated i18n base-red). * fix(cli): stabilize setup-claude.test.ts flake — inject dry-run log sink (#6021) * fix(cli): stabilize setup-claude.test.ts flake — inject dry-run log sink (#5959) Root cause (isolated empirically, 5/10 fail on the pristine base): the dry-run path of syncClaudeProfilesFromModels console.log's a multi-byte box-drawing heading ("── [dry-run] … ──"). Under the node:test runner that write lands on the test child's stdout and corrupts the runner's V8-serialized event stream ~50% of the time ("Unable to deserialize cloned data due to invalid or unsupported version"), killing the file at the first logging test. ASCII-only logging never reproduced it (0/20); the unicode heading alone reproduced it (10/20). Fix: syncClaudeProfilesFromModels accepts an injectable log sink (opts.log, CLI default unchanged: console.log). The dry-run test injects a collector — keeping unicode off the child's stdout — and gains assertions on the dry-run report (path + parsed settings content), which FAIL on the old code (log ignored) and PASS on the new one. Validation: 0/30 failures post-fix vs 5/10 pre-fix on the same tree. Baselines: complexity 2003->2006 and cognitive 859->860 are inherited post-3a3d618fe release drift — measured identical on the pristine base with and without this change (notes added in both files). * test(ci): collect the orphaned tests/unit/executors/ directory (base-red unblock) #5800 created tests/unit/executors/ outside every unit-runner brace glob, so its 2 test files (firecrawl-fetch, xai-executor) never ran anywhere and check:test-discovery flags them as NEW orphans on the pristine base, red-flagging every PR into release/v3.8.44. Added 'executors' to the runner globs in package.json (7 scripts), ci.yml unit shards, quality.yml TIA glob, build-test-impact-map.mjs, and the test-discovery gate's COLLECTORS (the gate enforces those stay in sync). Both files pass when actually collected (10/10); cli+executors under suite flags: 99/99. * chore(quality): complexity baseline 2006 -> 2007 (CI-observed value) The GitHub fast-gates runner measures 2007 where local measures 2006 — the same local-vs-CI off-by-one documented in the 2026-06-26 note. Pin the CI-observed value so the gate is deterministic where it runs. * fix(i18n): add the 6 missing en.json keys flagged by settings-i18n-keys (base-red unblock) providers.iconUrlLabel/iconUrlHint (referenced by AddCompatibleProviderModal and EditCompatibleNodeModal) and settings.authz.cors.wildcard.title/desc (the #5602 CORS_ALLOW_ALL banner in AuthzSection) shipped without their en.json messages — 'direct translation calls have English messages' fails on the pristine release tip, red-flagging every PR. git log -S proves the keys never existed (not a merge-eat). Scanner test: 10/10 green. * refactor(executors): extract reasoning-effort (base) + tool-normalization (codex) leaves (#6030) Two pure-leaf follow-ups closing the Block H tail: - base/reasoningEffort.ts: provider-aware reasoning_effort sanitation (MISTRAL/GITHUB reject patterns, supportsMaxEffortForProvider, sanitizeReasoningEffortForProvider). Deps are config/services only (PROVIDER_CLAUDE, isClaudeCodeCompatible, supportsClaudeMaxEffort/supportsXHighEffort) so the leaf never imports the host — no cycle. base.ts re-exports sanitizeReasoningEffortForProvider for its external importers (mimoThinking + tests). base.ts 1466 -> 1312 LOC. - codex/tools.ts: Responses-API tool normalization (CODEX_HOSTED_TOOL_TYPES hosted-tool passthrough, isCodexFreePlan gating, normalizeCodexTools). Self-contained (console.debug only). codex.ts re-exports isCodexFreePlan + normalizeCodexTools for external importers (tests + provider services). codex.ts 1430 -> 1268 LOC. Byte-identical bodies (verbatim: base 100/100, codex 126/126); both leaves have zero host imports. Adds two split-guards asserting the leaf owns the symbol and both import paths resolve to the same function. Consumer tests stay green (base-executor-sanitize-effort 34, executor-codex 40, mimoThinking 9, codex-free-plan-image-generation 3, issue-fixes 6). * test(ci): move orphaned executor tests to top-level so a runner collects them (#6027) Integrated into release/v3.8.44 — collect orphaned executor tests (check:test-discovery base-red). * test(cli): deflake cli-setup-opencode.test.ts — silence console (#5959-class landmine) (#6033) The command under test prints CLI progress with multi-byte glyphs (printSuccess "✔" in the happy paths, printError "✖" in the dist-missing path that test 4 exercises) via console.log. Under the node:test runner those child-stdout writes interleave with the V8-serialized report frames and can corrupt the stream — the exact #5959 mechanism proven for setup-claude.test.ts; this file's ✖ line was already visible entangled in red CI runs. No test here asserts on stdout, so silence console.log/info/ warn for the file (same pattern as #6019/#6021, restored in after()). Validation: pre-fix the ✖/✔ lines reach stdout every run (grep-able); post-fix stdout is clean, 4/4 tests green, 0/20 failures across 20 runs. * feat(agy): support Google Cloud project ID settings (#5905) * feat(agy): support Antigravity project ID settings * refactor(agy): collapse Antigravity family project gate --------- Co-authored-by: Nikolay Alafuzov <alafuzov_nn@rusklimat.ru> * feat(proxy): add Webshare proxy pool import and sync (#5993) * feat(proxy): add Webshare proxy pool import and sync Adds Webshare (https://proxy.webshare.io) as a fourth source in the free-proxy provider framework alongside 1proxy, Proxifly, and IPLocate. WebshareProvider paginates the account's `/api/v2/proxy/list/` endpoint (Authorization: Token <key>), upserts proxies into the shared `free_proxies` table via the existing db/freeProxies.ts helpers, and tombstones proxies the account no longer lists (recycled/retired IDs) while never touching rows already promoted into the live proxy pool. Unlike the other sources, Webshare is a paid per-account list, so it is gated on FREE_PROXY_WEBSHARE_API_KEY rather than a plain on/off flag. No DB migration needed — reuses the existing free_proxies table and proxy_registry-on-promote path. Co-authored-by: ricatix <d.enistraju155@gmail.com> Inspired-by: https://github.com/decolua/9router/pull/1176 * chore(changelog): restore release entries + add webshare bullet --------- Co-authored-by: ricatix <d.enistraju155@gmail.com> * feat(api-keys): add per-key device/connection tracking (#5998) * feat(api-keys): add per-key device/connection tracking Tracks distinct client devices (SHA-256 fingerprint of IP + User-Agent) seen with each API key, with a 30-minute TTL and per-key/global caps. The tracker is in-memory only (module-scoped Map, same pattern as sessionManager.ts — no global.* singleton) and never stores the raw IP: it is masked before being written. Hooked into open-sse/handlers/chatCore.ts (the real chat entry) rather than the legacy src/sse/handlers path. New GET /api/keys/[id]/devices management route exposes masked device details for a key, and the API Keys dashboard tab gets a "Devices" count badge alongside the existing Sessions badge. This is a new granularity distinct from the existing maxSessions cap (src/lib/db/apiKeys.ts), which limits concurrent sticky-routing sessions rather than tracking device identity. Co-authored-by: Muhammad Mugni Hadi <mugni@rukita.co> Inspired-by: https://github.com/decolua/9router/pull/931 * chore(changelog): restore release entries + add api-keys device-tracking bullet --------- Co-authored-by: Muhammad Mugni Hadi <mugni@rukita.co> * fix(providers): only apply openai-family model inference fallback when no cataloged provider serves the id (#5852) (#5938) resolveModelByProviderInference() in open-sse/services/model.ts had an unconditional /^gpt-/i heuristic that hijacked any model id starting with gpt-/o1/o3 into provider openai, even when the id is cataloged under other providers. This broke bare (non-combo) requests for open-weight models like gpt-oss-120b (served by fireworks/cerebras/scaleway/byteplus/sambanova/ heroku), which don't exist on openai's catalog, producing a 404 with no fallback. Gate the heuristic on providers.length === 0 so it only fires for genuinely uncataloged openai-family ids, letting cataloged ids fall through to the existing single-candidate / ambiguous-candidate resolution paths. Regression guard: tests/unit/gptoss-provider-inference-5852.test.ts * fix(cc-compatible): send SSE accept for streamed requests (#5958) Integrated into release/v3.8.44 — SSE Accept header for streamed cc-compatible requests (thanks @rdself). * fix: deepseek-web reliability — auto-refresh on 401/403, refresh v2.0.0 client headers, fix token-kind bulk import (#5988) Integrated into release/v3.8.44 — deepseek-web auto-refresh + v2.0.0 headers + token-kind bulk import (thanks @backryun). * feat(providers): support Vercel AI Gateway embeddings and images (#5968) * feat(providers): support Vercel AI Gateway embeddings and images Extends the existing vercel-ai-gateway (alias vag) provider — currently chat-only — with embeddings and image generation support, since the gateway's OpenAI-compatible /v1 API also exposes /embeddings and /images/generations. Adds entries to EMBEDDING_PROVIDERS (embeddingRegistry.ts) and IMAGE_PROVIDERS (imageRegistry.ts) modeled on the existing openai entries. Out of scope for this PR (tracked as follow-ups): the /v1/credits usage reader, retry:{429:2} tuning, and claude->reasoning_effort mapping. Co-authored-by: Ngô Tấn Tài <tantai@newnol.io.vn> Inspired-by: https://github.com/decolua/9router/pull/1704 * chore(changelog): restore release entries + add vercel-gateway media bullet --------- Co-authored-by: Ngô Tấn Tài <tantai@newnol.io.vn> * feat(cli-tools): add Crush CLI tool to the dashboard (#5970) * feat(cli-tools): add Crush CLI tool to the dashboard Add a `crush` entry to the dashboard CLI-Tools catalog and a new `/api/cli-tools/crush-settings` route (GET/POST/DELETE), cloned from the `pi` tool's route as a template. OmniRoute already ships a `crush` CLI command path (bin/cli/commands/setup-crush.mjs) but the dashboard catalog had no matching entry. The new route writes the real Crush config shape (providers.omniroute as an openai-compat provider block) to the same canonical config path (~/.config/crush/crush.json) that setup-crush.mjs's resolveCrushTarget() already writes to, so the dashboard and the CLI command agree on one location. Adds CLI_TOOL_RUNTIME_CONFIG.crush for detection/status, and bumps EXPECTED_CODE_COUNT (18 -> 19) plus the catalog-count/schema tests that enumerate the full tool list. Co-authored-by: dopaemon <polarisdp@gmail.com> Inspired-by: https://github.com/decolua/9router/pull/1233 * chore(changelog): restore release entries + add crush cli bullet --------- Co-authored-by: dopaemon <polarisdp@gmail.com> * feat(dashboard): suggest HuggingFace Hub media models (#5990) * feat(dashboard): suggest HuggingFace Hub media models MVP scope: - imageRegistry.ts: add an image kind entry for the huggingface provider (HF Inference API text-to-image), with a dedicated "huggingface-image" format since the endpoint returns raw image bytes rather than JSON. - New handler open-sse/handlers/imageGeneration/providers/huggingface.ts, wired into imageGeneration.ts's format dispatch. - New pure helper module open-sse/services/hfModelSuggestions.ts: maps a dashboard media kind to an HF Hub pipeline_tag and sorts/limits raw HF Hub search results (unit-tested directly). - New route GET /api/v1/providers/suggested-models proxies the public HF Hub models search API server-side (Zod-validated query, buildErrorBody on every error path, no HF token exposed client-side — this project has no server-side HF search token config, so it calls unauthenticated). - UI: ImageExampleCard now fetches suggested HF Hub models for the huggingface provider and merges them into the model picker as a selectable chip row, alongside the existing static provider models list. - i18n: adds media.suggestedModels to en.json only. Co-authored-by: yicone <yicone@gmail.com> Inspired-by: https://github.com/decolua/9router/pull/1633 * chore(changelog): restore release entries + add hf-hub media suggest bullet --------- Co-authored-by: yicone <yicone@gmail.com> * feat(dashboard): collapse and sort provider quota rows by remaining (#5977) * feat(dashboard): collapse and sort provider quota rows by remaining Sort the expanded quota list by remaining percentage (highest first) and collapse it to the first 3 rows by default, with a "Show N more" / "Show less" toggle when a connection reports more than 3 quotas. This keeps the most at-risk quotas out of view below a long list of healthy ones. Extracts the sort/slice logic into pure helpers (sortQuotasByRemaining, getVisibleQuotas) exported from QuotaCardExpanded.tsx and unit-tests them directly. Co-authored-by: CườngNH <j2.cuong@gmail.com> Inspired-by: https://github.com/decolua/9router/pull/1919 * chore(changelog): restore release entries + add quota collapse/sort bullet --------- Co-authored-by: CườngNH <j2.cuong@gmail.com> * feat(providers): refresh The Old LLM (Free) model catalog (#5181) * feat(dashboard): add tool-source diagnostics settings toggle (#5978) * feat(dashboard): add tool-source diagnostics settings toggle Adds a Settings > Advanced card (cloned from DebugModeCard) that lets operators flip the existing `logToolSources` flag from the UI instead of editing the DB row directly. The backend gate (chatCore.ts) and DB default were already present but had no toggle. Also adds `logToolSources` to the /api/settings Zod PATCH schema (it is `.strict()`, so the key was previously rejected) and en-only i18n strings. Co-authored-by: DuyPrX <93126969+DuyPrX@users.noreply.github.com> Inspired-by: https://github.com/decolua/9router/pull/1825 * chore(changelog): restore release entries + add tool-source toggle bullet --------- Co-authored-by: DuyPrX <93126969+DuyPrX@users.noreply.github.com> * feat(oauth): import Codex connection from a raw ChatGPT access token (#5995) * feat(oauth): import Codex connection from a raw ChatGPT access token OmniRoute's only Codex import path (/api/oauth/codex/import) required both access_token and refresh_token, leaving no import path for a user who only has a bare ChatGPT website access token (no refresh token). - src/lib/db/providers.ts: createProviderConnection gains an explicit authType "access_token" branch — intentionally never deduped (no stable long-lived identity to match on) — and derives the connection name from email/name the same way "oauth" does. - src/lib/oauth/services/codexImport.ts: export extractCodexAccountInfo so the new import path reuses the existing JWT decode instead of duplicating one. - New route POST /api/oauth/codex/import-token (Zod-validated body { accessToken, name? }); errors routed through buildErrorBody / sanitizeErrorMessage. The executor's refreshCredentials() already degrades safely to null when there is no refresh token, forcing re-auth on expiry instead of a refresh exchange. - OAuthModal.tsx: the callback-URL manual-paste path for codex now detects an eyJ-prefixed pasted token and posts it to the new endpoint, mirroring the existing grok-cli raw-token paste pattern. Co-authored-by: ryanngit <74137224+ryanngit@users.noreply.github.com> Inspired-by: https://github.com/decolua/9router/pull/1290 * chore(changelog): restore release entries + add codex token-import bullet --------- Co-authored-by: ryanngit <74137224+ryanngit@users.noreply.github.com> * fix(resilience): parse Retry-After from 429 JSON body for cooldown (#5974) Integrated into release/v3.8.44 — parse Retry-After from 429 JSON body for cooldown (incl. #6013 retry-after-json extraction by @KooshaPari). * fix(embeddings): forward connection-level proxy to embedding requests (#5975) Integrated into release/v3.8.44 — forward connection-level proxy to embedding requests. * fix(api): guard shared API client against non-JSON error responses (#5973) Integrated into release/v3.8.44 — guard shared API client against non-JSON error responses. * feat(dashboard): surface Codex banked reset credits per account (#5199) * feat(providers): add NVIDIA NIM image generation (#5971) * feat(providers): add NVIDIA NIM image generation NVIDIA already exists as a chat provider (integrate.api.nvidia.com, OpenAI-compatible) but image generation is served on a different host (ai.api.nvidia.com/v1/genai/<model>) with a native NIM body shape, so it gets a dedicated `nvidia-nim` image format and handler rather than reusing the OpenAI image path. Adds the 4 FLUX models (flux.1-dev, flux.1-schnell, flux.1-kontext-dev, flux.2-klein-4b) to IMAGE_PROVIDERS, plus handleNvidiaNimImageGeneration() which shapes the per-model NIM request body (flux.1-dev's mode/cfg_scale and 768-1344px/64px-increment dimension validation, flux.1-kontext-dev's required input image + aspect_ratio, schnell/klein's optional array-form edit image) and normalizes the NIM response (artifacts[]/images[]/data[]/ single-value shapes) into the OpenAI `{created, data}` shape. Co-authored-by: eng2007 <aleksey.semenov@gmail.com> Inspired-by: https://github.com/decolua/9router/pull/1195 * chore(changelog): restore release entries + add nvidia-nim image bullet --------- Co-authored-by: eng2007 <aleksey.semenov@gmail.com> * feat(providers): add Augment (Auggie CLI) local provider (#5972) * feat(providers): add Augment (Auggie CLI) local provider Adds a new local, no-auth provider that spawns the user's local `auggie` CLI (`auggie --print --quiet --model <m> --`) and pipes a flattened prompt via stdin, wrapping stdout as an OpenAI-compatible SSE stream or a single chat.completion JSON body depending on the request's `stream` flag. Auth is delegated entirely to `auggie login` outside OmniRoute — the connection is registered `noAuth: true` and `refreshCredentials()` is a no-op, matching the existing `NOAUTH_PROVIDERS` credential-less flow (synthetic connection, no DB row required). An optional connection row is still admitted via `FREE_APIKEY_PROVIDER_IDS` for display/priority tracking, consistent with `opencode`. The dashboard "Test Connection" flow spawns `auggie --version` to confirm the CLI is installed and runnable, since there is no API key to validate upstream. Security hardening (spawn is an untrusted-input sink): - Command injection: spawn no longer passes `shell: true` on Windows. The binary is resolved to a concrete path/name and argv is handed straight to the OS loader, so no cmd.exe metacharacter interpretation is possible. - Argument injection (flag smuggling): `model` is validated against the registry allowlist (`auggieProvider.models`) before any spawn — a model that is unknown or starts with "-" is rejected with a sanitized error and the subprocess is never started. A trailing `--` marks end-of-options in the argv as belt-and-suspenders. Co-authored-by: chamdanilukman <16629923+chamdanilukman@users.noreply.github.com> Inspired-by: https://github.com/decolua/9router/pull/1200 * test(golden): regenerate translate-path for auggie provider --------- Co-authored-by: chamdanilukman <16629923+chamdanilukman@users.noreply.github.com> * feat(providers): add ModelScope OpenAI-compatible provider (#5965) * feat(providers): add ModelScope OpenAI-compatible provider Ports ModelScope (Alibaba 魔搭) as a new API-key, OpenAI-compatible provider — upstream 9router PR #1764. The upstream PR hardcoded `https://api-inference.modelscope.ai/...` (`.ai` TLD); verified against ModelScope's own API-Inference docs and third-party integration guides that the real production domain is `api-inference.modelscope.cn` (`.cn` TLD) and shipped that instead. Also drops the PR's static 5-model snapshot in favor of `passthroughModels: true` with an empty seed list + `modelsUrl`, since ModelScope's open-model catalog moves fast. Updates the providers-constants-split characterization test's hardcoded APIKEY_PROVIDERS count (159 -> 160) to match the new entry. Co-authored-by: Umar Javed <114807145+tn5052@users.noreply.github.com> Inspired-by: https://github.com/decolua/9router/pull/1764 * chore(changelog): restore release entries + add modelscope bullet * test(golden): regenerate translate-path for modelscope provider --------- Co-authored-by: Umar Javed <114807145+tn5052@users.noreply.github.com> * feat(providers): add Qiniu OpenAI-compatible provider (#5966) * feat(providers): add Qiniu OpenAI-compatible provider Wires Qiniu (七牛云) AI inference gateway as a BYOK API-key provider. Qiniu proxies many upstream models (DeepSeek V3/V4, Claude, Kimi and more) behind a single key, so it ships with an empty static seed and relies on passthroughModels + the live /v1/models catalog instead of a single stale hardcoded model id. - metadata: src/shared/constants/providers/apikey/gateways.ts - registry entry: open-sse/config/providers/registry/qiniu/index.ts (format openai, executor default, bearer auth, baseUrl https://api.qnaigc.com/v1/chat/completions, modelsUrl https://api.qnaigc.com/v1/models) - added to NAMED_OPENAI_STYLE_PROVIDERS so model import serves the live catalog and falls back to the (empty) local catalog on error, same pattern as the existing dgrid/zenmux/orcarouter gateways - tests: tests/unit/qiniu-provider.test.ts (metadata, registry resolution, passthrough validation, live /v1/models fetch + fallback) Co-authored-by: JiangZhuo <jiangzhuo@qiniu.com> Inspired-by: https://github.com/decolua/9router/pull/911 * chore(changelog): restore release entries + add qiniu bullet * test(golden): regenerate translate-path for qiniu provider * test(providers): bump APIKEY count 160→161 for qiniu --------- Co-authored-by: JiangZhuo <jiangzhuo@qiniu.com> * feat(providers): add b.ai OpenAI-compatible provider (#5969) * feat(providers): add b.ai OpenAI-compatible provider Adds bai as a new OpenAI-compatible BYOK provider, distinct from the existing thebai/theb.ai provider, using passthrough model discovery (no hardcoded model list, live catalog served from api.b.ai/v1/models). Co-authored-by: Delynn Assistant <zhen@dkzhen.org> Inspired-by: https://github.com/decolua/9router/pull/963 * test(golden): regenerate translate-path for b.ai provider * test(providers): bump APIKEY count 161→162 for b.ai --------- Co-authored-by: Delynn Assistant <zhen@dkzhen.org> * feat(providers): add Nube.sh OpenAI-compatible provider (#5936) * feat(providers): add Nube.sh OpenAI-compatible provider Nube.sh is a live BYOK OpenAI-compatible gateway (LiteLLM proxy) at https://ai.nube.sh/api/v1, Bearer/API-key auth. Registered as an apikey inference-host with an OpenAI-format, default-executor registry entry. Its live model catalog is only reachable with a valid key (/api/v1/models returns 401 unauthenticated), so no model IDs are hardcoded — the entry uses passthroughModels + modelsUrl for live enumeration instead of shipping unverifiable IDs. Co-authored-by: whale9820 <87256750+whale9820@users.noreply.github.com> Inspired-by: https://github.com/decolua/9router/pull/2294 * test(golden): regenerate translate-path for nube provider * test(providers): bump APIKEY count 162→163 for nube --------- Co-authored-by: whale9820 <87256750+whale9820@users.noreply.github.com> * feat(providers): add Charm Hyper OpenAI-compatible provider (#5961) * feat(providers): add Charm Hyper OpenAI-compatible provider Registers Charm Hyper (hyper.charm.land) as a new API-key gateway provider: OpenAI-compatible chat completions format, bearer auth, free tier (100 monthly Hypercredits). Models are resolved via passthrough (modelsUrl + live /v1/models import) instead of a hardcoded upstream model list, since the specific model catalog is not publicly documented. Co-authored-by: whale <admin@dyntech.cc> Inspired-by: https://github.com/decolua/9router/pull/2006 * test(golden): regenerate translate-path for charm-hyper provider * test(providers): bump APIKEY count 163→164 for charm-hyper --------- Co-authored-by: whale <admin@dyntech.cc> * feat(providers): add SumoPod and X5Lab OpenAI-compatible providers (#5963) * feat(providers): add SumoPod and X5Lab OpenAI-compatible providers Both are OpenAI-compatible BYOK aggregator gateways, wired via the default executor with bearer API-key auth. Neither ships a hardcoded model list — both use passthroughModels with an empty seed list and a live /v1/models fetcher, so the catalog always reflects what each gateway actually serves instead of speculative model IDs. - SumoPod: https://ai.sumopod.com/v1/chat/completions (sk- keys) - X5Lab: https://api.x5lab.dev/v1/chat/completions (x5- keys) Regression guard: tests/unit/sumopod-x5lab-provider.test.ts. Co-authored-by: Rigel Ramadhani Waloni <rigel8911@gmail.com> Inspired-by: https://github.com/decolua/9router/pull/1288 * chore(changelog): restore release entries + add sumopod/x5lab bullet * test(golden): regenerate translate-path for sumopod + x5lab providers * test(providers): bump APIKEY count 164→166 for sumopod + x5lab --------- Co-authored-by: Rigel Ramadhani Waloni <rigel8911@gmail.com> * feat(server): support reverse-proxy basePath deployment (#5992) * feat(server): support reverse-proxy basePath deployment Adds OMNIROUTE_BASE_PATH (opt-in, empty by default) to next.config.mjs using Next.js's native basePath support so a deployment behind a reverse-proxy subpath (e.g. https://host/omniroute/) works without manual header stripping. Next.js strips the configured prefix from nextUrl.pathname before route classification, so classifyRoute() and isLocalOnlyPath() keep matching un-prefixed paths. The two hardcoded auth redirect targets in src/server/authz/pipeline.ts (root "/" -> "/dashboard" and unauthenticated dashboard -> "/login") now prefix with request.nextUrl.basePath so they stay inside the deployed subpath. Default empty basePath is a no-op for existing root-path deployments. Co-authored-by: zocomputer <help@zocomputer.com> Inspired-by: https://github.com/decolua/9router/pull/1810 * docs(env): document OMNIROUTE_BASE_PATH in .env.example + ENVIRONMENT.md; restore changelog * docs(env): document AUGGIE_BIN + CLI_AUGGIE_BIN (base-red from #5972 auggie) --------- Co-authored-by: zocomputer <help@zocomputer.com> * refactor(combo): extract buildTargetTimeoutRunner from handleComboChat (#6036) Bloco J (hot-path decomposition), Task 1. Extract the per-target-timeout dispatch wrapper (handleComboChat's handleSingleModelWithTimeout closure) verbatim into the leaf combo/targetTimeoutRunner.ts as a factory buildTargetTimeoutRunner({handleSingleModel, comboTargetTimeoutMs, log}). The per-model abort still comes from target.modelAbortSignal, so the outer request signal is intentionally not a dependency. Host call-sites unchanged. combo.ts shrinks ~60 LOC; leaf is 91 LOC (<800). Body byte-identical (verbatim), no cycle. This is the first slice toward extracting the shared attempt-loop/success/error handlers (Tasks 3-4) that de-duplicate handleComboChat and handleRoundRobinCombo. Adds a dedicated test (5) so the failover path can be mutated independently. Consumer tests stay green (combo-strategy-fallbacks 24, combo-499-abort 5, empty-content-failover 3, body-400-stop 1, priority-quota-exhaustion 2, rr-streaming-lock 1, rr-session-stickiness 2). Plan: _tasks/superpowers/plans/2026-07-03-blocoJ-combo-hotpath-decomposition.md * feat(cli-tools): add CodeWhale CLI tool (#5996) CodeWhale (https://github.com/Hmbown/CodeWhale) is the actively-maintained successor to DeepSeek TUI — same author, renamed project. Added as a dual entry alongside the existing "deepseek-tui" catalog entry (rather than a hard rename) so users who still run the old DeepSeek TUI binary keep a working dashboard card, while new users are steered to "codewhale". New /api/cli-tools/codewhale-settings route writes the primary ~/.codewhale/config.toml and keeps an existing legacy ~/.deepseek/config.toml in sync (read fallback + best-effort write sync), mirroring deepseek-tui-settings/route.ts. CLI_TOOLS and cliRuntime catalogs updated; catalog cardinality tests/constants bumped accordingly (18→19 visible code tools, 28→29 total). Inspired-by: https://github.com/decolua/9router/pull/1761 Co-authored-by: aristorinjuang <aristorinjuang@gmail.com> * feat(i18n): auto-detect browser language on first visit (#5979) * feat(i18n): auto-detect browser language on first visit Adds a pure detectBrowserLocale() matcher (exact match, zh-HK/zh-MO folded to zh-TW, language-prefix match, else null) plus a client-only LocaleAutoDetect component mounted once in the root layout. On first visit (no locale cookie set), it reads navigator.languages, computes a match against the supported locales, and persists it via the same cookie/localStorage writer LanguageSelector already used for manual selection (now extracted to shared/lib/persistLocale.ts) before refreshing the router. Co-authored-by: anmingwei <anmingwei@dobest.com> Inspired-by: https://github.com/decolua/9router/pull/1324 * chore(changelog): restore release entries + add browser-lang-detect bullet --------- Co-authored-by: anmingwei <anmingwei@dobest.com> * fix(dashboard): render Update-now API errors as text, not the raw envelope object (#5991) (#6028) Integrated into release/v3.8.44 — fix(dashboard) render Update-now API errors as text, not the raw envelope object (#5991). Merged with --admin: the fix is a one-line frontend change funneling the error body through the already-tested extractApiErrorMessage() helper, guarded by tests/unit/ui/home-update-error-render-5991.test.ts (3/3 pass, 3/3 fail on pre-fix source). The release branch is under a heavy parallel-merge storm (tip advanced ~6× mid-CI), so the branch is synced to the latest tip and landed atomically to avoid perpetual CONFLICTING; unit-shard reds seen earlier were pre-existing base-reds/flakes unrelated to this source-scan-only change. * feat(api): expose provider plugin manifest (#6001) * feat(api): expose provider plugin manifest * test(translator): split responses chat request coverage * test(mutation): register provider coverage tests * feat(api): expose provider plugin manifest * fix(ci): fail closed for prerelease latest promotion * chore(ci): reconcile provider manifest complexity gate * feat(api): expose provider plugin manifest * test(translator): split responses chat request coverage * test(mutation): register provider coverage tests * fix(ci): fail closed for prerelease latest promotion * chore: rebase onto release tip; drop out-of-scope translator test split + promote-script tweak Co-authored-by: diegosouzapw <diegosouza.pw@gmail.com> * docs(changelog): add provider plugin manifest entry Co-authored-by: diegosouzapw <diegosouza.pw@gmail.com> * chore(stryker): register account-fallback-retry-after-json test (base-red) Co-authored-by: diegosouzapw <diegosouza.pw@gmail.com> --------- Co-authored-by: kooshapari <kooshapari@users.noreply.github.com> Co-authored-by: Diego Rodrigues de Sa e Souza <diegosouza.pw@outlook.com> Co-authored-by: diegosouzapw <diegosouza.pw@gmail.com> * feat(providers): add CN sign-up geo-restriction notices for SenseNova & StepFun (#5462) * feat(sidecar): advertise provider manifest url (#6007) * feat(sidecar): advertise provider manifest url via X-OmniRoute-Provider-Manifest-Url header Re-cut onto release tip: manifest-url feature only (dropped stale-base noise). Co-authored-by: diegosouzapw <diegosouza.pw@gmail.com> * docs(changelog): add sidecar manifest-url entry Co-authored-by: diegosouzapw <diegosouza.pw@gmail.com> * chore(complexity): rebaseline 2009->2015 (inherited release-tip drift; feature adds 0) Co-authored-by: diegosouzapw <diegosouza.pw@gmail.com> --------- Co-authored-by: KooshaPari <KooshaPari@users.noreply.github.com> Co-authored-by: diegosouzapw <diegosouza.pw@gmail.com> * feat(autoCombo): latency/speed-optimized routing mode + omniroute_pick_fastest_model MCP tool (#6011) * feat(autoCombo): latency/speed-optimized routing mode + omniroute_pick_fastest_model MCP tool * test(translator): split responses chat request coverage * refactor(mcp): extract fastest-model tool modules * fix(i18n): cover provider icon and cors labels * test(mutation): register latency coverage files * test(ci): collect executor unit tests * refactor(ci): reduce latency path complexity * fix(mcp): include models catalog module * feat(autoCombo): latency/speed-optimized routing + omniroute_pick_fastest_model MCP tool Re-cut onto release tip: keep speed-routing + MCP tool + supporting catalog split; drop out-of-scope translator split, en.json/ci.yml/package.json orphans, and unrelated proxyFetch/responsesStreamHelpers/tokenLimitCounter refactors. Co-authored-by: diegosouzapw <diegosouza.pw@gmail.com> --------- Co-authored-by: kooshapari <kooshapari@users.noreply.github.com> Co-authored-by: Diego Rodrigues de Sa e Souza <diegosouza.pw@outlook.com> Co-authored-by: diegosouzapw <diegosouza.pw@gmail.com> * docs(changelog): restore #5181/#5199/#5462 feature bullets eaten by merge * feat(usage): on-demand period-scoped usage-data reset (re-cut onto release tip) (#5831) * chore(quality): rebaseline eslintWarnings 4199->4256 + cognitiveComplexity 860->861 (v3.8.44 cycle drift) Inherited v3.8.44 cycle drift measured on release tip72ee80649by the release-green pre-flight during the /review-prs fix-batch round. The Quality Ratchet does NOT run on PR->release fast-gates, so eslint warnings + cognitive complexity accrue unmeasured across the cycle. Cyclomatic complexity is already green (2012 < baseline 2015) and needs no bump. Each value carries a dated justification note; no production code touched. * feat(claude-code): opt-in auto-permission classifier compat mode (re-cut onto release tip) (#5810) * feat(providers): client-identity header profiles for compatible nodes (re-cut) + forbid cookie in custom headers (#5812) * docs(openapi): document 9 newly-added routes to restore coverage ratchet (v3.8.44) Documents the routes added this cycle that dropped openapiCoverage 36.9%->36.2% below the ratchet baseline: 2 public v1 endpoints (/v1/ocr Mistral-OCR-compatible, /v1/audio/translations Whisper-compatible) with full request/response specs, plus 7 dashboard/CLI-local routes marked x-internal:true (suggested-models, provider-plugin- manifest, keys/{id}/devices, settings/purge-usage-history, oauth/codex/import-token, cli-tools crush-settings + codewhale-settings). Coverage 36.2%->37.8% (207/547), above baseline 36.9. check:openapi-routes/security-tiers/fabricated-docs all pass. * refactor(sse): decompose handleComboChat auto-strategy region (Block J Task 2 — parseAutoConfig + resolveAutoStrategyOrder) (#6049) * refactor(sse): extract pure parseAutoConfig leaf from handleComboChat Block J Task 2 (safe slice): the auto-strategy config-resolution block in handleComboChat is a pure function of (combo, eligibleTargets) with no side effects, no early returns and no mutation. Extract it verbatim into open-sse/services/combo/autoConfig.ts::parseAutoConfig so the god-function shrinks and the derivation is independently unit-testable. Behavior is byte-identical (verbatim-audited); combo.ts 3309->3280 LOC. Adds tests/unit/combo-auto-config-split.test.ts (5 cases) pinning the strategy-precedence, candidate-pool, weights and fallback derivations. * refactor(sse): extract resolveAutoStrategyOrder leaf from handleComboChat Block J Task 2 (coupled slice): the ~215-line `if (strategy === "auto")` branch of handleComboChat is extracted into open-sse/services/combo/resolveAutoStrategy.ts::resolveAutoStrategyOrder. The branch is a control-flow region (mutates orderedTargets + autoUsedExplicitRouter, early-returns 429, side-effect _registerExecutionCandidates), so it is not a pure byte-identical move: the two `return unavailableResponse(...)` exits become `{ earlyResponse }` and the mutated locals are returned instead of closed over. Every other logic line is verbatim (semantic diff = only those wrappers + the deeper getLKGP import path). `buildAutoCandidates` lives in combo.ts, so it is injected via deps to keep the leaf acyclic (same DI pattern as buildTargetTimeoutRunner) — which also makes the branch independently testable. combo.ts 3280->3065 LOC. typecheck:core + check:cycles clean; dead host imports removed. 60/60 consumer tests (router-strategies / auto-combo-engine / combo-strategy-fallbacks / scoring-clamp / candidate-expansion / hidden-models) cover the routable path end-to-end; new tests/unit/combo-resolve-auto-strategy-split.test.ts pins the DI contract + the early-429 and default-ordering exits. * test(sse): point quota-bypass source scan at resolveAutoStrategy leaf The 'auto combo disables hard provider quota cutoffs when relay requests bypass' source scan asserted combo.ts contains the bypass logic (relayOptions?.bypassProviderQuotaPolicy === true + quotaPreflight enabled:false). That block was extracted verbatim into combo/resolveAutoStrategy.ts (Block J Task 2), so the scan now reads the leaf. Behavior unchanged. * fix(ci): release-green base-reds — #5695 test regex + file-size rebaseline (#6093) - tests/unit/ui/quick-start-api-keys-link-5695.test.ts: tolerate Prettier splitting <Link href=...> across lines (\s+) so the step1Desc regex matches the multi-line /dashboard/api-manager Link instead of skipping to step2's single-line /dashboard/providers Link. Code is correct; the test was brittle. - config/quality/file-size-baseline.json: rebaseline 5 files that grew via already-merged PRs on the release tip (ApiManagerPageClient 3017->3058, OAuthModal 969->989, cliRuntime 1090->1100, webProvidersA 805->809, deepseek-web.test 1081->1092). Dated note added; shrink tracked in #3501. * fix(translator): wrap Kiro system prompt in <system-reminder> (port from 9router#2306) (#6053) Kiro/CodeWhisperer has no system role, so system messages were normalized to a user turn with no wrapper — the full Claude Code system prompt then appeared as raw user text, polluting the model context. Wrap system-origin content in <system-reminder> tags before merging it into the Kiro user message. Real user turns are unaffected. Existing history-merge tests aligned to the wrapped value. Reported-by: VitzS7 (https://github.com/decolua/9router/issues/2306) * fix(translator): strip multipleOf from antigravity/gemini tool schemas (port from 9router#2309) (#6052) `multipleOf` is not part of the Gemini/antigravity OpenAPI 3.0 schema subset, so leaving it in function_declaration parameters triggered a hard upstream 400 ("Unknown name multipleOf"). Add it to GEMINI_UNSUPPORTED_SCHEMA_KEYS so it is stripped at every schema level; minimum/maximum stay (Gemini accepts them). Reported-by: abil0321 (https://github.com/decolua/9router/issues/2309) * fix(kimi-web, qwen-web): align model catalog with live /models + map scenario per model (#5915) * fix(kimi-web): align catalog with live models Update the kimi-web catalog and request scenario selection to match www.kimi.com's live GetAvailableModels response. * fix(qwen-web): stop aliasing qwen3-coder-plus Keep qwen3-coder-plus as its own model because it is present in the live Qwen web models catalog. * feat(minimax): extract M3 <think> to reasoning_content on OpenAI-format tiers (#6050) MiniMax M3 is registered with format:"openai" on 8 provider tiers (trae, huggingchat, bazaarlink, ollama-cloud, opencode, cline, opencode-zen, codebuddy-cn), where its raw <think>...</think> tags leaked directly into `content` instead of surfacing as a separate `reasoning_content` field. OmniRoute already has the extraction primitive (extractThinkingFromContent in responseSanitizer/reasoning.ts); it was just gated to deepseek-r1/r1-distill/qwq. Extend the allowlist (isTextualReasoningTagNativeRoute) with a minimax-m3-only pattern, excluding the two direct minimax/minimax-cn tiers, which stay on Anthropic's Messages format (targetFormat: "claude") and already surface reasoning natively. Inspired-by: https://github.com/decolua/9router/pull/2231 Co-authored-by: Diego Rodrigues de Sa e Souza <diegosouza.pw@gmail.com> Co-authored-by: zmf963 <19422469+zmf963@users.noreply.github.com> * fix: unwrap Cline response envelope (#6046) Co-authored-by: KooshaPari <KooshaPari@users.noreply.github.com> * refactor(sse): extract applyStrategyOrdering leaf from handleComboChat (Block J Task 3) (#6063) * refactor(sse): extract applyStrategyOrdering leaf from handleComboChat Block J Task 3: the ~177-line else-if chain covering every non-auto combo strategy (lkgp / strict-random / random / fill-first / p2c / least-used / cost-optimized / reset-aware / reset-window / context-optimized / headroom / quota-share) is extracted into open-sse/services/combo/applyStrategyOrdering.ts::applyStrategyOrdering. Each branch only reorders orderedTargets (no early returns, no other mutable state), so the extraction is a clean verbatim move returning the reordered list; the host replaces the chain with `else { orderedTargets = await applyStrategyOrdering(strategy, orderedTargets, deps); }`. Semantic diff vs the original chain = only the leading `if` (was `} else if`), the trailing return and the deeper getLKGP import path — no logic line changed. None of the 13 strategy helpers live in combo.ts, so no DI/cycle (unlike the auto branch). combo.ts 3065->2883 LOC (3309->2883 across Task 2+3). typecheck:core + check:cycles clean; 9 dead host imports removed (targetSorters block emptied). 47/47 consumer tests (router-strategies / combo-strategy-fallbacks / rr-session-stickiness / tag-routing) cover the DB-backed branches end-to-end; new tests/unit/combo-apply-strategy-ordering-split.test.ts pins random / fill-first / unknown exits. * test(sse): point #2359 modelStr-guard scans at applyStrategyOrdering leaf The LKGP fallback + non-auto strategy ordering (the two target.modelStr string- method call sites) were extracted verbatim from combo.ts into the applyStrategyOrdering leaf (Block J Task 3). The #2359 source scans now read the leaf that owns those usages; the guard and the no-unguarded-usage assertions are unchanged in intent. * chore(ci): scan combo strategy leaves in check:known-symbols Block J decomposed the combo dispatch: the `strategy === "..."` branches for the 12 non-auto strategies moved to combo/applyStrategyOrdering.ts and the auto branch to combo/resolveAutoStrategy.ts. The known-symbols gate previously scanned only combo.ts, so it would report those strategies as canonicalNotHandled. Scan all three dispatch files. Verified: 18/18 canonical strategies via dispatch. * fix(combo): fallback to sibling model on 500 for per-model-quota providers (#5976) * fix(combo): fallback to sibling model on 500 for per-model-quota providers Two issues prevented combo fallback when gemini/gemma-4-31b-it returned 500: 1. targetExhaustion: connection-level exhaustion marked the shared gemini connection as exhausted, skipping the sibling model (gemma-4-26b-a4b-it). Skip markConnectionLevelExhaustion for per-model-quota providers (gemini, github, passthrough, compatible) since a model-level 500 does not mean the connection is bad. 2. combo retry loop: the auth layer records a model lockout on 500, but the retry loop did not check isModelLocked before retrying — it retried the same locked model instead of falling back. Add isModelLocked guard before the transient-retry decision. * fix tests timeout * fix: clear quota fallback CI gates * quality-gate: extract test SSE stream helpers * drop scope creep * fix(combo): retry sibling models only on 500 errors * fix(combo): reconcile onto release/v3.8.44 — keep targetExhaustion 500 fix, drop slow integration test Reconciled by maintainer onto the current release tip: - kept the core fix (targetExhaustion.ts model-500 guard for per-model-quota providers + the isModelLocked retry early-return in combo.ts) and its unit test - dropped tests/integration/combo-concurrent-failure-recovery.test.ts + _sseTestHelpers.ts: they use Math.random()-based delays and 30s timeouts, run >3min and are flake-prone in the test:integration CI job; the unit test (tests/unit/combo/combo-target-exhaustion.test.ts, 21 cases) fully covers the fix - CHANGELOG entry added Co-authored-by: diegosouzapw <diegosouza.pw@gmail.com> --------- Co-authored-by: Koosha Pari <kooshapari@gmail.com> Co-authored-by: Diego Rodrigues de Sa e Souza <diegosouza.pw@outlook.com> Co-authored-by: hartmark <hartmark@users.noreply.github.com> Co-authored-by: diegosouzapw <diegosouza.pw@gmail.com> * feat(xai): surface Grok usage on quota dashboard via local usageHistory aggregation (#5806) xAI has no public per-account quota API (the billing console requires a session cookie, not an API key). Add getXaiUsage(connectionId), mirroring the existing Xiaomi MiMo self-track pattern: sum tokens routed to the connection from usage_history via getMonthlyProviderTokensForConnection and surface them as a cumulative, uncapped quota (unlimited: true, remaining: 100 — xAI has no fixed monthly cap). Register 'xai' in USAGE_FETCHER_PROVIDERS and wire a switch case in getUsageForProvider. Inspired-by: https://github.com/decolua/9router/pull/2150 Co-authored-by: ron <devestacion@gmail.com> * feat(services): add Mux managed embedded service (#6034) Adds Mux (coder/mux — local agent-orchestration daemon) as a fourth-tier embedded service built on the existing ServiceSupervisor framework, the same shape as 9Router and CLIProxyAPI: - Installer (src/lib/services/installers/mux.ts): npm install/update via runNpm (array args + env-based prefix, no shell interpolation), modeled on ninerouter.ts. Mux ships an npm package (`mux`) with a documented headless `mux server --host <host> --port <port>` mode, so no git-clone+build path was needed. - Registered in bootstrap.ts (SERVICES[] + buildSpawnArgsFactory). - DB seed migration 113 (version_manager row, not_installed/auto_start=0). - 7 API endpoints under /api/services/mux/ (install/start/stop/restart/ update/status/auto-start) plus the shared [name]/logs SSE endpoint, mirroring the cliproxy route shape and delegating errors through createErrorResponse(). - Dashboard tab (MuxServiceTab) reusing ServiceStatusCard, ServiceLifecycleButtons, AutoStartToggle, ServiceLogsPanel. - Docs: EMBEDDED-SERVICES.md (service table, architecture diagram, API reference, key-injection section), openapi.yaml, ENVIRONMENT.md, .env.example. Security: - Every /api/services/mux/* route is covered by the existing LOCAL_ONLY_API_PREFIXES "/api/services/" prefix (Hard Rule #17); added an explicit isLocalOnlyPath regression test for all 8 routes. - Mux binds to 127.0.0.1 explicitly (never 0.0.0.0) as defense-in-depth, since it orchestrates AI agents that can execute host commands. - The bearer token is generated the same way as 9Router's key (getOrCreateApiKey) and injected via MUX_SERVER_AUTH_TOKEN (mux's documented env form) rather than a CLI flag, so it never appears in `ps`/process listings. - No shell interpolation anywhere in the installer (Hard Rule #13): all npm/spawn args are static arrays; the install prefix and auth token travel via the env option. Inspired-by: https://github.com/decolua/9router/pull/1802 Co-authored-by: Ansh7473 <Ansh7473@users.noreply.github.com> * feat(services): promote Bifrost to embedded/supervised service (#5670) (#5817) Promotes Bifrost (@maximhq/bifrost — Go AI-gateway) from an env-only relay sidecar to a first-class embedded/supervised service, matching the existing cliproxy/9router model. Implements item #2 of #5670; the broader RouterBackend contract (items #1, #3-#5) stays out of scope. - Installer (npm-style, ninerouter model): install/update/getInstalledVersion/ getLatestVersion (1h cache)/resolveSpawnArgs (Go single-dash flags, pinned BIFROST_TRANSPORT_VERSION), needsApiKey=false - Bootstrap SERVICES entry (healthPath /v1/models) + spawn-args factory branch - Migration 113 seeds the version_manager row (not_installed, port 8080, auto_update=1, provider_expose=1) - 7 lifecycle API routes under /api/services/bifrost/ (verbatim from cliproxy, errors sanitized) — loopback-only via existing LOCAL_ONLY_API_PREFIXES - Shared [name]/logs branch for bifrost - Dashboard tab + registration in the services page shell - Relay auto-wiring: getBifrostRoutingConfig defaults BIFROST_BASE_URL to the supervised port when the instance is running; explicit env still wins; the env-only relay path (/v1/relay/.../bifrost) stays unchanged (compat layer) - Docs (EMBEDDED-SERVICES, openapi) + unit tests (installer/route-guard/routing, 19 tests) + RUN_SERVICES_INT-gated integration lifecycle Note: the actual Go-binary install/start/health path requires a documented VPS live-test before merge (Hard Rule #18 / spec section 7); the gated integration harness is the vehicle for that run. * fix(ci): document BIFROST_PORT to clear env-doc-sync base-red The Bifrost embedded-service merge referenced process.env.BIFROST_PORT (src/lib/services/bootstrap.ts, default 8080) without adding it to .env.example / ENVIRONMENT.md, so check:env-doc-sync failed on the release tip and reddened Fast Quality Gates for every open PR->release. Docs-only. * fix(providers): emulate OpenAI tool_calls in GitLab Duo executor (#6051) (#6111) Co-authored-by: felssxs <felssxs@users.noreply.github.com> * fix(providers): strip orphan tool_result on Antigravity MITM path (#6026) (#6115) * fix(registry): update grok-cli model context lengths (#5913) grok-build 128k→256k, grok-composer-2.5-fast 128k→200k to match actual Grok CLI /context capacities so context-aware routing stops filtering these models out. Registry-only. Co-authored-by: diegosouzapw <diegosouza.pw@gmail.com> * feat(proxy): batch delete, auto-test, health scheduler + transitive alias fix (#5918) Proxy-registry batch management (batch-delete, auto-test, background health scheduler) + fix resolveProviderAlias to follow the alias chain transitively (oc -> opencode -> opencode-zen). Probe target now operator-configurable via PROXY_HEALTH_TEST_URL. Scope-creep files from the original branch dropped. Co-authored-by: diegosouzapw <diegosouza.pw@gmail.com> * feat(minimax): extract M3 reasoning_content on OpenAI-format tiers (#6073) MiniMax M3 leaks raw <think>...</think> into content on 8 OpenAI-format provider tiers; extract it into reasoning_content, leaving the direct minimax/minimax-cn (Claude-format) tiers untouched. Replacement for the stale #5804 branch. Co-authored-by: diegosouzapw <diegosouza.pw@gmail.com> * fix(ci): harden provider translate-path golden across CI runners (#6076) Normalize OS/arch-derived request headers (X-Stainless-Os/Arch, (OS;arch) UAs, and Antigravity's os.platform()-derived platform substring) in the golden so the test is runner-independent. Fixes the Mac-literal Antigravity UA that would have failed on Linux CI. Supersedes stale #6002. Co-authored-by: diegosouzapw <diegosouza.pw@gmail.com> * test(embeddings): pin seeded connection to direct egress in route-edge-coverage (#5975 collateral) #5975 made the embeddings service honor the connection-level proxy. The pre-existing route-edge-coverage embeddings edge-case tests seed an openai connection while the settings-proxy suite has left a provider-level proxy (provider.local:8080) in the shared DATA_DIR that resetStorage() does not clear — inert before #5975, but now the leaked proxy fast-fails the embedding upstream with PROXY_UNREACHABLE. These tests do not exercise proxying, so seedOpenAIConnection now pins the connection to proxyEnabled:false, making resolveProxyForConnection return a direct egress regardless of leaked global proxyConfig. No assertions weakened; 16/16 in the file pass. Regression surfaced by the concurrency=1 full-suite run; passes on #5975's parent, red after it. * fix(config): externalize ws for copilot-m365-web executor (#6130, closes #6062) Re-lands the #6098 ws-externalization fix onto release/v3.8.44 (it had merged to main by mistake and was reverted). Externalize ws/bufferutil/utf-8-validate so the copilot-m365-web WebSocket masking path works at runtime. Co-authored-by: diegosouzapw <diegosouza.pw@gmail.com> * fix(providers): update Perplexity Web models (#6106) Refresh the Perplexity Web model catalog + mode/model_preference mappings to the current live set. Regression guard: perplexity-web.test.ts. Co-authored-by: diegosouzapw <diegosouza.pw@gmail.com> * fix(providers): update Gemini Web cookies and models (#6095) Refresh Gemini Web cookie handling + model catalog. Regression guard: gemini-web.test.ts. Co-authored-by: diegosouzapw <diegosouza.pw@gmail.com> * fix(models): normalize GLM-5.2 provider context (#6091) Hosted GLM-5.2 provider aliases now respect their declared context caps instead of inheriting the native 1M; native/bare + verified OpenCode/ZenMux routes stay at 1M. Regression guards added. Co-authored-by: diegosouzapw <diegosouza.pw@gmail.com> * fix(combo): prefer known context capacity over unknown (#6088) When a combo filters a target for exceeding a known context limit, prefer remaining known-compatible targets over unknown-metadata ones. Regression guard: combo-context-window-filter.test.ts. Co-authored-by: diegosouzapw <diegosouza.pw@gmail.com> * fix: keep Claude tool results adjacent (#6035) Reattach OpenAI tool_result adjacent to tool_use before Claude send (#6026). Integrated into release/v3.8.44. * fix(security): persist IP filter config + enforce it in the authz pipeline (#6131) (#6132) Integrated into release/v3.8.44 — IP filter persistence + authz-pipeline enforcement (closes #6131). HARD-neutro: validate-release-green on the merge shows the same 3 pre-existing base-reds as the release baseline (test-masking cycle-wide, unit red-herring, integration batch-E2E env); #6131's own tests + ip-filter/pipeline suites all green. * fix(codex): use access_token.exp instead of id_token.exp for import expiresAt (#6075) (#6084) Prefer access_token.exp over id_token.exp for Codex auth import (#6075). Integrated into release/v3.8.44. * fix(compression): send patch-only to PUT /api/settings/compression in CompressionHub (#6039) (#6077) Send patch-only to PUT /api/settings/compression in CompressionHub (#6039). Integrated into release/v3.8.44. * fix: reqId ReferenceError in safety-net redirect, dead code, filename typo (#6097) Fix reqId ReferenceError in safety-net combo redirect + dead-code + DESING→DESIGN rename. Integrated into release/v3.8.44. * fix(combo): expand fingerprint-based providers into per-fingerprint combo targets (#6082) Expand fingerprint-based providers into per-fingerprint combo targets. Integrated into release/v3.8.44. * fix(auth): persist quota preflight account lockouts (#6090) Persist quota preflight account lockouts until reset window. Integrated into release/v3.8.44. * fix(combos): expand OpenCode/MiMo fingerprint accounts in combo builder (#6087) (#6092) Expand OpenCode/MiMo fingerprint accounts in combo builder (#6087). Integrated into release/v3.8.44. * chore(quality): rebaseline v3.8.44 release-green drift (eslint/cognitive/cyclomatic/file-size) Measured on release tip32e4c906eduring the #6131/#5975 release-green pass: eslintWarnings 4256->4270 (+14), cognitiveComplexity 861->867 (+6), cyclomatic count 2015->2026 (+11), and testFrozen caps for models-catalog-route (1507->1600), perplexity-web (959->999), route-edge-coverage (1234->1241, my #5975 comment +7). Inherited cycle drift (the Quality Ratchet does not run on PR->release fast-gates); compression 'bun not found' is a local-env false and codeql is within baseline, so neither is rebaselined. No production code touched. * fix(accountFallback): persist per-account 429 cascade + classify 'Monthly usage limit. Resets in N days.' (#6061) Persist per-account 429 cascade + classify 'Monthly usage limit. Resets in N days'. Integrated into release/v3.8.44. * feat(build): backend-only fast build (skip the dashboard frontend) (#6119) Backend-only fast build (skip dashboard frontend). Integrated into release/v3.8.44. * fix(provider-limits): clear transient rate-limit state when quota recovers (#6128) Clear transient rate-limit state when quota recovers. Integrated into release/v3.8.44. * docs: Normalize mixed-language documentation content (#6105) Normalize mixed-language documentation to English. Integrated into release/v3.8.44. * chore docs * i18n(zh-CN): translate CHANGELOG entries and section headings (#6043) Adopt zh-CN as a translated locale: translate CHANGELOG + supporting docs. Integrated into release/v3.8.44. * chore(quality): rebaseline residual eslint + file-size drift (v3.8.44) Residual drift on release tip716041223(moving target): eslintWarnings 4270->4279 (+9 as the branch advanced past the prior rebaseline) and testFrozen/frozen file-size caps for providerLimits.ts (955->982), accountFallback.ts (1790->1864) and sse-auth.test.ts (1553->1600). All inherited from parallel-session merges (e.g. #6128); the two production god-files ideally warrant decomposition rather than a bump (tracked as debt). No production code touched. * fix(repo): remove Windows case-conflicting DESIGN duplicate (#6140) Remove stale root DESIGN.md (Windows case-conflict with design.md). Integrated into release/v3.8.44. * fix(provider-limits): close TOCTOU race in quota recovery clear (I2) (#6139) Close TOCTOU race in quota recovery clear via CAS primitive (I2 from #6128). Integrated into release/v3.8.44. * fix(glm): suppress </think> close marker leak in GLM Anthropic transport (#6133) Suppress </think> close-marker leak in GLM Anthropic transport. Integrated into release/v3.8.44. * fix(cli): give setup-claude a fallback profile generator like setup-codex (#6138) Give setup-claude a fallback profile generator like setup-codex. Integrated into release/v3.8.44. * fix(onboarding): route provider-details link by node id, not provider slug (#6145) (#6145) Route onboarding provider-details link by node id (#6145). Integrated into release/v3.8.44. * fix(translator): strip Responses-only truncation field before Chat Completions forwarding (#6109) Strip Responses-only truncation field before Chat Completions forwarding (#2311). Integrated into release/v3.8.44. * fix(mitm): guard against concurrent MITM server starts (#6107) Guard against concurrent MITM server starts (#2316). Integrated into release/v3.8.44. * feat(models): add claude-sonnet-5 to Antigravity catalog (#6103) Add claude-sonnet-5 to Antigravity catalog. Integrated into release/v3.8.44. * fix(providers): strip thinking param for minimax-m2.7 on NVIDIA NIM (#6102) Strip unsupported thinking param for minimax-m2.7 on NVIDIA NIM. Integrated into release/v3.8.44. * feat(providers): add Kenari OpenAI-compatible gateway (#6104) Add Kenari OpenAI-compatible gateway (BYOK). Integrated into release/v3.8.44. * feat(sse): per-request Auto-Combo controls (X-OmniRoute-Mode / X-OmniRoute-Budget) — closes #6023 #6024 #6025 (#6057) Per-request Auto-Combo controls (X-OmniRoute-Mode / X-OmniRoute-Budget). Integrated into release/v3.8.44. * feat(resilience): throttle concurrent upstream quota fetches — closes #6009 (#6058) Throttle concurrent upstream quota fetches (#6009). Integrated into release/v3.8.44. * fix(oauth): graceful 400 for keychain-import-only providers (zed) (#6041) (#6054) Graceful 400 for keychain-import-only providers on OAuth route (zed, #6041). Integrated into release/v3.8.44. * fix(dashboard): resolve broken Card import breaking next build (base-red from #6061) (#6155) * fix(dashboard): resolve broken Card import breaking next build (base-red from #6061) CoolingConnectionsPanel imported `Card` from `@/components/ui/card`, a path that does not exist in this repo (there is no shadcn-style `src/components/ui/`). The PR->release fast-gates do not run `next build`, so the broken import slipped in and `next build` failed with: Module not found: Can't resolve '@/components/ui/card' Fix: the <Card> here was only a styled container, so replace it with a <div> carrying the equivalent Tailwind classes (border/bg/padding + rounded-card shadow-sm). Also normalize the file from CRLF to LF (it shipped with CRLF). Adds a vitest/jsdom regression test (tests/unit/ui/CoolingConnectionsPanel.test.tsx) that fails-without-fix (Vite: 'Failed to resolve import @/components/ui/card') and passes with it, plus renders/empty-state coverage. Rule #18. * fix(dashboard): stop client CoolingConnectionsPanel dragging server DB barrel into browser bundle Second base-red from #6061, surfaced once the broken Card import was fixed: ./node_modules/ioredis/built/connectors/StandaloneConnector.js Module not found: Can't resolve 'net' Import trace: ioredis <- rateLimiter.ts <- apiKeys.ts <- @/lib/localDb <- CoolingConnectionsPanel.tsx (a "use client" component) The client panel imported `formatResetCountdown` from `@/lib/localDb` — the server-side DB re-export barrel — which transitively pulls better-sqlite3/ioredis (node:net) into the browser bundle. That violates the CLAUDE.md rule 'never barrel-import from localDb'. `formatResetCountdown` is a pure date-formatting function, so move its implementation to the client-safe `@/shared/utils/formatting` (alongside formatTime/formatDuration) and re-export it from db/providers/rateLimit.ts for the existing server callers + barrel. The panel now imports it directly from the shared util — no server code in the client bundle. Tests (Rule #18): - tests/unit/format-reset-countdown.test.ts (node:test, blocking test:unit) — pure-function coverage: null/past/invalid, s, m+s, h+m, ISO string. - tests/unit/ui/CoolingConnectionsPanel.test.tsx mock updated to the new module. * fix(release): v3.8.44 Phase-0 pre-flight — base-red sweep + ratchet absorption - fix(models): stop resolveProviderAlias at registered provider ids so oc/ reaches the no-auth opencode provider again (#2901 contract, regressed by #5918's transitive chain; transitivity kept across alias-only hops) - fix(auggie): handle async EPIPE 'error' events on child stdin so a fast-exiting CLI surfaces a sanitized error instead of crashing (both spawn sites); deflakes auggie-executor tests - test: align provider family count 166->167 (Kenari #6104), regenerate translate-path golden on Linux (+kenari), opencode quota scope provider->connection (#6061) - quality(test-masking): add _deletedWithReplacement allowlist support to check-test-masking.mjs (deletion exempt ONLY when the declared replacement test exists in HEAD; 5 new gate unit tests) + reduction allowlist entries for the verified #5958/#6088/#5816 migrations + targetExhaustion-> combo-target-exhaustion replacement (#5976, 21 cases/52 asserts vs 13/37) - quality(file-size): absorb v3.8.44 cycle drift (oauth route 960, providerLimits 998, chat 1662, auth 2426) with justification; #6158 will restore the oauth-route freeze - changelog: bullets for the above + the #6155 cooling-panel build fix * chore(release): v3.8.44 — 2026-07-04 Release reconciliation + close (generate-release Phases 0a/1): - CHANGELOG [3.8.44]: 21 PR refs added to existing bullets, 62 new bullets (incl. restoration of ~10 bullets erased by the stale-branch merge in1f6ec5bc8), 3 Maintenance rollups, #6061/#6130 credit fixes, 🙌 Contributors table (35 external contributors) — coverage 144/153 cycle commits by #ref - 42 docs/i18n CHANGELOG mirrors synced (EN content; i18n workflow translates) - README: What's New refreshed for v3.8.44 highlights - build scope: exclude electron/node_modules + electron/dist-electron + .build from tsconfig (local build-output leak poisoned next build with 8GB OOM — same class as the 2026-06-25 incident; scope 14765→5207, gate green) - quality: cyclomatic baseline 2026→2028 (+2 inherited end-of-cycle drift; verified the release-captain code fixes add 0 new violations) * fix(release): v3.8.44 one-pass release-PR CI sweep - fix(dashboard): /dashboard/system/proxy 500'd on EVERY render — #5918 put useProxyBatchOperations(load) before the const load declaration (TDZ ReferenceError, digest 539380095). Hook block moved after load; SSR renderToString regression test added (the exact crash mode). - fix(server): TRACE/TRACK/CONNECT crashed Next's middleware adapter (undici cannot represent them) into a raw 500 on every route — the raw HTTP method guard now answers 405 + Allow up-front (dast-smoke Schemathesis finding on /api/keys/{id}/devices); guard test added. - fix(api): restore Zod validation on the provider-scoped chat route via a .passthrough() schema preserving #5907's relaxed semantics (t06 gate). - docs(openapi): /api/keys/{id}/devices 401 now refs the management error envelope (Schemathesis schema-conformance). - quality: rebaseline i18nUiCoverage 77.5->76.8 (+~1352 new en.json UI keys from the cycle await the async translation workflow; v3.8.39 precedent). - CodeQL: dismissed 2 incomplete-url-substring FPs on unit-test asserts (v3.8.35 precedent) with Hard Rule #14 justifications. - changelog: bullets for the above + 42 i18n mirrors re-synced * fix(release): round-2 CI findings — LocaleAutoDetect refresh gating + ratchet tighten - fix(i18n): LocaleAutoDetect (#5979) refreshed the router on EVERY cookie-less first visit, even when the detected locale matched the server-rendered <html lang> — re-navigating mid-interaction (flaky e2e 'execution context destroyed' + visible flash for new visitors). Refresh now only fires when the locale actually differs; regression test added. - quality: tighten openapiCoverage.pct 36.9->39.3 (require-tighten gate on the release PR; value measured by the CI Quality Ratchet on00c55afcb) - quality(file-size): shrink the ProxyRegistryManager TDZ note to fit the 1117-line freeze (prettier reflow added a line at commit time) - changelog bullet + 42 i18n mirrors re-synced * test(release): collect the #6082 fingerprint-expansion ghost test check:test-discovery (Lint job, layered behind the round-1 t06 fix) flagged tests/e2e/fingerprint-expansion.test.ts as a NEW orphan — it is a node:test server-boot test that no runner collected, so it had never run. Moved to tests/integration/ (the collector for this shape), fixed the helper import, and verified it actually passes (3/3 on first-ever run). CHANGELOG ref updated. --------- Co-authored-by: Chirag Singhal <76880977+chirag127@users.noreply.github.com> Co-authored-by: Hamsa_M <116961508+hamsa0x7@users.noreply.github.com> Co-authored-by: Chewji <126886556+Chewji9875@users.noreply.github.com> Co-authored-by: Vittor Guilherme Borges de Oliveira <vittoroliveira.dev@gmail.com> Co-authored-by: nickwizard <35692452+nickwizard@users.noreply.github.com> Co-authored-by: Ankit <177378174+anki1kr@users.noreply.github.com> Co-authored-by: Fadhil Yusuf <33994304+yusufrahadika@users.noreply.github.com> Co-authored-by: Giorgos Giakoumettis <giorgos@yiakoumettis.gr> Co-authored-by: KooshaPari <42529354+KooshaPari@users.noreply.github.com> Co-authored-by: KooshaPari <KooshaPari@users.noreply.github.com> Co-authored-by: AgentKiller45 <jamalzzj45@gmail.com> Co-authored-by: Nikolay Alafuzov <alafuzov_nn@rusklimat.ru> Co-authored-by: ricatix <d.enistraju155@gmail.com> Co-authored-by: Muhammad Mugni Hadi <mugni@rukita.co> Co-authored-by: Randi <55005611+rdself@users.noreply.github.com> Co-authored-by: backryun <bakryun0718@proton.me> Co-authored-by: Ngô Tấn Tài <tantai@newnol.io.vn> Co-authored-by: dopaemon <polarisdp@gmail.com> Co-authored-by: yicone <yicone@gmail.com> Co-authored-by: CườngNH <j2.cuong@gmail.com> Co-authored-by: DuyPrX <93126969+DuyPrX@users.noreply.github.com> Co-authored-by: ryanngit <74137224+ryanngit@users.noreply.github.com> Co-authored-by: eng2007 <aleksey.semenov@gmail.com> Co-authored-by: chamdanilukman <16629923+chamdanilukman@users.noreply.github.com> Co-authored-by: Umar Javed <114807145+tn5052@users.noreply.github.com> Co-authored-by: JiangZhuo <jiangzhuo@qiniu.com> Co-authored-by: Delynn Assistant <zhen@dkzhen.org> Co-authored-by: whale9820 <87256750+whale9820@users.noreply.github.com> Co-authored-by: whale <admin@dyntech.cc> Co-authored-by: Rigel Ramadhani Waloni <rigel8911@gmail.com> Co-authored-by: zocomputer <help@zocomputer.com> Co-authored-by: aristorinjuang <aristorinjuang@gmail.com> Co-authored-by: anmingwei <anmingwei@dobest.com> Co-authored-by: janeza2 <49841619+janeza2@users.noreply.github.com> Co-authored-by: zmf963 <19422469+zmf963@users.noreply.github.com> Co-authored-by: Markus Hartung <mail@hartmark.se> Co-authored-by: Koosha Pari <kooshapari@gmail.com> Co-authored-by: hartmark <hartmark@users.noreply.github.com> Co-authored-by: ron <devestacion@gmail.com> Co-authored-by: Ansh7473 <Ansh7473@users.noreply.github.com> Co-authored-by: felssxs <felssxs@users.noreply.github.com> Co-authored-by: Paijo <14921983+oyi77@users.noreply.github.com> Co-authored-by: Arthur Bodera <abodera@gmail.com> Co-authored-by: Semianchuk Vitalii <fix20152@gmail.com> Co-authored-by: PizzaV <103120356+pizzav-xyz@users.noreply.github.com> Co-authored-by: NOXX - Commiter <artur1992123@mail.ru> Co-authored-by: Milan Soni <123074437+Iammilansoni@users.noreply.github.com> Co-authored-by: Devin <studyzy@gmail.com> Co-authored-by: Raxxoor <manker_lol@hotmail.com> Co-authored-by: derhornspieler <15236687+derhornspieler@users.noreply.github.com>
2035 lines
108 KiB
Plaintext
2035 lines
108 KiB
Plaintext
# ┌─────────────────────────────────────────────────────────────────────────────┐
|
|
# │ OmniRoute — .env Contract │
|
|
# │ This file documents EVERY environment variable read by the runtime. │
|
|
# │ Copy to .env and adjust values. Lines starting with # are commented out │
|
|
# │ (optional / off-by-default). Uncomment only what you need. │
|
|
# │ Reference: docs/ENVIRONMENT.md for full details and usage scenarios. │
|
|
# └─────────────────────────────────────────────────────────────────────────────┘
|
|
|
|
# ═══════════════════════════════════════════════════════════════════════════════
|
|
# 1. REQUIRED SECRETS — Must be set before first run!
|
|
# ═══════════════════════════════════════════════════════════════════════════════
|
|
# These secrets are critical for security. Generate strong, unique values.
|
|
|
|
# JWT signing key for dashboard session tokens.
|
|
# Used by: src/lib/auth — signs/verifies all authenticated session cookies.
|
|
# Generate: openssl rand -base64 48
|
|
JWT_SECRET=
|
|
|
|
# Encryption key for API keys stored in the database.
|
|
# Used by: src/lib/db/apiKeys.ts — encrypts API key values at rest in SQLite.
|
|
# Generate: openssl rand -hex 32
|
|
API_KEY_SECRET=
|
|
|
|
# Initial admin login password — CHANGE THIS before first use!
|
|
# Used by: bootstrap only — sets the initial dashboard password on first boot.
|
|
# After first login you can change it from Dashboard → Settings → Security.
|
|
# Default: CHANGEME (insecure, for local dev only)
|
|
INITIAL_PASSWORD=CHANGEME
|
|
|
|
# ═══════════════════════════════════════════════════════════════════════════════
|
|
# 2. STORAGE & DATABASE
|
|
# ═══════════════════════════════════════════════════════════════════════════════
|
|
# OmniRoute uses SQLite for all persistence. These variables control where
|
|
# data lives, encryption, and cleanup policies.
|
|
|
|
# Base directory for all persistent data (SQLite DB, logs, backups).
|
|
# Used by: src/lib/db/core.ts — resolves the SQLite database file path.
|
|
# Default: ~/.omniroute/ | Override for Docker or custom installations.
|
|
# Hint: When running in Docker, consider mounting a host directory here for data persistence across container restarts
|
|
# also if you want to share the same database as "npm run dev" use "./data"
|
|
# DATA_DIR=/var/lib/omniroute
|
|
|
|
# Encryption key for SQLite database encryption at rest.
|
|
# Used by: src/lib/db/encryption.ts — encrypts the entire SQLite database.
|
|
# Generate: openssl rand -hex 32 | Leave empty to disable DB encryption.
|
|
STORAGE_ENCRYPTION_KEY=
|
|
|
|
# Version tag for the encryption key — allows future key rotation.
|
|
# Used by: scripts/bootstrap-env.mjs, electron/main.js — persists key version.
|
|
# Default: v1 | Increment when rotating STORAGE_ENCRYPTION_KEY.
|
|
STORAGE_ENCRYPTION_KEY_VERSION=v1
|
|
|
|
# Automatic SQLite backup on startup.
|
|
# Used by: src/lib/db/backup.ts — creates a timestamped backup before migrations.
|
|
# Default: false (backups enabled) | Set true to skip backup on every restart.
|
|
DISABLE_SQLITE_AUTO_BACKUP=false
|
|
|
|
# ── Redis (Rate Limiting) ──
|
|
# Redis connection URL for the rate limiter backend. OPT-IN: leave this
|
|
# commented out to use the built-in in-memory rate limiter. Setting it to a
|
|
# non-running localhost (#4878) makes ioredis flood "[REDIS] Error:" logs.
|
|
# Used by: src/shared/utils/rateLimiter.ts
|
|
# Example: redis://localhost:6379 (or redis://redis:6379 in Docker)
|
|
# REDIS_URL=redis://localhost:6379
|
|
|
|
# ═══════════════════════════════════════════════════════════════════════════════
|
|
# 3. NETWORK & PORTS
|
|
# ═══════════════════════════════════════════════════════════════════════════════
|
|
# OmniRoute can run on a single port (default) or split Dashboard/API ports.
|
|
|
|
# Canonical port for both Dashboard UI and API (single-port mode).
|
|
# Used by: src/lib/runtime/ports.ts — base port for the Next.js server.
|
|
# Default: 20128
|
|
PORT=20128
|
|
|
|
# Base path (URL subpath) when serving OmniRoute behind a reverse proxy under a subpath.
|
|
# Used by: next.config.mjs — sets Next.js `basePath`; auth redirects are basePath-aware.
|
|
# Default: "" (served at the domain root). Example: /omniroute to serve under https://host/omniroute
|
|
# OMNIROUTE_BASE_PATH=
|
|
|
|
# Split-port mode: serve Dashboard and API on separate ports for network isolation.
|
|
# Used by: src/lib/runtime/ports.ts — overrides PORT for each service.
|
|
# API_PORT=20129
|
|
# API_HOST=0.0.0.0
|
|
# DASHBOARD_PORT=20128
|
|
|
|
# Port for the real-time WebSocket live monitoring server.
|
|
# Used by: src/server/ws/liveServer.ts, src/app/api/v1/ws/route.ts
|
|
# Default: 20129
|
|
# LIVE_WS_PORT=20129
|
|
|
|
# Bind address for the live WebSocket server.
|
|
# Default: 127.0.0.1 (loopback only). Set to 0.0.0.0 to expose on LAN —
|
|
# remember to also configure LIVE_WS_ALLOWED_ORIGINS when doing so.
|
|
# LIVE_WS_HOST=127.0.0.1
|
|
|
|
# Comma-separated extra origins allowed to open a live WebSocket. The
|
|
# loopback dashboard origins are already permitted by default; use this
|
|
# var when fronting the server with a domain (e.g. https://omni.local).
|
|
# ⚠️ When using NEXT_PUBLIC_LIVE_WS_PUBLIC_URL or exposing the WS server
|
|
# beyond loopback, this MUST include the public origin(s) — otherwise
|
|
# the Origin allow-list check will reject all browser connections.
|
|
# Example: LIVE_WS_ALLOWED_ORIGINS=https://omni.local,https://dashboard.example.com,https://ws.my-ai.com
|
|
# LIVE_WS_ALLOWED_ORIGINS=https://omni.local,https://dashboard.example.com
|
|
|
|
# Comma-separated extra hostnames allowed to open a live WebSocket (LAN/Tailscale).
|
|
# Unlike LIVE_WS_ALLOWED_ORIGINS (which matches full origin URLs), this matches
|
|
# only the host portion — useful for wildcard-ish LAN/Tailscale setups.
|
|
# Used by: src/server/ws/liveServerAllowList.ts
|
|
# Example: LIVE_WS_ALLOWED_HOSTS=omni.local,tailscale-host,192.168.1.50
|
|
# LIVE_WS_ALLOWED_HOSTS=omni.local,tailscale-host,192.168.1.50
|
|
|
|
# Public URL for the live dashboard WebSocket (client-side, browser only).
|
|
# Set this when fronting the WS server with a reverse proxy or Cloudflare Tunnel.
|
|
# The browser will connect to this URL instead of ws://hostname:20129.
|
|
# The /live-ws path is already proxied from the main app (port 20128) to the
|
|
# live WS server (port 20129) by scripts/dev/standalone-server-ws.mjs.
|
|
# Used by: src/hooks/useLiveDashboard.ts
|
|
# Example: NEXT_PUBLIC_LIVE_WS_PUBLIC_URL=wss://ws.my-ai.com/live-ws
|
|
# NEXT_PUBLIC_LIVE_WS_PUBLIC_URL=
|
|
|
|
# Disable the standalone live WebSocket helper used by scripts/start-ws-server.mjs.
|
|
# Used by: scripts/start-ws-server.mjs (CI/embedded harness toggle).
|
|
# OMNIROUTE_DISABLE_LIVE_WS=0
|
|
|
|
# Enable the real-time dashboard WebSocket server.
|
|
# Used by: src/server/ws/liveServer.ts, scripts/start-ws-server.mjs
|
|
# Default: ON. Set to 0 or false to disable startup of the live WS server.
|
|
# Combine with LIVE_WS_HOST / LIVE_WS_ALLOWED_ORIGINS above when exposing
|
|
# beyond loopback.
|
|
# OMNIROUTE_ENABLE_LIVE_WS=1
|
|
|
|
# Per-(token,IP) relay rate limit, requests/minute. In-memory, per instance.
|
|
# 0 or negative disables the IP-dimension gate (per-token DB limit still applies).
|
|
# Default: 30
|
|
# Used by: src/app/api/v1/relay/chat/completions/route.ts
|
|
# RELAY_IP_PER_MINUTE=30
|
|
|
|
# Bundler selection for `npm run dev`. Set to 0 to fall back to webpack.
|
|
# Default is 1 (Turbopack). PR #4092 had forced webpack because earlier
|
|
# Turbopack 16.2.x panicked on the OmniRoute module graph with "internal error:
|
|
# entered unreachable code: there must be a path to a root"
|
|
# (turbopack-core/module_graph/mod.rs:662). That panic no longer reproduces on
|
|
# the pinned Next 16.2.9 — verified across a broad cold-compile sweep (36
|
|
# dashboard routes + open-sse-heavy API routes incl. /api/v1/chat/completions,
|
|
# /api/v1/models, /api/mcp) and repeated HMR rebuilds: zero panics. Turbopack
|
|
# also keeps dev memory far lower on the edit→rebuild loop (HMR rebuild RSS stays
|
|
# ~flat vs webpack's monotonic growth), which mitigates the dev-server OOM on
|
|
# this 60+ route app. The production build still uses webpack (build pipeline is
|
|
# unaffected by this dev-only flag).
|
|
OMNIROUTE_USE_TURBOPACK=1
|
|
|
|
# Skip the SQLite integrity health check on startup (faster boot on large DBs).
|
|
# Used by: src/lib/db/core.ts, src/lib/db/healthCheck.ts. Set to 1 to skip.
|
|
# OMNIROUTE_SKIP_DB_HEALTHCHECK=1
|
|
|
|
# Interval (ms) for the background credential health check scheduler.
|
|
# Default: 300000 (5 minutes). Minimum: 10000 (10 seconds).
|
|
# Used by: open-sse/config/constants.ts, src/lib/credentialHealth/scheduler.ts
|
|
# CREDENTIAL_HEALTH_CHECK_INTERVAL=300000
|
|
|
|
# TTL (ms) for cached credential health status.
|
|
# Default: 300000 (5 minutes).
|
|
# Used by: open-sse/config/constants.ts, src/lib/credentialHealth/cache.ts
|
|
# CREDENTIAL_HEALTH_CACHE_TTL=300000
|
|
|
|
# Set to 1 or true to disable background periodic testing of provider connections.
|
|
# Default: false
|
|
# Used by: src/lib/credentialHealth/scheduler.ts
|
|
# OMNIROUTE_DISABLE_CREDENTIAL_HEALTH_CHECK=false
|
|
|
|
# Set to "true" to emit `[ProxyFetch]` debug logs from the Vercel relay path
|
|
# in open-sse/utils/proxyFetch.ts. Off by default to avoid leaking routing
|
|
# hints in production logs.
|
|
# OMNIROUTE_PROXY_FETCH_DEBUG=true
|
|
|
|
# Docker production port mappings (docker-compose.prod.yml only).
|
|
# These set the HOST-side published ports. Container ports use PORT/API_PORT.
|
|
# PROD_DASHBOARD_PORT=20130
|
|
# PROD_API_PORT=20131
|
|
|
|
# Runtime override used by Electron and wrapped environments.
|
|
# OMNIROUTE_PORT takes precedence over PORT when running inside wrappers.
|
|
# Used by: src/lib/runtime/ports.ts — preserves canonical port in Electron.
|
|
# OMNIROUTE_PORT=20128
|
|
|
|
# Hostname/bind address for the Next.js server.
|
|
# Used by: scripts/dev/run-next.mjs (HOST), Playwright runner (HOSTNAME).
|
|
# Default: 0.0.0.0 (HOST) / 127.0.0.1 (HOSTNAME inside tests).
|
|
#HOST=0.0.0.0
|
|
#HOSTNAME=127.0.0.1
|
|
|
|
# Environment mode — affects Next.js behavior, logging verbosity, and caching.
|
|
# Values: production | development | Default: production
|
|
NODE_ENV=production
|
|
|
|
# Container runtime — controls startup script behavior (permissions, advice).
|
|
# Values: docker | podman | Default: docker
|
|
# Set to "podman" when running under rootless Podman so the entrypoint
|
|
# gives the correct fix instructions (podman unshare chown vs sudo chown).
|
|
CONTAINER_HOST=docker
|
|
|
|
# ═══════════════════════════════════════════════════════════════════════════════
|
|
# 4. SECURITY & AUTHENTICATION
|
|
# ═══════════════════════════════════════════════════════════════════════════════
|
|
|
|
# Salt for generating unique machine IDs (fingerprint diversification).
|
|
# Used by: src/lib/auth — combined with hardware identifiers for machine-id hash.
|
|
# Default: endpoint-proxy-salt | Change per-deployment for isolation.
|
|
MACHINE_ID_SALT=endpoint-proxy-salt
|
|
|
|
# Salt for deriving CLI machine-ID auth tokens (HMAC-SHA256).
|
|
# Used by: src/lib/machineToken.ts — rotates the local CLI auth token without
|
|
# touching code. Set to a new value to invalidate existing CLI tokens.
|
|
# Default: omniroute-cli-auth-v1
|
|
# OMNIROUTE_CLI_SALT=omniroute-cli-auth-v1
|
|
|
|
# Set true when running behind HTTPS (reverse proxy with TLS termination).
|
|
# Used by: src/lib/auth — sets the Secure flag on session cookies.
|
|
# Default: false | MUST be true in any non-localhost deployment.
|
|
AUTH_COOKIE_SECURE=false
|
|
|
|
# Require an API key for all /v1/* proxy endpoints.
|
|
# Used by: API middleware — rejects unauthenticated requests to the proxy API.
|
|
# Default: false | Set true for multi-user/public deployments.
|
|
REQUIRE_API_KEY=false
|
|
|
|
# Allow revealing full API key values in the Dashboard UI.
|
|
# Used by: src/shared/constants/featureFlagDefinitions.ts — controls show/hide of key values.
|
|
# Also configurable from Dashboard > Settings > Feature Flags.
|
|
# Default: false | Security risk if enabled on shared instances.
|
|
ALLOW_API_KEY_REVEAL=false
|
|
|
|
# Shared secret for the internal Codex Responses WebSocket bridge.
|
|
# Used by: src/app/api/internal/codex-responses-ws/route.ts — authenticates
|
|
# bridge requests between the Electron/browser WS relay and OmniRoute.
|
|
# ⚠️ REQUIRED for production — if unset, all WS bridge requests are rejected.
|
|
# Generate: openssl rand -base64 32
|
|
# OMNIROUTE_WS_BRIDGE_SECRET=
|
|
|
|
# Per-process secret that proves the trusted peer-IP stamp came from OmniRoute's
|
|
# own HTTP server (scripts/dev/peer-stamp.mjs). The custom server stamps the real
|
|
# TCP peer IP as `<token>|<ip>`; the authz middleware trusts the locality only
|
|
# when the token matches. Used by: src/server/authz/policies/management.ts.
|
|
# Auto-generated per boot — leave UNSET in normal use. Only set it to pin a fixed
|
|
# value across processes (e.g. a multi-process setup that must share the stamp).
|
|
# OMNIROUTE_PEER_STAMP_TOKEN=
|
|
|
|
# Comma-separated API key IDs that skip request logging (GDPR/compliance).
|
|
# Used by: src/lib/compliance/index.ts — suppresses logs for specific keys.
|
|
# NO_LOG_API_KEY_IDS=key_abc123,key_def456
|
|
|
|
# Fallback per-day request budget applied to API keys whose `rate_limits`
|
|
# column is null. Default (unset/empty/malformed) preserves the legacy
|
|
# 1000/day, 5000/week, 20000/month windows so existing deployments do not
|
|
# silently lose rate limiting on upgrade.
|
|
# Set explicitly to "0" to opt out entirely (unlimited fallback). Any
|
|
# positive integer N enables N/day, 5N/week, 20N/month.
|
|
# Used by: src/shared/utils/apiKeyPolicy.ts — checkRateLimit() fallback.
|
|
# DEFAULT_RATE_LIMIT_PER_DAY=1000
|
|
|
|
# Maximum request body size in bytes (rejects larger payloads).
|
|
# Used by: src/shared/middleware/bodySizeGuard.ts — prevents oversized uploads.
|
|
# Default: 10485760 (10 MB)
|
|
# MAX_BODY_SIZE_BYTES=10485760
|
|
|
|
# Heap-pressure-aware admission for POST /v1/chat/completions (#5152). A large
|
|
# coding-agent "compact" body amplifies into hundreds of MB of transient JS objects
|
|
# on the combo path; concurrent compacts can stack past the V8 heap ceiling and OOM
|
|
# the process. These shed a LARGE body with 503 (Retry-After) only while the heap is
|
|
# already under pressure — healthy heap admits every body untouched.
|
|
# Used by: src/shared/middleware/chatBodyAdmission.ts
|
|
# Bodies below this size skip the guard entirely (heap not even sampled). Default 262144 (256 KB).
|
|
# OMNIROUTE_CHAT_LARGE_BODY_BYTES=262144
|
|
# Hard cap — bodies above this are rejected with 413 before any clone/parse. Default 52428800 (50 MB).
|
|
# OMNIROUTE_CHAT_HARD_MAX_BODY_BYTES=52428800
|
|
# Shed large bodies once heapUsed/heap_size_limit reaches this ratio (0<r<1). Default 0.75.
|
|
# OMNIROUTE_CHAT_HEAP_SHED_RATIO=0.75
|
|
|
|
# Hard cap (bytes) for a non-streaming upstream response buffered fully into memory
|
|
# (#5152). Past this the upstream reader is cancelled and the request fails fast
|
|
# instead of growing an unbounded string until the V8 heap is exhausted.
|
|
# Used by: open-sse/handlers/chatCore/nonStreamingResponseBody.ts
|
|
# Default: 67108864 (64 MB)
|
|
# OMNIROUTE_MAX_NONSTREAMING_RESPONSE_BYTES=67108864
|
|
|
|
# CORS configuration — controls which cross-origin browser clients can call the API.
|
|
# Used by: src/server/cors/origins.ts — sets Access-Control-Allow-Origin.
|
|
# Same-origin dashboard requests behind a reverse proxy do not need CORS; they
|
|
# use session-bound CSRF protection. No wildcard is sent unless CORS_ALLOW_ALL=true.
|
|
# CORS_ALLOWED_ORIGINS=https://your-frontend.example.com
|
|
# CORS_ORIGIN=https://your-frontend.example.com # legacy single-origin alias
|
|
# CORS_ALLOW_ALL=false
|
|
|
|
# Allow provider URLs pointing to private/local networks (localhost, 192.168.x.x, etc.).
|
|
# REQUIRED for self-hosted providers: LM Studio, Ollama, vLLM, Llamafile, Triton, etc.
|
|
# Used by: src/shared/network/outboundUrlGuard.ts — disables SSRF guard for provider calls.
|
|
# Default: false (blocked) | Set true to enable local providers.
|
|
# OMNIROUTE_ALLOW_PRIVATE_PROVIDER_URLS=true
|
|
|
|
# Allow adding/validating providers on local/private addresses (127.0.0.1, localhost, LAN).
|
|
# Used by: src/shared/network/outboundUrlGuard.ts — scopes to the provider validation path and
|
|
# still blocks cloud-metadata (169.254.169.254, metadata.google.internal). Default: true
|
|
# (OmniRoute is local-first). Set false to enforce strict public-only blocking.
|
|
# OMNIROUTE_ALLOW_LOCAL_PROVIDER_URLS=false
|
|
|
|
# Legacy alias toggling the SSRF guard. Used by: src/shared/network/outboundUrlGuard.ts
|
|
# When unset, OmniRoute uses the per-feature defaults. Set to "false"/"0" to disable.
|
|
# OUTBOUND_SSRF_GUARD_ENABLED=true
|
|
|
|
# ═══════════════════════════════════════════════════════════════════════════════
|
|
# 5. INPUT SANITIZATION & PII PROTECTION (FASE-01)
|
|
# ═══════════════════════════════════════════════════════════════════════════════
|
|
# Multi-layer defense: request-side injection guard + response-side PII sanitizer.
|
|
|
|
# ── Request-Side: Prompt Injection Guard ──
|
|
# Scans incoming messages for prompt injection patterns before routing.
|
|
# Used by: src/middleware/promptInjectionGuard.ts
|
|
# INPUT_SANITIZER_ENABLED=true
|
|
# INPUT_SANITIZER_MODE=warn # warn = log only | block = reject request | redact = strip patterns
|
|
|
|
# Legacy alias for INPUT_SANITIZER_MODE (same effect).
|
|
# INJECTION_GUARD_MODE=warn
|
|
|
|
# PII detection in incoming requests (emails, phone numbers, SSNs, etc.).
|
|
# Used by: src/middleware/promptInjectionGuard.ts — extends injection guard.
|
|
# PII_REDACTION_ENABLED=false
|
|
|
|
# Minimum streaming window size for PII detection (bytes). Default: 200.
|
|
# Used by: src/lib/streamingPiiTransform.ts.
|
|
# PII_WINDOW_SIZE=200
|
|
|
|
# Test bypass: allow setting PII_WINDOW_SIZE below minimum. Default: false.
|
|
# Used by: src/lib/streamingPiiTransform.ts.
|
|
# PII_TEST_BYPASS_MIN_WINDOW=false
|
|
|
|
# ── Response-Side: PII Sanitizer ──
|
|
# Scans LLM responses for leaked PII before returning to the client.
|
|
# Used by: src/lib/piiSanitizer.ts
|
|
# PII_RESPONSE_SANITIZATION=false
|
|
# PII_RESPONSE_SANITIZATION_MODE=redact # redact = mask PII | warn = log only | block = drop response
|
|
|
|
# ── VS Code Tokenized-Route Context Sanitizer ──
|
|
# Strips implicit active-editor context (editorContext/activeEditor/currentFile/
|
|
# selection/openTabs…) from requests on the /v1/vscode/[token]/* routes before
|
|
# forwarding upstream, and redacts the content of explicitly-attached sensitive
|
|
# files (.env, private keys, kubeconfig, credentials/secrets). Explicit
|
|
# attachments otherwise pass through. Secure-by-default: ON unless set to 0.
|
|
# Used by: src/app/api/v1/vscode/contextSanitizer.ts
|
|
# OMNIROUTE_VSCODE_SANITIZE_CONTEXT=1 # set to 0 to disable
|
|
|
|
# ═══════════════════════════════════════════════════════════════════════════════
|
|
# 6. TOOL & ROUTING POLICIES
|
|
# ═══════════════════════════════════════════════════════════════════════════════
|
|
|
|
# Tool policy mode — controls which tools LLMs can invoke via function calling.
|
|
# Used by: src/lib/toolPolicy.ts — enforces allowlist/denylist on tool_choice.
|
|
# Values: allowlist | denylist | disabled | Default: disabled
|
|
# TOOL_POLICY_MODE=disabled
|
|
|
|
# Payload manipulation rules JSON file.
|
|
# Used by: open-sse/services/payloadRules.ts — injects/removes upstream payload fields per model/protocol.
|
|
# Default: ./config/payloadRules.json
|
|
# OMNIROUTE_PAYLOAD_RULES_PATH=./config/payloadRules.json
|
|
|
|
# Reload interval for payloadRules.json mtime checks in milliseconds.
|
|
# Used by: open-sse/services/payloadRules.ts — keeps file-based rules hot-reloadable without restart.
|
|
# Default: 5000 | Minimum: 1000
|
|
# OMNIROUTE_PAYLOAD_RULES_RELOAD_MS=5000
|
|
|
|
# Prefer Claude Code OAuth for unprefixed Claude-family model IDs such as
|
|
# claude-sonnet-4-6 or newly released IDs like claude-fable-5.
|
|
# Used by: open-sse/services/model.ts. Explicit provider prefixes still win.
|
|
# Default: false
|
|
# OMNIROUTE_PREFER_CLAUDE_CODE_FOR_UNPREFIXED_CLAUDE_MODELS=false
|
|
|
|
# ═══════════════════════════════════════════════════════════════════════════════
|
|
# 7. URLS & CLOUD SYNC
|
|
# ═══════════════════════════════════════════════════════════════════════════════
|
|
# URLs used for internal sync jobs, OAuth callbacks, and cloud relay.
|
|
|
|
# Internal base URL — used by server-side sync jobs to call /api/sync/cloud.
|
|
# Keep this as a loopback/container URL even when the app is publicly proxied.
|
|
# Used by: src/lib/cloudSync.ts, src/lib/initCloudSync.ts
|
|
# Default: http://localhost:20128
|
|
BASE_URL=http://localhost:20128
|
|
|
|
# Cloud relay URL — premium feature for remote config sync.
|
|
# Used by: src/lib/cloudSync.ts — pushes/pulls settings from OmniRoute Cloud.
|
|
CLOUD_URL=
|
|
|
|
# Timeout for cloud sync HTTP requests in milliseconds.
|
|
# Used by: src/lib/cloudSync.ts — fetchWithTimeout wrapper.
|
|
# Default: 12000 (12 seconds)
|
|
# CLOUD_SYNC_TIMEOUT_MS=12000
|
|
|
|
# Public-facing base URL — required for stable reverse proxy / OAuth callback setups.
|
|
# Used by: OAuth redirect_uri computation, Dashboard UI links, and generated public URLs.
|
|
# Set to your stable public URL when OAuth callbacks or generated browser links need a
|
|
# canonical host behind nginx/Caddy (e.g., https://omniroute.example.com).
|
|
#
|
|
# Dashboard display behavior: when this variable is unset, the dashboard
|
|
# auto-detects the base URL shown in curl examples and CLI tool snippets
|
|
# from window.location.origin (the host the user is browsing). Setting it
|
|
# explicitly is only required when running behind a reverse proxy with a
|
|
# different public hostname, or when OAuth callbacks / generated browser links must point
|
|
# to a canonical URL. Authenticated dashboard writes use same-origin requests plus
|
|
# session-bound CSRF protection and do not require a static public base URL.
|
|
#
|
|
# Default: http://localhost:20128
|
|
NEXT_PUBLIC_BASE_URL=http://localhost:20128
|
|
|
|
# Browser-facing OmniRoute origin for generated assets in API responses.
|
|
# Highest-priority public origin override; also used by non-dashboard public-origin validation.
|
|
# Used by: chatgpt-web image generation cache URLs (/v1/chatgpt-web/image/<id>).
|
|
# Set this when OpenWebUI or another relay reaches OmniRoute by an internal URL
|
|
# but the user's browser must fetch images from a LAN, tunnel, or public origin.
|
|
# Do not include /v1; if included accidentally it will be normalized away.
|
|
# OMNIROUTE_PUBLIC_BASE_URL=http://192.168.0.15:20128
|
|
|
|
# Absolute provider plugin manifest URL advertised to sidecar clients.
|
|
# Used by: open-sse/config/providerPluginManifestUrl.ts. When unset, OmniRoute
|
|
# derives the URL from request origin or HOST/PORT using OMNIROUTE_PUBLIC_PROTOCOL.
|
|
# OMNIROUTE_PROVIDER_MANIFEST_URL=https://omniroute.example.com/api/v1/provider-plugin-manifest
|
|
|
|
# Protocol used when deriving provider plugin manifest URLs without a request origin.
|
|
# Used by: open-sse/config/providerPluginManifestUrl.ts. Defaults to http.
|
|
# OMNIROUTE_PUBLIC_PROTOCOL=http
|
|
|
|
# Max wait time for an async chatgpt-web image to land via the celsius
|
|
# WebSocket, in milliseconds. Default 180000 (3 minutes). Increase during
|
|
# upstream queue-deep windows ("Lots of people are creating images right now").
|
|
# OMNIROUTE_CGPT_WEB_IMAGE_TIMEOUT_MS=180000
|
|
|
|
# Total in-memory byte budget for the chatgpt-web image cache (used to serve
|
|
# /v1/chatgpt-web/image/<id>), in megabytes. Default 256. Lower this if you
|
|
# run OmniRoute on a memory-constrained host; raise it if image generation
|
|
# is heavy and clients are racing the 30-minute TTL.
|
|
# OMNIROUTE_CGPT_WEB_IMAGE_CACHE_MAX_MB=256
|
|
|
|
# Overall wait budget for a chatgpt-web GPT-5.5 Pro background-poll handoff,
|
|
# in milliseconds. Default 1200000 (20 minutes). Pro reasoning runs are slow
|
|
# and complete out-of-band, so OmniRoute polls until the answer lands or this
|
|
# budget elapses. Raise it if Pro requests time out before finishing.
|
|
# OMNIROUTE_CGPT_WEB_PRO_TIMEOUT_MS=1200000
|
|
|
|
# Interval between chatgpt-web GPT-5.5 Pro background-poll attempts, in
|
|
# milliseconds. Default 4000 (4 seconds). Lower for snappier completion at the
|
|
# cost of more upstream polling; raise to reduce request volume.
|
|
# OMNIROUTE_CGPT_WEB_PRO_POLL_INTERVAL_MS=4000
|
|
|
|
# Public cloud URL — client-side mirror of CLOUD_URL.
|
|
NEXT_PUBLIC_CLOUD_URL=
|
|
|
|
# Legacy alias — fallback for NEXT_PUBLIC_BASE_URL in sync schedulers.
|
|
# NEXT_PUBLIC_APP_URL=http://localhost:20128
|
|
|
|
# Advanced reverse-proxy trust mode for deriving public origin from Forwarded /
|
|
# X-Forwarded-* headers when no explicit public base URL is set. Prefer setting
|
|
# NEXT_PUBLIC_BASE_URL. Only enable if direct client access to OmniRoute is blocked
|
|
# and your proxy strips/rebuilds incoming forwarded headers.
|
|
# Values: true/loopback (trust loopback proxy peers), private/lan (also trust LAN peers).
|
|
# OMNIROUTE_TRUST_PROXY=
|
|
|
|
# Public callback URL for asynchronous image/audio jobs (kie.ai, etc.).
|
|
# Used by: open-sse/utils/kieTask.ts — overrides callbackUrlFromBaseUrl().
|
|
# Honor order: KIE_CALLBACK_URL → OMNIROUTE_KIE_CALLBACK_URL → OMNIROUTE_PUBLIC_URL.
|
|
#KIE_CALLBACK_URL=
|
|
#OMNIROUTE_KIE_CALLBACK_URL=
|
|
#OMNIROUTE_PUBLIC_URL=
|
|
|
|
# Headroom token-saver proxy URL. The dashboard lifecycle (api/headroom/*) spawns
|
|
# a local headroom-ai CLI on loopback by default; override only to point at an
|
|
# external Docker sidecar proxy. Defaults to http://localhost:8787 when unset.
|
|
# Used by: src/lib/headroom/detect.ts.
|
|
#HEADROOM_URL=http://localhost:8787
|
|
|
|
# Upstream quota endpoints used by the Usage page. Override only for
|
|
# debugging or when routing through a corporate mirror. Used by:
|
|
# open-sse/services/usage.ts.
|
|
#OMNIROUTE_CROF_USAGE_URL=https://crof.ai/usage_api/
|
|
#OMNIROUTE_CODEWHISPERER_BASE_URL=https://codewhisperer.us-east-1.amazonaws.com
|
|
#OMNIROUTE_OPENCODE_QUOTA_URL=https://opencode.ai/zen/go/v1/quota
|
|
#OMNIROUTE_OPENCODE_GO_QUOTA_URL=https://api.z.ai/api/monitor/usage/quota/limit
|
|
#OMNIROUTE_OPENCODE_GO_DASHBOARD_URL=https://opencode.ai/workspace
|
|
#OMNIROUTE_OLLAMA_CLOUD_USAGE_URL=https://ollama.com/settings
|
|
|
|
# OpenCode Go dashboard quota scraping. Prefer configuring these per connection
|
|
# in Dashboard → Providers → OpenCode Go. Env vars are useful for headless
|
|
# deployments or shared server defaults. The cookie is sensitive.
|
|
#OPENCODE_GO_WORKSPACE_ID=wrk_...
|
|
#OMNIROUTE_OPENCODE_GO_WORKSPACE_ID=wrk_...
|
|
#OPENCODE_GO_AUTH_COOKIE=auth=...
|
|
#OMNIROUTE_OPENCODE_GO_AUTH_COOKIE=auth=...
|
|
|
|
# Ollama Cloud quota scraping. Prefer configuring this per connection in
|
|
# Dashboard → Providers → Ollama Cloud. The cookie is sensitive.
|
|
#OLLAMA_USAGE_COOKIE=__Secure-session=...
|
|
#OLLAMA_CLOUD_USAGE_COOKIE=__Secure-session=...
|
|
#OMNIROUTE_OLLAMA_USAGE_COOKIE=__Secure-session=...
|
|
|
|
# ═══════════════════════════════════════════════════════════════════════════════
|
|
# 8. OUTBOUND PROXY (Upstream Provider Calls)
|
|
# ═══════════════════════════════════════════════════════════════════════════════
|
|
# Route upstream LLM API calls through an HTTP/SOCKS5 proxy.
|
|
# Useful for corporate egress, geo-routing, or IP masking.
|
|
|
|
# Enable SOCKS5 proxy support in both server and client components.
|
|
# Used by: open-sse/executors — wraps fetch() calls through the proxy agent.
|
|
ENABLE_SOCKS5_PROXY=true
|
|
NEXT_PUBLIC_ENABLE_SOCKS5_PROXY=true
|
|
|
|
# Standard proxy variables (lowercase variants also supported).
|
|
# HTTP_PROXY=http://127.0.0.1:7890
|
|
# HTTPS_PROXY=http://127.0.0.1:7890
|
|
# ALL_PROXY=socks5://127.0.0.1:7890
|
|
# NO_PROXY=localhost,127.0.0.1
|
|
|
|
# Max concurrent sockets per cached HTTP/SOCKS proxy dispatcher.
|
|
# Long-lived SSE streams such as Codex /v1/responses need more than one
|
|
# connection when multiple requests share the same account-level proxy.
|
|
# Set to 1 only for legacy diagnostics. Values above 256 are capped.
|
|
# OMNIROUTE_PROXY_DISPATCHER_CONNECTIONS=32
|
|
|
|
# SOCKS5 handshake (connect) timeout in ms (default 10000, capped at 120000).
|
|
# Raise it when a single residential gateway host is hit by high concurrency
|
|
# (e.g. 100 simultaneous requests): the real SOCKS5 handshake can exceed 10s
|
|
# under a saturated pool even though the proxy is reachable, which otherwise
|
|
# surfaces as a false "[Proxy Fast-Fail] Proxy unreachable".
|
|
# SOCKS_HANDSHAKE_TIMEOUT_MS=10000
|
|
|
|
# Proxy fail-open mode (default: false = fail-closed).
|
|
# When false, a request whose assigned proxy fails to resolve is REFUSED rather than
|
|
# falling back to a direct connection — prevents real-IP leaks in egress-controlled
|
|
# deployments. Set true to restore the legacy DIRECT fallback (legacy behaviour).
|
|
# Used by: src/sse/handlers/chatHelpers.ts
|
|
# PROXY_FAIL_OPEN=false
|
|
|
|
# TLS fingerprint spoofing (opt-in) — mimics Chrome 124 TLS handshake via wreq-js.
|
|
# Reduces risk of JA3/JA4 fingerprint-based blocking by providers (e.g., Google).
|
|
# Used by: open-sse/executors — replaces Node.js default TLS fingerprint.
|
|
# ENABLE_TLS_FINGERPRINT=true
|
|
|
|
# Allow the Claude Turnstile Playwright browser context to ignore HTTPS certificate errors.
|
|
# Only enable for local debugging or trusted MITM/corporate proxy environments.
|
|
# Used by: open-sse/services/claudeTurnstileSolver.ts
|
|
# OMNIROUTE_TURNSTILE_IGNORE_TLS_ERRORS=false
|
|
|
|
# ═══════════════════════════════════════════════════════════════════════════════
|
|
# 9. CLI TOOL INTEGRATION
|
|
# ═══════════════════════════════════════════════════════════════════════════════
|
|
# Control how OmniRoute discovers and launches CLI sidecars (Claude, Codex, etc.).
|
|
# Used by: src/shared/services/cliRuntime.ts
|
|
|
|
# CLI discovery mode: auto = search PATH | manual = use explicit paths below.
|
|
# CLI_MODE=auto
|
|
|
|
# Additional PATH entries for finding CLI binaries (colon-separated).
|
|
# CLI_EXTRA_PATHS=/host-cli/bin:/usr/local/bin
|
|
|
|
# Home directory override for reading CLI config files (~/.claude, etc.).
|
|
# CLI_CONFIG_HOME=/root
|
|
|
|
# Allow OmniRoute to write CLI config files (token refresh, etc.).
|
|
# CLI_ALLOW_CONFIG_WRITES=true
|
|
|
|
# Auto-sync CLI profile files after provider model discovery changes. OPT-IN, default OFF for
|
|
# both. When enabled, writes only the tool's profile files (~/.codex/*.config.toml or
|
|
# ~/.claude/profiles/<name>/settings.json); never changes the active/default config. Both also
|
|
# require CLI_ALLOW_CONFIG_WRITES (default on). Toggle from the CLI Code dashboard, or set here.
|
|
# Leave unset to disable. (Feature flags — a DB/dashboard override takes precedence over env.)
|
|
# OMNIROUTE_AUTO_SYNC_CODEX_PROFILES=true
|
|
# OMNIROUTE_AUTO_SYNC_CLAUDE_PROFILES=true
|
|
|
|
# Override binary paths for individual CLI tools.
|
|
# CLI_CLAUDE_BIN=claude
|
|
# CLI_CODEX_BIN=codex
|
|
# CLI_DROID_BIN=droid
|
|
# CLI_OPENCLAW_BIN=openclaw
|
|
# CLI_CURSOR_BIN=agent
|
|
# CLI_CLINE_BIN=cline
|
|
# CLI_CONTINUE_BIN=cn
|
|
# CLI_QODER_BIN=qoder
|
|
# CLI_QWEN_BIN=qwen
|
|
# CLI_AUGGIE_BIN=auggie
|
|
# AUGGIE_BIN=auggie
|
|
|
|
# Override the Hermes Agent home directory (where OmniRoute reads/writes the
|
|
# Hermes CLI config). Matches the env var the Hermes PowerShell installer sets
|
|
# on Windows (%LOCALAPPDATA%\hermes); defaults to ~/.hermes when unset.
|
|
# Used by: src/lib/cli-helper/config-generator/hermesHome.ts
|
|
# HERMES_HOME=~/.hermes
|
|
|
|
# ═══════════════════════════════════════════════════════════════════════════════
|
|
# 10. INTERNAL AGENT & MCP INTEGRATIONS
|
|
# ═══════════════════════════════════════════════════════════════════════════════
|
|
# Used by MCP server, A2A skills, and CLI sidecars to call the running instance.
|
|
|
|
# Explicit base URL for MCP/A2A tools to reach OmniRoute (overrides localhost auto-detect).
|
|
# For browser-visible generated image URLs, prefer OMNIROUTE_PUBLIC_BASE_URL above.
|
|
# Used by: open-sse/mcp-server/server.ts, src/lib/a2a/
|
|
# OMNIROUTE_BASE_URL=http://localhost:20128
|
|
|
|
# API key for internal tool calls (MCP tools, A2A skills).
|
|
# OMNIROUTE_API_KEY=
|
|
|
|
# API key ID for MCP audit logging.
|
|
# Used by: open-sse/mcp-server/audit.ts — tags audit events with a key identity.
|
|
# OMNIROUTE_API_KEY_ID=
|
|
|
|
# Legacy alias for OMNIROUTE_API_KEY.
|
|
# ROUTER_API_KEY=
|
|
|
|
# CLI remote-mode context/profile for `omniroute` commands (overrides the active
|
|
# context in the local contexts store). Equivalent to the `--context <name>` flag.
|
|
# Used by: bin/cli/program.mjs, bin/cli/api.mjs (remote mode).
|
|
# OMNIROUTE_CONTEXT=
|
|
|
|
# Enforce scope-based access control on MCP tool calls.
|
|
# Used by: open-sse/mcp-server/server.ts — rejects calls outside allowed scopes.
|
|
# OMNIROUTE_MCP_ENFORCE_SCOPES=false
|
|
|
|
# Comma-separated scopes granted to this MCP connection.
|
|
# Full list: admin, combos, health, models, routing, budget, metrics, pricing, memory, skills
|
|
# OMNIROUTE_MCP_SCOPES=admin,combos,health
|
|
|
|
# Compress MCP tool descriptions before serializing the manifest.
|
|
# Used by: open-sse/mcp-server/descriptionCompressor.ts — reduces token spend
|
|
# for clients that read the full tool catalog.
|
|
# Accepted disabling values: 0, false, off. Default: enabled.
|
|
# OMNIROUTE_MCP_COMPRESS_DESCRIPTIONS=1
|
|
|
|
# Algorithm/profile used when description compression is enabled.
|
|
# Used by: open-sse/mcp-server/descriptionCompressor.ts
|
|
# Set to 0/false/off to skip compression entirely. Default: rtk
|
|
# OMNIROUTE_MCP_DESCRIPTION_COMPRESSION=rtk
|
|
|
|
# Model catalog sync interval in hours.
|
|
# Used by: src/shared/services/modelSyncScheduler.ts — periodic model refresh.
|
|
# Default: 24
|
|
# MODEL_SYNC_INTERVAL_HOURS=24
|
|
|
|
# Provider limits sync interval in minutes (rate limit windows, quotas).
|
|
# Used by: src/server-init.ts — polls provider health endpoints.
|
|
# Default: 70
|
|
PROVIDER_LIMITS_SYNC_INTERVAL_MINUTES=70
|
|
|
|
# Gap (ms) between consecutive OAuth quota fetches in a bulk provider-limits sync.
|
|
# OAuth providers are fetched one at a time with this spacing so a single host
|
|
# never bursts simultaneous usage/refresh requests to the same upstream. Set to 0
|
|
# to opt out (restores fully concurrent fetches). Default: 1500
|
|
PROVIDER_LIMITS_SYNC_SPACING_MS=1500
|
|
|
|
# Min interval (ms) between consecutive UPSTREAM quota fetches on the per-request
|
|
# preflight/monitor path (e.g. Codex /wham/usage), complementing the bulk-sync
|
|
# spacing above. Many accounts on one IP fetching quota in the same second can look
|
|
# like automation to the upstream and get an OAuth token revoked (#6009). This gate
|
|
# serializes genuine network calls (cache hits are unaffected). Set to 0 to disable.
|
|
# Default: 250 (clamped 0..5000).
|
|
# OMNIROUTE_QUOTA_FETCH_MIN_INTERVAL_MS=250
|
|
|
|
# Delay (ms) before refreshing provider limits after a real usage event (e.g. a
|
|
# completed request). Gives the upstream quota API time to register the consumption
|
|
# before the dashboard polls. Default: 5000
|
|
#PROVIDER_LIMITS_POST_USAGE_REFRESH_DELAY_MS=5000
|
|
|
|
# Disable all background services (sync, pricing, model refresh).
|
|
# Used by: src/instrumentation-node.ts, src/lib/initCloudSync.ts
|
|
# Useful for: CI builds, test environments, or resource-constrained containers.
|
|
# OMNIROUTE_DISABLE_BACKGROUND_SERVICES=false
|
|
|
|
# Force runtime background tasks (healthchecks/sync) even under automated test
|
|
# detection. Used by: src/lib/config/runtimeSettings.ts — overrides the test
|
|
# heuristic in instrumentation-node.ts. Default: unset (tests skip background).
|
|
#OMNIROUTE_ENABLE_RUNTIME_BACKGROUND_TASKS=1
|
|
|
|
# Proactive connection-cooldown recovery (#8): re-validates connections whose
|
|
# transient `rate_limited_until` window has elapsed OUTSIDE the request hot path,
|
|
# so the first request after a cooldown does not pay the probe latency. Lazy
|
|
# recovery in getProviderCredentials still applies regardless. Used by:
|
|
# src/lib/quota/connectionRecovery.ts.
|
|
# Tick cadence (ms). Default 60000, floor 5000.
|
|
# OMNIROUTE_CONNECTION_RECOVERY_INTERVAL_MS=60000
|
|
# Disable the proactive recovery scheduler entirely (default: false).
|
|
# OMNIROUTE_DISABLE_CONNECTION_RECOVERY=false
|
|
|
|
# Background job interval for budget reset checks (ms). Default: 600000 (10m).
|
|
# Used by: src/lib/jobs/budgetResetJob.ts. Floor: 10000.
|
|
#OMNIROUTE_BUDGET_RESET_JOB_INTERVAL_MS=600000
|
|
|
|
# Emergency budget-exhaustion fallback (set false or 0 to disable the reroute to
|
|
# nvidia/openai/gpt-oss-120b when a request fails with a 402 budget error).
|
|
# Used by: open-sse/services/emergencyFallback.ts. Default: enabled.
|
|
#OMNIROUTE_EMERGENCY_FALLBACK=true
|
|
|
|
# Reasoning cache cleanup cadence (ms). Default: 1800000 (30m). Floor: 60000.
|
|
# Used by: src/lib/jobs/reasoningCacheCleanupJob.ts.
|
|
#OMNIROUTE_REASONING_CACHE_CLEANUP_INTERVAL_MS=1800000
|
|
|
|
# Spend write batcher cadence (ms) and buffer size before forced flush.
|
|
# Used by: src/lib/spend/batchWriter.ts. Defaults: 60000 ms / 1000 entries.
|
|
#OMNIROUTE_SPEND_FLUSH_INTERVAL_MS=60000
|
|
#OMNIROUTE_SPEND_MAX_BUFFER_SIZE=1000
|
|
|
|
# Batch request processor retry, backoff, and concurrency settings.
|
|
# Used by: open-sse/services/batchProcessor.ts. Defaults shown.
|
|
#BATCH_RETRY_DURATION_MS=86400000
|
|
#BATCH_BACKOFF_BASE_MS=5000
|
|
#BATCH_BACKOFF_MAX_MS=3600000
|
|
#BATCH_MAX_CONCURRENT=1
|
|
|
|
# Config hot-reload polling interval (ms). Default: 5000.
|
|
# Used by: src/lib/config/hotReload.ts. Lower than 1000ms is rejected.
|
|
#OMNIROUTE_CONFIG_HOT_RELOAD_MS=5000
|
|
|
|
# Override the migrations directory used by src/lib/db/migrationRunner.ts.
|
|
# Default: <repo>/src/lib/db/migrations.
|
|
#OMNIROUTE_MIGRATIONS_DIR=
|
|
|
|
# Mass-pending-migrations safety threshold (#3416). If more than this many
|
|
# migrations are pending on an existing DB, startup aborts (a wiped tracking
|
|
# table could cause data loss). Raise it to restore an older backup; set to 0
|
|
# to disable the check. Used by: src/lib/db/migrationRunner.ts. Default: 50.
|
|
#OMNIROUTE_MAX_PENDING_MIGRATIONS=50
|
|
|
|
# Trust user-managed RTK project filter rules without strict signature checks.
|
|
# Used by: open-sse/services/compression/engines/rtk/filterLoader.ts. Default: 0.
|
|
#OMNIROUTE_RTK_TRUST_PROJECT_FILTERS=0
|
|
|
|
# T02 stacked-pipeline engine circuit-breaker (OPT-IN, default off). When enabled, a compression
|
|
# engine that throws repeatedly across requests is skipped (fail-open) for a cooldown.
|
|
# Used by: open-sse/services/compression/pipelineEngineBreaker.ts.
|
|
#COMPRESSION_PIPELINE_BREAKER_ENABLED=false # master switch (default false)
|
|
#COMPRESSION_PIPELINE_BREAKER_THRESHOLD=3 # consecutive failures before the engine opens
|
|
#COMPRESSION_PIPELINE_BREAKER_COOLDOWN_MS=30000 # ms the engine stays skipped before a probe
|
|
|
|
# T08/H8 — CCR retrieval-feedback ramp factor. Each prior retrieval of a stored block raises its
|
|
# effective minChars linearly, so frequently-retrieved content is compressed progressively less
|
|
# (>= 3 retrievals = never compressed). 1 disables the ramp (binary skip at the threshold only).
|
|
# Used by: open-sse/services/compression/engines/ccr/index.ts. Default: 2.
|
|
#COMPRESSION_CCR_RETRIEVAL_RAMP_FACTOR=2
|
|
# T08/H5 — usage-observed prefix freeze (OPT-IN, default off). When enabled, a system prompt seen
|
|
# >= THRESHOLD times is treated as a stable cacheable prefix and preserved from compression even
|
|
# for providers the static cache-aware heuristic does not recognize (freeze = preserve, never
|
|
# mutates). Used by: open-sse/services/compression/prefixFreeze.ts.
|
|
#COMPRESSION_PREFIX_FREEZE_ENABLED=false # master switch (default false)
|
|
#COMPRESSION_PREFIX_FREEZE_THRESHOLD=3 # observations before a prefix is frozen
|
|
|
|
# Skip the postinstall native-runtime warm-up (useful in CI / headless installs). Default: 0.
|
|
# Used by: scripts/postinstall.mjs.
|
|
#OMNIROUTE_SKIP_POSTINSTALL=0
|
|
|
|
# Operator-supplied JSON credentials for the offline compression-eval CLI
|
|
# (parsed with JSON.parse; leave unset for a dry run). Developer tooling only.
|
|
# Used by: scripts/compression-eval/index.ts. Default: {} (empty).
|
|
#OMNIROUTE_EVAL_CREDENTIALS={}
|
|
|
|
# Skip the DB healthcheck entirely on startup (useful for short-lived tasks / tests).
|
|
# Used by: src/lib/db/core.ts, src/lib/db/healthCheck.ts. Set to 1 to disable. Default: 0.
|
|
#OMNIROUTE_SKIP_DB_HEALTHCHECK=0
|
|
|
|
# Force a DB healthcheck regardless of cadence. Default: 0.
|
|
# Used by: src/lib/db/core.ts::shouldRunDbHealthCheck().
|
|
#OMNIROUTE_FORCE_DB_HEALTHCHECK=0
|
|
|
|
# DB healthcheck cadence override (ms). Default: 21600000 (6h).
|
|
# Used by: src/lib/db/core.ts::getDbHealthCheckIntervalMs().
|
|
#OMNIROUTE_DB_HEALTHCHECK_INTERVAL_MS=21600000
|
|
|
|
# Skip the Redis-backed auth cache used by API key lookups (forces DB reads).
|
|
# Used by: src/lib/db/apiKeys.ts. Set to 1 to disable. Default: enabled.
|
|
#OMNIROUTE_DISABLE_REDIS_AUTH_CACHE=0
|
|
|
|
# Flag set by bootstrap script after initial setup is complete.
|
|
# Used by: src/app/(dashboard)/dashboard/page.tsx — shows setup wizard vs. dashboard.
|
|
# OMNIROUTE_BOOTSTRAPPED=false
|
|
|
|
# Allow request body to override the Antigravity project field.
|
|
# Used by: open-sse/executors/antigravity.ts — escape hatch for multi-project setups.
|
|
# OMNIROUTE_ALLOW_BODY_PROJECT_OVERRIDE=0
|
|
|
|
# Adjust how Antigravity advertises remaining credits. Used by:
|
|
# open-sse/services/antigravityCredits.ts — accepts forced override strings.
|
|
# Default: empty (use upstream-reported credits).
|
|
#ANTIGRAVITY_CREDITS=
|
|
|
|
# Override the path to the Antigravity CLI (agy) token file read by the
|
|
# "auto-detect local login" import. Used by:
|
|
# src/app/api/providers/agy-auth/apply-local/route.ts — for non-standard installs.
|
|
# Default: ~/.gemini/antigravity-cli/antigravity-oauth-token
|
|
#AGY_TOKEN_FILE=
|
|
|
|
# ═══════════════════════════════════════════════════════════════════════════════
|
|
# 11. OAUTH PROVIDER CREDENTIALS
|
|
# ═══════════════════════════════════════════════════════════════════════════════
|
|
# Built-in default credentials for localhost development.
|
|
# For remote/VPS deployments, register your own at each provider's developer console.
|
|
# The bootstrap-env script auto-populates these in .env if missing.
|
|
# Can also be overridden via data/provider-credentials.json where supported.
|
|
|
|
# ── Claude Code (Anthropic) ──
|
|
CLAUDE_OAUTH_CLIENT_ID=9d1c250a-e61b-44d9-88ed-5944d1962f5e
|
|
# Custom redirect URI override for Claude OAuth callback.
|
|
# CLAUDE_CODE_REDIRECT_URI=https://platform.claude.com/oauth/code/callback
|
|
|
|
# ── Codex / OpenAI ──
|
|
CODEX_OAUTH_CLIENT_ID=app_EMoamEEZ73f0CkXaXp7hrann
|
|
|
|
# Milliseconds to wait between consecutive Codex token refreshes.
|
|
# Used by: open-sse/services/refreshSerializer.ts. Default: 0 (no spacing).
|
|
# CODEX_REFRESH_SPACING_MS=0
|
|
|
|
# ── Trae (ByteDance) ──
|
|
# Trae stream idle timeout (ms). Default: 300000 (5 min).
|
|
# Used by: open-sse/executors/trae.ts.
|
|
# TRAE_STREAM_TIMEOUT_MS=300000
|
|
|
|
# Trae OAuth token override. Used by: open-sse/executors/trae.ts.
|
|
# TRAE_TOKEN=
|
|
|
|
# ── The Old LLM (theoldllm) ──
|
|
# Playwright navigation timeout (ms) for the browser-backed token capture.
|
|
# Used by: open-sse/executors/theoldllm.ts. Default: 30000 (30s).
|
|
# THEOLDLLM_NAV_TIMEOUT_MS=30000
|
|
|
|
# ── Gemini / Antigravity / Windsurf (all Google-based) ──
|
|
# These providers ship public OAuth client_id/secret values (or Firebase Web
|
|
# keys) embedded in their public CLIs/binaries. Defaults are baked into the
|
|
# code via open-sse/utils/publicCreds.ts — leave the env vars unset to use
|
|
# them. Only set these if you registered your own OAuth app and want to use
|
|
# your own credentials instead. See docs/security/PUBLIC_CREDS.md for context.
|
|
#
|
|
# GEMINI_OAUTH_CLIENT_ID=
|
|
# GEMINI_OAUTH_CLIENT_SECRET=
|
|
# ANTIGRAVITY_OAUTH_CLIENT_ID=
|
|
# ANTIGRAVITY_OAUTH_CLIENT_SECRET=
|
|
# WINDSURF_FIREBASE_API_KEY=
|
|
|
|
# ── Qwen (Alibaba) ──
|
|
QWEN_OAUTH_CLIENT_ID=f0304373b74a44d2b584a3fb70ca9e56
|
|
|
|
# ── Kimi Coding (Moonshot) ──
|
|
KIMI_CODING_OAUTH_CLIENT_ID=17e5f671-d194-4dfb-9706-5516cb48c098
|
|
|
|
# ── GitHub Copilot ──
|
|
GITHUB_OAUTH_CLIENT_ID=Iv1.b507a08c87ecfe98
|
|
|
|
# ── GitLab Duo ──
|
|
# Register an OAuth app at: https://gitlab.com/-/profile/applications
|
|
# Set redirect URI to: http://localhost:20128/callback (or your NEXT_PUBLIC_BASE_URL + /callback)
|
|
# Required scopes: ai_features, read_user (matches GITLAB_DUO_CONFIG.scope in src/lib/oauth/constants/oauth.ts)
|
|
# GITLAB_DUO_OAUTH_CLIENT_ID=***
|
|
# GITLAB_DUO_OAUTH_CLIENT_SECRET=*** # optional — PKCE flow does not require a secret
|
|
#
|
|
# Self-managed GitLab Duo instance overrides.
|
|
# Used by: src/lib/oauth/gitlab.ts and src/lib/oauth/constants/oauth.ts —
|
|
# fall back to these when the _DUO_ variants above are unset.
|
|
#GITLAB_DUO_BASE_URL=https://gitlab.com
|
|
#GITLAB_BASE_URL=https://gitlab.com
|
|
#GITLAB_OAUTH_CLIENT_ID=
|
|
#GITLAB_OAUTH_CLIENT_SECRET=
|
|
|
|
# ── Qoder ──
|
|
# Public OAuth client secret embedded in the Qoder CLI binary. Required only
|
|
# when QODER_OAUTH_AUTHORIZE_URL / TOKEN_URL / USERINFO_URL / CLIENT_ID are
|
|
# also set (see QODER_CONFIG.enabled in src/lib/oauth/constants/oauth.ts).
|
|
# Extract the value from the public Qoder CLI binary if you intend to use it.
|
|
# QODER_OAUTH_CLIENT_SECRET=
|
|
|
|
# ── Qoder Browser OAuth (experimental) ──
|
|
# OmniRoute only enables the browser OAuth flow when ALL 5 variables below are set:
|
|
# - QODER_OAUTH_AUTHORIZE_URL
|
|
# - QODER_OAUTH_TOKEN_URL
|
|
# - QODER_OAUTH_USERINFO_URL
|
|
# - QODER_OAUTH_CLIENT_ID
|
|
# - QODER_OAUTH_CLIENT_SECRET
|
|
#
|
|
# Redirect URI to register in the Qoder OAuth app:
|
|
# - Localhost dev with PORT=20128: http://localhost:20128/callback
|
|
# - LAN access (example): http://192.168.0.15:20128/callback
|
|
# - Public domain (recommended): https://omniroute.example.com/callback
|
|
#
|
|
# Behind reverse proxy / public domain, also set NEXT_PUBLIC_BASE_URL to the same public origin.
|
|
# If these values are not available, prefer QODER_PERSONAL_ACCESS_TOKEN below.
|
|
# QODER_OAUTH_AUTHORIZE_URL=
|
|
# QODER_OAUTH_TOKEN_URL=
|
|
# QODER_OAUTH_USERINFO_URL=
|
|
# QODER_OAUTH_CLIENT_ID=
|
|
# QODER_OAUTH_CLIENT_SECRET=
|
|
|
|
# ── Qoder Personal Access Token (direct API key fallback) ──
|
|
# Used by: open-sse/executors/qoder.ts — bypasses OAuth when set.
|
|
# QODER_PERSONAL_ACCESS_TOKEN=
|
|
# QODER_CLI_WORKSPACE=
|
|
# OMNIROUTE_QODER_WORKSPACE=
|
|
# Override the Qoder CLI config dir (isolated PAT session, avoids clobbering a browser login).
|
|
# QODER_CLI_CONFIG_DIR=
|
|
|
|
# ── Blackbox Web validated-token override (issue #2252) ──
|
|
# Used by: open-sse/executors/blackbox-web.ts. Blackbox `/api/chat` rejects
|
|
# requests whose `validated` field doesn't match the frontend `tk` token,
|
|
# returning HTTP 403 even with a valid session cookie + active subscription.
|
|
# Set this to the `tk` value exported from app.blackbox.ai's Next.js bundle
|
|
# to bypass the random-UUID fallback. Leave empty to keep the legacy behavior.
|
|
# BLACKBOX_WEB_VALIDATED_TOKEN=
|
|
|
|
# ── Vision Bridge OpenAI-compatible endpoint override (issue #2232) ──
|
|
# Used by: src/lib/guardrails/visionBridgeHelpers.ts. By default the
|
|
# vision-bridge guardrail sends non-Anthropic image-description calls to
|
|
# `https://api.openai.com/v1`, which fails with 401 if your operator doesn't
|
|
# have an OpenAI key or wants to use a different vision model
|
|
# (e.g., `google/gemini-2.0-flash` via the Gemini OpenAI-compat endpoint, or
|
|
# any model registered in OmniRoute via the self-loop endpoint).
|
|
#
|
|
# Set these two env vars to point the bridge at any OpenAI-compatible URL:
|
|
# - VISION_BRIDGE_BASE_URL=http://localhost:20128/v1 (OmniRoute self-loop)
|
|
# - VISION_BRIDGE_BASE_URL=https://generativelanguage.googleapis.com/v1beta/openai
|
|
# - VISION_BRIDGE_BASE_URL=https://openrouter.ai/api/v1
|
|
# Anthropic models (anthropic/*) keep their dedicated path and are unaffected.
|
|
# VISION_BRIDGE_BASE_URL=
|
|
# VISION_BRIDGE_API_KEY=
|
|
|
|
# ─────────────────────────────────────────────────────────────────────────────
|
|
# ⚠️ GOOGLE OAUTH (Antigravity) & OTHER PROVIDERS — REMOTE SERVERS
|
|
# ─────────────────────────────────────────────────────────────────────────────
|
|
# The default Client IDs above ONLY work when OmniRoute runs on localhost.
|
|
# For remote/VPS hosting (including Docker containers on remote servers):
|
|
# 1. By default, the browser will attempt OAuth redirects back to localhost, which will fail.
|
|
# 2. Set NEXT_PUBLIC_BASE_URL=https://your-domain.com to fix the redirect URI.
|
|
# 3. You MUST create your own OAuth App in each provider's developer console (Google Cloud, etc.)
|
|
# and set the Authorized redirect URI to your domain (e.g., https://your-domain.com/callback).
|
|
# 4. Replace the _OAUTH_CLIENT_ID and _SECRET values above with your own credentials.
|
|
# ─────────────────────────────────────────────────────────────────────────────
|
|
|
|
# ── OAuth sidecar/CLI bridge (internal) ──
|
|
# Used by: src/lib/oauth/config/index.ts — internal CLI↔OmniRoute auth bridge.
|
|
# OMNIROUTE_SERVER=http://localhost:20128
|
|
# OMNIROUTE_TOKEN=
|
|
# OMNIROUTE_USER_ID=cli
|
|
# CLI_TOKEN= # legacy alias for OMNIROUTE_TOKEN
|
|
# CLI_USER_ID= # legacy alias for OMNIROUTE_USER_ID
|
|
# SERVER_URL= # legacy alias for OMNIROUTE_SERVER
|
|
|
|
# ═══════════════════════════════════════════════════════════════════════════════
|
|
# 12. PROVIDER USER-AGENT OVERRIDES
|
|
# ═══════════════════════════════════════════════════════════════════════════════
|
|
# Customize the User-Agent header sent to each upstream provider.
|
|
# Format: {PROVIDER_ID}_USER_AGENT=custom-value
|
|
# Used by: open-sse/executors/base.ts — buildHeaders() dynamic lookup.
|
|
# Update these when providers release new CLI versions to avoid blocks.
|
|
|
|
CLAUDE_USER_AGENT="claude-cli/2.1.195 (external, cli)"
|
|
|
|
# Disable the deterministic tool-name cloak applied on both Anthropic-bound paths
|
|
# (executors/base.ts native OAuth + executors/cliproxyapi.ts CLIProxyAPI) —
|
|
# third-party-harness tool names are aliased to
|
|
# Claude Code canonical or PascalCase forms so Anthropic does not refuse the
|
|
# stream with a misleading 400 out-of-extra-usage placeholder. Set to true to
|
|
# forward the original names verbatim (debugging only).
|
|
# CLAUDE_DISABLE_TOOL_NAME_CLOAK=false
|
|
CODEX_USER_AGENT="codex-cli/0.142.0 (Windows 10.0.26200; x64)"
|
|
GITHUB_USER_AGENT="GitHubCopilotChat/0.54.0"
|
|
ANTIGRAVITY_USER_AGENT="antigravity/2.0.1 linux/arm64 google-api-nodejs-client/10.3.0"
|
|
KIRO_USER_AGENT="AWS-SDK-JS/3.0.0 kiro-ide/1.0.0"
|
|
# KIRO_VERIFY_FULL_CRC=false # opt-in: full per-frame message CRC validation on the Kiro event stream (debug corrupted streams; prelude CRC + TLS already protect framing)
|
|
# Optional override for the Kiro social device-code OAuth clientId. Kiro's
|
|
# device endpoint accepts any non-empty string and behaves like a User-Agent
|
|
# rather than a secret. Only override if AWS ever starts enforcing this field.
|
|
# Used by: src/lib/oauth/constants/oauth.ts (KIRO_CONFIG.socialClientId).
|
|
# KIRO_OAUTH_CLIENT_ID=kiro-cli
|
|
# Enable full per-frame message CRC validation for Kiro streams. Off by default
|
|
# because it is O(frame bytes) on the main thread; use only for debugging
|
|
# suspected corrupted-stream issues.
|
|
# Used by: open-sse/executors/kiro.ts
|
|
# KIRO_VERIFY_FULL_CRC=false
|
|
QODER_USER_AGENT="Qoder-Cli"
|
|
QWEN_USER_AGENT="QwenCode/0.19.3 (linux; x64)"
|
|
CURSOR_USER_AGENT="Cursor/3.4"
|
|
|
|
# Override Codex client version sent in headers independently of the
|
|
# CODEX_USER_AGENT string. Used by: open-sse/config/codexClient.ts.
|
|
# CODEX_CLIENT_VERSION=0.142.0
|
|
|
|
# Kill-switch to strip non-standard `codex.*` SSE events (e.g. codex.rate_limits)
|
|
# from the Codex Responses stream. These frames break the OpenAI SDK's
|
|
# responses.stream() with a 502 "Controller is already closed". Off by default;
|
|
# set to true/1/yes to enable. Used by: open-sse/executors/codex.ts.
|
|
# OMNIROUTE_CODEX_DROP_NONSTANDARD_EVENTS=true
|
|
|
|
# ═══════════════════════════════════════════════════════════════════════════════
|
|
# 13. CLI FINGERPRINT COMPATIBILITY (Anti-Detection)
|
|
# ═══════════════════════════════════════════════════════════════════════════════
|
|
# When enabled, OmniRoute reorders HTTP headers and JSON body fields to match
|
|
# the exact signature of official CLI tools, reducing account flagging risk.
|
|
# Your proxy IP is preserved — you get both stealth AND IP masking.
|
|
# Used by: open-sse/config/cliFingerprints.ts, open-sse/executors/base.ts
|
|
|
|
# Enable per-provider:
|
|
# CLI_COMPAT_CODEX=1
|
|
# CLI_COMPAT_CLAUDE=1
|
|
# CLI_COMPAT_GITHUB=1
|
|
# CLI_COMPAT_ANTIGRAVITY=1
|
|
# CLI_COMPAT_CURSOR=1
|
|
# CLI_COMPAT_KIMI_CODING=1
|
|
# CLI_COMPAT_KILOCODE=1
|
|
# CLI_COMPAT_CLINE=1
|
|
# CLI_COMPAT_QWEN=1
|
|
|
|
# Or enable for all providers at once:
|
|
# CLI_COMPAT_ALL=1
|
|
|
|
# ── Kimi Coding CLI identity overrides ──
|
|
# Used by: src/lib/oauth/providers/kimi-coding.ts — sent in OAuth + API headers.
|
|
# Leave unset to use the captured defaults baked into the OmniRoute build.
|
|
#KIMI_CLI_VERSION=1.36.0
|
|
#KIMI_CODING_DEVICE_ID=
|
|
|
|
# ═══════════════════════════════════════════════════════════════════════════════
|
|
# 14. API KEY PROVIDERS
|
|
# ═══════════════════════════════════════════════════════════════════════════════
|
|
# API keys for direct-authentication providers.
|
|
# Preferred setup: Dashboard → Providers → Add API Key.
|
|
# Setting here is an alternative for Docker/headless deployments.
|
|
|
|
# Static API keys for direct-authentication providers wired through the runtime.
|
|
# OmniRoute loads provider credentials from the encrypted database or
|
|
# data/provider-credentials.json. The variables below are documented escape
|
|
# hatches that are referenced in code today.
|
|
# DEEPSEEK_API_KEY=
|
|
# NVIDIA_API_KEY=
|
|
|
|
# Windsurf / Devin CLI direct API key.
|
|
# Used by: open-sse/executors/devin-cli.ts — bypasses OAuth when set.
|
|
# WINDSURF_API_KEY=
|
|
|
|
# Embedding Providers (optional — used by /v1/embeddings)
|
|
# OpenAI/Mistral/Together/Fireworks/NVIDIA configured via Dashboard → Providers
|
|
# also work for embeddings.
|
|
|
|
# ═══════════════════════════════════════════════════════════════════════════════
|
|
# 15. TIMEOUT SETTINGS
|
|
# ═══════════════════════════════════════════════════════════════════════════════
|
|
# All timeout values are in milliseconds.
|
|
# Used by: src/shared/utils/runtimeTimeouts.ts — centralized timeout resolution.
|
|
#
|
|
# Hierarchy: REQUEST_TIMEOUT_MS acts as a global override.
|
|
# If set, it becomes the default for FETCH_TIMEOUT_MS, STREAM_IDLE_TIMEOUT_MS,
|
|
# and STREAM_READINESS_TIMEOUT_MS.
|
|
# The fine-grained variables below override their respective defaults only when set.
|
|
|
|
# ── Global shortcut ──
|
|
# REQUEST_TIMEOUT_MS=600000 # Overrides both fetch and stream idle defaults
|
|
|
|
# ── Upstream fetch (provider calls) ──
|
|
# FETCH_TIMEOUT_MS=600000 # Total request timeout (default: 600000 = 10 min)
|
|
# # Also drives anthropic-compatible-cc-* X-Stainless-Timeout.
|
|
# FETCH_HEADERS_TIMEOUT_MS=600000 # Time to receive response headers
|
|
# FETCH_BODY_TIMEOUT_MS=600000 # Time to receive full response body
|
|
# FETCH_CONNECT_TIMEOUT_MS=30000 # TCP connection establishment (default: 30s)
|
|
# FETCH_KEEPALIVE_TIMEOUT_MS=4000 # Keep-alive socket idle timeout (default: 4s)
|
|
|
|
# Default timeout (ms) for src/shared/utils/fetchTimeout.ts. Acts as the
|
|
# fallback when FETCH_TIMEOUT_MS is unset. Default: 120000 (2 min).
|
|
# OMNIROUTE_DEFAULT_FETCH_TIMEOUT_MS=120000
|
|
|
|
# ── Firecrawl web-fetch executor ──
|
|
# Point at a self-hosted Firecrawl instance (defaults to the public cloud API).
|
|
# When set to a non-cloud base URL, the API key becomes optional.
|
|
# FIRECRAWL_BASE_URL=https://api.firecrawl.dev
|
|
# FIRECRAWL_TIMEOUT_MS=30000 # Per-request timeout (default: 30000 = 30s)
|
|
|
|
# ── ChatGPT TLS sidecar (Firefox-fingerprinted client) ──
|
|
# Used by: open-sse/services/chatgptTlsClient.ts — wire-level timeout for
|
|
# the bogdanfinn/tls-client koffi binding and the JS-side grace window
|
|
# layered on top of it when the native library is wedged.
|
|
# OMNIROUTE_CHATGPT_TLS_TIMEOUT_MS=60000
|
|
# OMNIROUTE_CHATGPT_TLS_GRACE_MS=10000
|
|
# Max wait for the FIRST streamed byte from the ChatGPT TLS sidecar before the
|
|
# request is aborted as a dead stream, in milliseconds. Default 30000 (30s).
|
|
# Raise it if upstream cold-starts routinely exceed the window.
|
|
# OMNIROUTE_CHATGPT_STREAM_FIRST_BYTE_TIMEOUT_MS=30000
|
|
|
|
# ── Claude TLS sidecar (Chromium-fingerprinted client) ──
|
|
# Used by: open-sse/services/claudeTlsClient.ts — wire-level timeout for
|
|
# the bogdanfinn/tls-client koffi binding and the JS-side grace window
|
|
# layered on top of it when the native library is wedged.
|
|
# OMNIROUTE_CLAUDE_TLS_TIMEOUT_MS=60000
|
|
# OMNIROUTE_CLAUDE_TLS_GRACE_MS=10000
|
|
|
|
# ── Perplexity TLS sidecar (Firefox-fingerprinted client) ──
|
|
# Used by: open-sse/services/perplexityTlsClient.ts — wire-level timeout for
|
|
# the bogdanfinn/tls-client koffi binding and the JS-side grace window
|
|
# layered on top of it when the native library is wedged.
|
|
# OMNIROUTE_PPLX_TLS_TIMEOUT_MS=30000
|
|
# OMNIROUTE_PPLX_TLS_GRACE_MS=10000
|
|
|
|
# ── Grok web TLS sidecar (Chrome-fingerprinted client) ──
|
|
# Used by: open-sse/services/grokTlsClient.ts — wire-level timeout for the
|
|
# bogdanfinn/tls-client koffi binding and the JS-side grace window layered on
|
|
# top of it when the native library is wedged.
|
|
# OMNIROUTE_GROK_TLS_TIMEOUT_MS=60000
|
|
# OMNIROUTE_GROK_TLS_GRACE_MS=10000
|
|
|
|
# ── Browser-backed web-cookie chat (Playwright shared pool) ──
|
|
# Used by: open-sse/services/browserPool.ts + browserBackedChat.ts. The shared
|
|
# browser pool warms a headless context for web-cookie providers (e.g. claude-web)
|
|
# that need a real browser to satisfy anti-bot challenges. Set OMNIROUTE_BROWSER_POOL=off
|
|
# to fully disable the pool; set WEB_COOKIE_USE_BROWSER=1 to opt a web-cookie chat
|
|
# request into the browser-backed path.
|
|
# OMNIROUTE_BROWSER_POOL=on
|
|
# WEB_COOKIE_USE_BROWSER=0
|
|
|
|
# ── Circuit breaker thresholds and reset windows ──
|
|
# Used by: open-sse/config/constants.ts → src/lib/resilience/settings.ts.
|
|
# Defaults match historical PROVIDER_PROFILES values (post-scaling for
|
|
# 500+ connections). Lower the threshold to react faster, raise it to
|
|
# tolerate more transient failures before short-circuiting.
|
|
# OMNIROUTE_CIRCUIT_BREAKER_OAUTH_THRESHOLD=8
|
|
# OMNIROUTE_CIRCUIT_BREAKER_OAUTH_RESET_MS=60000
|
|
# OMNIROUTE_CIRCUIT_BREAKER_API_KEY_THRESHOLD=12
|
|
# OMNIROUTE_CIRCUIT_BREAKER_API_KEY_RESET_MS=30000
|
|
# OMNIROUTE_CIRCUIT_BREAKER_LOCAL_THRESHOLD=2
|
|
# OMNIROUTE_CIRCUIT_BREAKER_LOCAL_RESET_MS=15000
|
|
|
|
# ── Context-cache pin health gate ──
|
|
# Used by: open-sse/services/combo.ts. When a context-cache pin points at a
|
|
# provider that is durably unhealthy, the pin is dropped to allow failover.
|
|
# PIN_DROP_BACKOFF_LEVEL gates how deep a connection's backoff must be before the
|
|
# pin is considered durably unhealthy; PIN_DROP_GRACE_MS is the anti-flap window
|
|
# that tolerates brief transient cooldowns before dropping the pin.
|
|
# PIN_DROP_BACKOFF_LEVEL=2
|
|
# PIN_DROP_GRACE_MS=20000
|
|
|
|
# ── Stream idle detection ──
|
|
# STREAM_IDLE_TIMEOUT_MS=600000 # Max silence between SSE chunks (default: 600000)
|
|
# # Extended-thinking models rarely pause >90s.
|
|
# STREAM_READINESS_TIMEOUT_MS=80000 # Time to receive the first non-ping SSE event
|
|
# STREAM_READINESS_MAX_TIMEOUT_MS=180000 # Cap for adaptive first-event extensions
|
|
# # (large/tool-heavy/high-reasoning requests).
|
|
# OMNIROUTE_AGENT_GOAL_POLICY_ENABLED=true # Kill-switch for the /goal heuristic below.
|
|
# # Set to false to fully disable detection —
|
|
# # readiness timeouts and stream recovery are
|
|
# # never elevated by request body/headers when off.
|
|
# OMNIROUTE_AGENT_GOAL_READINESS_MAX_TIMEOUT_MS=600000 # Auto cap for detected /goal agent runs
|
|
# OMNIROUTE_AGENT_GOAL_STREAM_RECOVERY=true # Auto early stream recovery for /goal runs.
|
|
# # NOTE: this can only ADD recovery on top of the
|
|
# # operator default — it never overrides an explicit
|
|
# # STREAM_RECOVERY_ENABLED / DB settings opt-out.
|
|
|
|
# ── TLS client (wreq-js fingerprint proxy) ──
|
|
# TLS_CLIENT_TIMEOUT_MS=600000 # Inherits from FETCH_TIMEOUT_MS by default
|
|
|
|
# ── API Bridge (/v1 proxy server) ──
|
|
# API_BRIDGE_PROXY_TIMEOUT_MS=600000 # Proxy hop timeout (default: 10min)
|
|
# API_BRIDGE_SERVER_REQUEST_TIMEOUT_MS=600000 # Overall server request timeout (default: 10min)
|
|
# API_BRIDGE_SERVER_HEADERS_TIMEOUT_MS=60000 # Time to send response headers
|
|
# API_BRIDGE_SERVER_KEEPALIVE_TIMEOUT_MS=5000 # Keep-alive idle timeout
|
|
# API_BRIDGE_SERVER_SOCKET_TIMEOUT_MS=0 # Raw socket timeout (0 = disabled)
|
|
|
|
# ── Graceful shutdown ──
|
|
# Time to wait for in-flight requests before force-exiting on SIGTERM/SIGINT.
|
|
# Used by: src/lib/gracefulShutdown.ts
|
|
# Default: 30000 (30 seconds)
|
|
# SHUTDOWN_TIMEOUT_MS=30000
|
|
|
|
# ═══════════════════════════════════════════════════════════════════════════════
|
|
# 16. LOGGING
|
|
# ═══════════════════════════════════════════════════════════════════════════════
|
|
# Used by: src/lib/logEnv.ts, src/lib/logRotation.ts, src/shared/utils/logger.ts
|
|
|
|
# Application log level — controls console and file log verbosity.
|
|
# Values: debug | info | warn | error | Default: info
|
|
# APP_LOG_LEVEL=info
|
|
|
|
# Log output format.
|
|
# Values: text | json | Default: text
|
|
# APP_LOG_FORMAT=text
|
|
|
|
# Write logs to file in addition to stdout.
|
|
# Default: true | Set false to disable file logging.
|
|
APP_LOG_TO_FILE=true
|
|
|
|
# Path to the application log file.
|
|
# Default: logs/application/app.log (relative to project root / DATA_DIR)
|
|
# APP_LOG_FILE_PATH=logs/application/app.log
|
|
|
|
# Maximum single log file size before rotation.
|
|
# Accepts: plain bytes or suffixed (50M, 1G, 512K). Default: 50M
|
|
# APP_LOG_MAX_FILE_SIZE=50M
|
|
|
|
# Days to keep rotated application log files before auto-deletion.
|
|
# Default: 7
|
|
# APP_LOG_RETENTION_DAYS=7
|
|
|
|
# Maximum number of rotated log file backups to keep.
|
|
# Default: 20
|
|
# APP_LOG_MAX_FILES=20
|
|
|
|
# How often OmniRoute checks whether the active log file has exceeded
|
|
# APP_LOG_MAX_FILE_SIZE and triggers a rotation. Set lower for very verbose
|
|
# services to prevent log files from growing large between checks.
|
|
# Accepts milliseconds. Default: 60000 (1 minute)
|
|
# APP_LOG_ROTATION_CHECK_INTERVAL_MS=60000
|
|
|
|
# Days to keep request/call log entries in the database before auto-cleanup.
|
|
# Default: 7
|
|
# CALL_LOG_RETENTION_DAYS=7
|
|
|
|
# Maximum call log entries stored in-memory buffer.
|
|
# Default: 10000
|
|
# CALL_LOG_MAX_ENTRIES=10000
|
|
|
|
# Maximum rows in the call_logs SQLite table before oldest entries are pruned.
|
|
# Default: 100000
|
|
# CALL_LOGS_TABLE_MAX_ROWS=100000
|
|
|
|
# Maximum age for orphaned active request log entries before the in-memory
|
|
# pending-request reaper removes them. Accepts milliseconds.
|
|
# Default: 3600000 (1 hour)
|
|
# MAX_PENDING_REQUEST_AGE_MS=3600000
|
|
|
|
# Whether call log pipeline capture stores stream chunks when enabled in settings.
|
|
# Only applies when call_log_pipeline_enabled=true.
|
|
# Default: true
|
|
# CALL_LOG_PIPELINE_CAPTURE_STREAM_CHUNKS=true
|
|
|
|
# Maximum call log artifact size for pipeline captures, in KB.
|
|
# Only applies when call_log_pipeline_enabled=true.
|
|
# Default: 512
|
|
# CALL_LOG_PIPELINE_MAX_SIZE_KB=512
|
|
|
|
# Call log payload truncation limits — controls how much of request/response
|
|
# bodies is retained in the database.
|
|
# Used by: open-sse/handlers/chatCore.ts — cloneBoundedChatLogPayload()
|
|
# CHAT_LOG_TEXT_LIMIT=65536 # Max string length before truncation (default: 64 KB)
|
|
# CHAT_LOG_ARRAY_TAIL_ITEMS=24 # Number of array items retained from tail (default: 24)
|
|
# CHAT_LOG_MAX_DEPTH=6 # Max nesting depth before truncation (default: 6)
|
|
# CHAT_LOG_MAX_OBJECT_KEYS=80 # Max object keys retained (default: 80, 0 = no limit)
|
|
|
|
# Maximum rows in the proxy_logs SQLite table.
|
|
# Default: 100000
|
|
# PROXY_LOGS_TABLE_MAX_ROWS=100000
|
|
|
|
# ═══════════════════════════════════════════════════════════════════════════════
|
|
# 17. MEMORY OPTIMIZATION (Low-RAM / Docker)
|
|
# ═══════════════════════════════════════════════════════════════════════════════
|
|
|
|
# Node.js V8 heap limit in MB, passed to the server via --max-old-space-size.
|
|
# Used by the standalone launcher (Docker CMD) and `omniroute serve`.
|
|
# Clamped to [64, 16384]. Default: 512 (safe for a 1 GB / 1 core VPS). Size it to
|
|
# roughly half the box's RAM, leaving the rest for native memory (better-sqlite3,
|
|
# buffers — ~300 MB) and the OS:
|
|
# 1 GB RAM → 512 (default)
|
|
# 2 GB RAM → 1024
|
|
# 4 GB RAM → 2048
|
|
# In a memory-capped container, set this EXPLICITLY: Node reads the HOST's RAM,
|
|
# not the cgroup limit, so leaving it to a RAM heuristic can oversize the heap and
|
|
# get the container OOM-killed. (#2939)
|
|
# OMNIROUTE_MEMORY_MB=512
|
|
|
|
# Heap-pressure shed threshold (MB) — chatCore returns 503 when V8 heapUsed exceeds
|
|
# it, to avoid hard OOM under concurrent large-context load.
|
|
# LEAVE UNSET: it now AUTO-CALIBRATES to 85% of the actual V8 heap ceiling, so it
|
|
# tracks OMNIROUTE_MEMORY_MB above and never sits below the ~260 MB runtime baseline
|
|
# (a fixed 200 here used to reject every request). Used by: open-sse/utils/heapPressure.ts.
|
|
# Override only to hand-tune for a known workload.
|
|
# HEAP_PRESSURE_THRESHOLD_MB=
|
|
|
|
# ── CLI helpers (bin/cli/) ──
|
|
# Override UI language for CLI output. Accepts BCP-47 locale (e.g. en, pt-BR).
|
|
# Falls back to LC_ALL / LC_MESSAGES / LANG / en if unset.
|
|
# OMNIROUTE_LANG=en
|
|
|
|
# Show server logs inline when running in supervised mode (omniroute serve).
|
|
# Set to "1" to forward server stdout/stderr to the terminal.
|
|
# Equivalent to the --log flag on `omniroute serve`.
|
|
# OMNIROUTE_SHOW_LOG=1
|
|
|
|
# Bearer token injected as x-omniroute-cli-token header for machine-auth (task 8.12).
|
|
# Auto-generated on first run if machine-id is available; set manually to override.
|
|
# OMNIROUTE_CLI_TOKEN=
|
|
|
|
# Per-attempt HTTP timeout for CLI → server calls (milliseconds). Default: 30000.
|
|
# OMNIROUTE_HTTP_TIMEOUT_MS=30000
|
|
|
|
# Set to 1 to print retry/backoff details to stderr during CLI commands.
|
|
# OMNIROUTE_VERBOSE=0
|
|
|
|
# Custom directory for CLI plugin discovery (omniroute-cmd-* packages).
|
|
# Default: ~/.omniroute/plugins/ Override in dev/CI to point at a local plugin tree.
|
|
# OMNIROUTE_PLUGIN_PATH=
|
|
|
|
# Allow plugins to request the 'exec' permission (spawn child processes from the
|
|
# plugin worker sandbox). Disabled by default; set to 1 to enable (local operator only).
|
|
# OMNIROUTE_PLUGINS_ALLOW_EXEC=0
|
|
|
|
# ── Prompt cache (system prompt deduplication) ──
|
|
# Used by: open-sse/services — caches identical system prompts across requests.
|
|
# PROMPT_CACHE_MAX_SIZE=50 # Max cached entries (default: 50)
|
|
# PROMPT_CACHE_MAX_BYTES=2097152 # Max total cache size in bytes (default: 2 MB)
|
|
# PROMPT_CACHE_TTL_MS=300000 # Cache entry TTL (default: 5 minutes)
|
|
|
|
# ── Semantic cache (deterministic response dedup, temperature=0) ──
|
|
# Used by: open-sse/services — caches identical temperature=0 responses.
|
|
# SEMANTIC_CACHE_MAX_SIZE=100 # Max cached entries (default: 100)
|
|
# SEMANTIC_CACHE_MAX_BYTES=4194304 # Max total cache size in bytes (default: 4 MB)
|
|
# SEMANTIC_CACHE_TTL_MS=1800000 # Cache entry TTL (default: 30 minutes)
|
|
|
|
# ── In-memory log buffers ──
|
|
# Maximum recent stream events kept in memory for the Dashboard live view.
|
|
# STREAM_HISTORY_MAX=50
|
|
|
|
# ── Context length default ──
|
|
# Global fallback max context length for models without explicit config.
|
|
# Used by: open-sse/services/contextManager.ts
|
|
# CONTEXT_LENGTH_DEFAULT=128000
|
|
|
|
# ── Usage token buffer ──
|
|
# Extra token headroom reserved when tracking usage quotas (prevents over-limit).
|
|
# Used by: open-sse/utils/usageTracking.ts
|
|
# USAGE_TOKEN_BUFFER=100
|
|
|
|
# ═══════════════════════════════════════════════════════════════════════════════
|
|
# 18. PRICING SYNC
|
|
# ═══════════════════════════════════════════════════════════════════════════════
|
|
# Automatic model pricing synchronization from external sources.
|
|
# Used by: src/lib/pricingSync.ts
|
|
|
|
# Enable periodic pricing data sync. Default: false (opt-in only).
|
|
# PRICING_SYNC_ENABLED=false
|
|
|
|
# Sync interval in seconds. Default: 86400 (24 hours).
|
|
# PRICING_SYNC_INTERVAL=86400
|
|
|
|
# Comma-separated data sources. Default: litellm
|
|
# PRICING_SYNC_SOURCES=litellm
|
|
|
|
# ═══════════════════════════════════════════════════════════════════════════════
|
|
# 18b. ARENA ELO SYNC
|
|
# ═══════════════════════════════════════════════════════════════════════════════
|
|
# Auto-update model intelligence from Arena AI leaderboard ELO scores (powers the
|
|
# Free Provider Rankings page). ON by default — fetches from api.wulong.dev on startup
|
|
# (non-blocking, never fatal). Set to false to opt out of the outbound sync.
|
|
# Also configurable from Dashboard > Settings > Feature Flags.
|
|
# Used by: src/shared/constants/featureFlagDefinitions.ts, src/lib/arenaEloSync.ts
|
|
# ARENA_ELO_SYNC_ENABLED=true
|
|
|
|
# Sync interval in seconds. Default: 86400 (24 hours).
|
|
# ARENA_ELO_SYNC_INTERVAL=86400
|
|
|
|
# ═══════════════════════════════════════════════════════════════════════════════
|
|
# 19. MODEL SYNC (Dev)
|
|
# ═══════════════════════════════════════════════════════════════════════════════
|
|
# Development-time model catalog sync interval in seconds.
|
|
# Used by: src/lib/modelsDevSync.ts
|
|
# Default: 86400 (24 hours)
|
|
# MODELS_DEV_SYNC_INTERVAL=86400
|
|
|
|
# Self-correcting context-window reconciler interval in seconds (feature 5004).
|
|
# Pins provider-declared windows from /models discovery as auto:discovery overrides
|
|
# when they diverge from the catalog. Set to 0 to disable. Never overwrites manual overrides.
|
|
# Used by: src/lib/contextWindowResolver.ts
|
|
# Default: 86400 (24 hours)
|
|
# CONTEXT_WINDOW_RECONCILE_INTERVAL=86400
|
|
|
|
# ═══════════════════════════════════════════════════════════════════════════════
|
|
# 20. PROVIDER-SPECIFIC SETTINGS
|
|
# ═══════════════════════════════════════════════════════════════════════════════
|
|
|
|
# ── OpenRouter ──
|
|
# OpenRouter model catalog cache TTL in ms.
|
|
# Used by: src/lib/catalog/openrouterCatalog.ts
|
|
# Default: 86400000 (24 hours)
|
|
# OPENROUTER_CATALOG_TTL_MS=86400000
|
|
|
|
# ── Model catalog response shape ──
|
|
# Include display-friendly name fields in /v1/models responses.
|
|
# Disable for clients that expect model IDs only.
|
|
# Defined in: src/shared/constants/featureFlagDefinitions.ts
|
|
# Used by: src/app/api/v1/models/catalog.ts
|
|
# Default: true
|
|
# MODEL_CATALOG_INCLUDE_NAMES=true
|
|
|
|
# ── NanoBanana (Image Generation) ──
|
|
# Polling config for async image generation jobs.
|
|
# Used by: open-sse/handlers/imageGeneration.ts
|
|
# NANOBANANA_POLL_TIMEOUT_MS=120000 # Max wait for job completion (default: 120s)
|
|
# NANOBANANA_POLL_INTERVAL_MS=2500 # Poll frequency (default: 2.5s)
|
|
|
|
# ── AWS Bedrock (Kiro / Audio) ──
|
|
# Region used to construct AWS Bedrock endpoints. Used by:
|
|
# src/lib/providers/validation.ts and open-sse/handlers/audioSpeech.ts.
|
|
# AWS_REGION takes precedence over AWS_DEFAULT_REGION when both are set.
|
|
# AWS_REGION=us-east-1
|
|
# AWS_DEFAULT_REGION=us-east-1
|
|
|
|
# ── Cloudflare Workers AI ──
|
|
# Account ID override for Cloudflare Workers AI executor.
|
|
# Used by: open-sse/executors/cloudflare-ai.ts
|
|
# CLOUDFLARE_ACCOUNT_ID=
|
|
|
|
# ── Deno Deploy proxy relay (#4643 / 9router#1437) ──
|
|
# Override the Deno Deploy REST API base used by the proxy-pool relay deployer.
|
|
# Default: https://api.deno.com/v2 (omit unless mocking).
|
|
# Used by: src/app/api/settings/proxy/deno-deploy/route.ts
|
|
# DENO_DEPLOY_API_BASE=https://api.deno.com/v2
|
|
|
|
# Default Deno Deploy app name suggested in the "Deploy Relay" modal.
|
|
# Used by: src/app/(dashboard)/dashboard/settings/components/proxy/DenoRelayModal.tsx
|
|
# NEXT_PUBLIC_DENO_RELAY_DEFAULT_PROJECT=omniroute-deno-relay
|
|
|
|
# Set to "false" to hide the Deno Deploy relay option from the Proxy Pool tab.
|
|
# Used by: src/app/(dashboard)/dashboard/settings/components/proxy/ProxyPoolTab.tsx
|
|
# NEXT_PUBLIC_DENO_RELAY_ENABLED=true
|
|
|
|
# ── Cloudflare Workers proxy relay (#4640 / 9router#1360) ──
|
|
# Override the Cloudflare REST API base used by the proxy-pool relay deployer.
|
|
# Default: https://api.cloudflare.com/client/v4 (omit unless mocking).
|
|
# Used by: src/app/api/settings/proxy/cloudflare-deploy/route.ts
|
|
# CLOUDFLARE_API_BASE=https://api.cloudflare.com/client/v4
|
|
|
|
# Default worker project name suggested in the "Deploy Relay" modal.
|
|
# Used by: src/app/(dashboard)/dashboard/settings/components/proxy/CloudflareRelayModal.tsx
|
|
# NEXT_PUBLIC_CLOUDFLARE_RELAY_DEFAULT_PROJECT=omniroute-relay
|
|
|
|
# Set to "false" to hide the Cloudflare Workers relay option from the Proxy Pool tab.
|
|
# Used by: src/app/(dashboard)/dashboard/settings/components/proxy/ProxyPoolTab.tsx
|
|
# NEXT_PUBLIC_CLOUDFLARE_RELAY_ENABLED=true
|
|
|
|
# ── Cloudflare Tunnel (cloudflared) ──
|
|
# Custom path to cloudflared binary for tunnel management.
|
|
# Used by: src/lib/cloudflaredTunnel.ts
|
|
# CLOUDFLARED_BIN=/usr/local/bin/cloudflared
|
|
|
|
# ── Search cache ──
|
|
# TTL for search API response caching (Perplexity, Brave, etc.).
|
|
# Used by: open-sse/services/searchCache.ts
|
|
# Default: 300000 (5 minutes)
|
|
# SEARCH_CACHE_TTL_MS=300000
|
|
|
|
# ── OpenAI-compatible multi-connection ──
|
|
# Allow multiple simultaneous connections per OpenAI-compatible provider node.
|
|
# Used by: src/app/api/providers/route.ts
|
|
# ALLOW_MULTI_CONNECTIONS_PER_COMPAT_NODE=false
|
|
|
|
# ── CC-compatible provider (experimental) ──
|
|
# Enable the Claude Code compatible provider endpoint.
|
|
# This is only for third-party relays that accept Claude Code clients exclusively.
|
|
# OmniRoute rewrites requests to pass those relays' Claude Code client validation.
|
|
# If you only want to use Claude Code CLI, or you are not sure what these relays are,
|
|
# keep this disabled and add a regular Anthropic-compatible provider instead.
|
|
# Used by: src/shared/utils/featureFlags.ts
|
|
# ENABLE_CC_COMPATIBLE_PROVIDER=false
|
|
|
|
# ── 9router embedded service ──
|
|
# Override the host/port where the embedded 9router instance listens.
|
|
# Rarely needed — defaults match the bootstrap config (127.0.0.1:20130).
|
|
# Used by: open-sse/executors/ninerouter.ts
|
|
# NINEROUTER_HOST=127.0.0.1
|
|
# NINEROUTER_PORT=20130
|
|
|
|
# ── Embedded service WebSocket proxy ──
|
|
# Standalone WebSocket proxy that tunnels WS connections to embedded services.
|
|
# Binds to loopback by default. Only change EMBED_WS_PROXY_HOST if you know
|
|
# what you are doing — exposing this to non-loopback bypasses local-only policy.
|
|
# Used by: src/lib/services/embedWsProxy.ts
|
|
# EMBED_WS_PROXY_HOST=127.0.0.1
|
|
# EMBED_WS_PROXY_PORT=20131
|
|
|
|
# ── CLIProxyAPI bridge (legacy) ──
|
|
# Connection settings for external CLIProxyAPI instances.
|
|
# Used by: open-sse/executors/cliproxyapi.ts
|
|
# CLIPROXYAPI_HOST=127.0.0.1
|
|
# CLIPROXYAPI_PORT=5544
|
|
# CLIPROXYAPI_CONFIG_DIR=~/.cli-proxy-api
|
|
|
|
# ── Mux embedded service ──
|
|
# Override the port where the embedded Mux (coder/mux) agent-orchestration
|
|
# daemon listens. Always bound to 127.0.0.1 — never configurable to 0.0.0.0.
|
|
# Rarely needed — defaults to 8322.
|
|
# Used by: src/lib/services/bootstrap.ts, src/app/api/services/mux/_lib.ts
|
|
# MUX_SERVICE_PORT=8322
|
|
|
|
# ── Local hostnames (Docker networking) ──
|
|
# Comma-separated additional hostnames treated as "local" for provider routing.
|
|
# Used by: open-sse/config/providerRegistry.ts — allows Docker service names.
|
|
# LOCAL_HOSTNAMES=omlx,mlx-audio
|
|
|
|
# ═══════════════════════════════════════════════════════════════════════════════
|
|
# 21. PROXY HEALTH
|
|
# ═══════════════════════════════════════════════════════════════════════════════
|
|
# Fine-tune proxy health checking behavior.
|
|
# Used by: src/lib/proxyHealth.ts
|
|
|
|
# Timeout for fast-fail health checks (ms). Default: 2000
|
|
# PROXY_FAST_FAIL_TIMEOUT_MS=2000
|
|
|
|
# Health check result cache TTL (ms). Default: 30000 (30s)
|
|
# PROXY_HEALTH_CACHE_TTL_MS=30000
|
|
|
|
# Unhealthy health check result cache TTL (ms). Default: 2000 (2s)
|
|
# Keeps transient fast-fail timeouts from poisoning a proxy for the full
|
|
# healthy-result cache window under high concurrency.
|
|
# PROXY_HEALTH_UNHEALTHY_CACHE_TTL_MS=2000
|
|
|
|
# Background proxy health scheduler (src/lib/proxyHealth/scheduler.ts).
|
|
# Periodically probes every registered proxy and (optionally) removes dead ones.
|
|
# Set "false" to disable the scheduler entirely. Default: enabled.
|
|
# PROXY_HEALTH_ENABLED=true
|
|
# Sweep interval in ms (minimum 60000). Default: 600000 (10min).
|
|
# PROXY_HEALTH_INTERVAL_MS=600000
|
|
# Reachability probe target for the scheduler and the auto-test endpoint.
|
|
# Point it at an internal/self-hosted URL to avoid the public default.
|
|
# PROXY_HEALTH_TEST_URL=https://httpbin.org/ip
|
|
# Set "true" to let the scheduler auto-remove proxies after repeated failures.
|
|
# PROXY_AUTO_REMOVE=false
|
|
# Consecutive failures before an auto-remove fires. Default: 3.
|
|
# PROXY_AUTO_REMOVE_AFTER=3
|
|
|
|
# Allow OAuth and provider validation flows to bypass a pinned proxy and connect
|
|
# directly when proxy reachability pre-checks fail. Default: false.
|
|
# Also configurable from Dashboard > Settings > Feature Flags.
|
|
# OMNIROUTE_CONTROL_PLANE_PROXY_DIRECT_FALLBACK=false
|
|
|
|
# Rate limit maximum wait time before failing a request (ms). Default: 120000 (2 min)
|
|
# Used by: open-sse/services/rateLimitManager.ts
|
|
# RATE_LIMIT_MAX_WAIT_MS=120000
|
|
|
|
# Force the auto-enable rate limit safety net on/off regardless of the persisted
|
|
# Dashboard setting. Used by: open-sse/services/rateLimitManager.ts.
|
|
# Accepted values: true|1|on (force on), false|0|off (force off), unset (use Dashboard).
|
|
# RATE_LIMIT_AUTO_ENABLE=
|
|
|
|
# Provider cooldown tracking: minimum time (ms) before a failed provider/connection
|
|
# can be retried. Prevents subsequent requests from re-walking failing providers.
|
|
# Scaled exponentially: minCooldown * 2^(failures-1), capped at maxRetryCooldownMs.
|
|
# Used by: open-sse/services/providerCooldownTracker.ts
|
|
# PROVIDER_COOLDOWN_MIN_MS=5000
|
|
|
|
# Provider cooldown tracking: maximum time (ms) before a failed provider/connection
|
|
# is retried regardless. Hard cap to prevent providers from being skipped indefinitely.
|
|
# Used by: open-sse/services/providerCooldownTracker.ts
|
|
# PROVIDER_COOLDOWN_MAX_MS=300000
|
|
|
|
# Enable/disable global provider cooldown tracking. Opt-in: this global
|
|
# cross-request cooldown overlaps the existing Connection Cooldown / Provider
|
|
# Circuit Breaker layers, so it is OFF by default. When disabled, only the
|
|
# existing per-request/per-connection cooldown state is used (previous behavior).
|
|
# Used by: open-sse/services/providerCooldownTracker.ts
|
|
# Accepted values: true|1|on (enable). Unset or anything else = disabled (default).
|
|
# PROVIDER_COOLDOWN_ENABLED=true
|
|
|
|
# Transparent stream recovery (free-claude-code port). When enabled, the opening SSE
|
|
# window is briefly held (up to STREAM_RECOVERY.HOLDBACK_MS) so an upstream truncation
|
|
# before any byte reaches the client can be retried invisibly. Opt-in: holding the
|
|
# window adds up to that much time-to-first-token latency on every stream, so it is
|
|
# OFF by default. Seeds ResilienceSettings.streamRecovery.enabled.
|
|
# Used by: open-sse/services/streamRecovery.ts, open-sse/handlers/chatCore.ts
|
|
# Accepted values: true|1|on (enable). Unset or anything else = disabled (default).
|
|
# STREAM_RECOVERY_ENABLED=true
|
|
|
|
# Mid-stream continuation (Fase 4.4): when an upstream stream truncates AFTER bytes
|
|
# already reached the client, re-request with the partial text as an assistant prefill
|
|
# and stitch the missing suffix (plain-text OpenAI-compatible streams only; never with a
|
|
# tool call in flight). OFF by default — the recovered tail arrives as one burst, not
|
|
# token-by-token. Independent of STREAM_RECOVERY_ENABLED (different risk profile).
|
|
# Seeds ResilienceSettings.streamRecovery.continueMidStream.
|
|
# Used by: open-sse/services/streamRecovery.ts, open-sse/handlers/chatCore.ts
|
|
# Accepted values: true|1|on (enable). Unset or anything else = disabled (default).
|
|
# STREAM_RECOVERY_MIDSTREAM_ENABLED=true
|
|
|
|
# Stagger interval (ms) between provider token healthchecks at startup.
|
|
# Used by: src/lib/tokenHealthCheck.ts. Default: 3000.
|
|
# HEALTHCHECK_STAGGER_MS=3000
|
|
|
|
# ═══════════════════════════════════════════════════════════════════════════════
|
|
# 22. DEBUGGING
|
|
# ═══════════════════════════════════════════════════════════════════════════════
|
|
# These variables enable verbose debugging output. NEVER enable in production.
|
|
|
|
# Cursor executor verbose debug (decoded SSE chunks, etc.).
|
|
# CURSOR_STREAM_DEBUG is kept as a backward-compatible alias.
|
|
# Used by: open-sse/executors/cursor.ts
|
|
# CURSOR_DEBUG=1
|
|
|
|
# Enable verbose trace logging for OmniRoute internals.
|
|
# Used by: open-sse/handlers/chatCore.ts.
|
|
# OMNIROUTE_TRACE=true
|
|
|
|
# Standard DEBUG flag (same effect as OMNIROUTE_TRACE).
|
|
# DEBUG=true
|
|
# CURSOR_STREAM_DEBUG=1
|
|
|
|
# When CURSOR_DEBUG=1, also append raw decoded chunks to this file path.
|
|
# CURSOR_DUMP_FILE=/tmp/cursor-stream.log
|
|
|
|
# Cursor stream idle timeout (ms). Default: 300000 (5 min).
|
|
# Used by: open-sse/executors/cursor.ts.
|
|
# CURSOR_STREAM_TIMEOUT_MS=300000
|
|
|
|
# Cursor tool-commit directive toggle. Default-on: when a request declares
|
|
# tools, a directive is prepended so composer-2.5 reliably issues tool calls
|
|
# instead of narrating intent. Set to 0 to disable.
|
|
# Used by: open-sse/executors/cursor.ts.
|
|
# CURSOR_TOOL_DIRECTIVE=1
|
|
|
|
# Per-image fetch timeout (ms) for remote image_url vision input. Default: 15000.
|
|
# Used by: open-sse/utils/cursorImages.ts.
|
|
# CURSOR_IMAGE_FETCH_TIMEOUT_MS=15000
|
|
|
|
# Cursor state DB path override (for cursor version detection).
|
|
# Used by: open-sse/utils/cursorVersionDetector.ts. Default: probed automatically.
|
|
# CURSOR_STATE_DB_PATH=
|
|
|
|
# Direct Cursor bearer token used by scripts/ad-hoc/cursor-tap.cjs (developer tooling).
|
|
# CURSOR_TOKEN=
|
|
|
|
# Log Responses API SSE-to-JSON translation details.
|
|
# DEBUG_RESPONSES_SSE_TO_JSON=true
|
|
|
|
# Log request shape (content-type + content-length) for large chat payloads.
|
|
# Used by: src/app/api/v1/chat/completions/route.ts. Set to "0" to silence.
|
|
# Default: enabled.
|
|
# OMNIROUTE_LOG_REQUEST_SHAPE=1
|
|
|
|
# Write raw (untruncated) request/response JSON in call log artifacts.
|
|
# When enabled, serializeArtifactForStorage skips size-based truncation.
|
|
# Also enabled automatically when APP_LOG_LEVEL=debug.
|
|
# WARNING: produces large files — use only for temporary debugging.
|
|
# CHAT_DEBUG_FILE=true
|
|
|
|
# Enable E2E test mode — relaxes auth and enables test harness hooks.
|
|
# NEXT_PUBLIC_OMNIROUTE_E2E_MODE=true
|
|
|
|
# ═══════════════════════════════════════════════════════════════════════════════
|
|
# 23. GITHUB INTEGRATION (Issue Reporting)
|
|
# ═══════════════════════════════════════════════════════════════════════════════
|
|
# Allow users to report issues directly from the Dashboard to GitHub.
|
|
# Used by: src/app/api/v1/issues/report/route.ts
|
|
|
|
# GitHub repository in owner/repo format.
|
|
# GITHUB_ISSUES_REPO=owner/repo
|
|
|
|
# GitHub Personal Access Token with issues:write scope.
|
|
# GITHUB_ISSUES_TOKEN=ghp_xxxx
|
|
|
|
# Generic GitHub access token consumed by issue triage / agent helpers.
|
|
# Used by: src/app/api/v1/issues/* and src/lib/cloudAgent/* — falls back to
|
|
# GITHUB_ISSUES_TOKEN when unset.
|
|
# GITHUB_TOKEN=
|
|
|
|
# ═══════════════════════════════════════════════════════════════════════════════
|
|
# 24. PROVIDER QUOTAS, TUNNELS & SANDBOXED SKILLS
|
|
# ═══════════════════════════════════════════════════════════════════════════════
|
|
# Provider quota endpoints, network tunnels (Tailscale, Ngrok, MITM debug
|
|
# proxy), 1Proxy egress pool, skills sandbox runtime, and miscellaneous CLI
|
|
# binaries referenced by the executor layer or the dashboard runtime.
|
|
|
|
# ── Alibaba (Bailian) coding plan quota ──
|
|
# Host/full URL override used by: open-sse/services/bailianQuotaFetcher.ts.
|
|
# When unset the fetcher uses the production Alibaba endpoints.
|
|
# ALIBABA_CODING_PLAN_HOST=
|
|
# ALIBABA_CODING_PLAN_QUOTA_URL=
|
|
|
|
# ── Context window tuning ──
|
|
# Tokens reserved for completion output when computing prompt budgets.
|
|
# Used by: open-sse/services/contextManager.ts. Default: 1024.
|
|
# CONTEXT_RESERVE_TOKENS=1024
|
|
|
|
# ── Model alias rewriting (legacy compatibility) ──
|
|
# Toggle the legacy model-alias compatibility layer used by older clients.
|
|
# Used by: open-sse/services/model.ts. Default: enabled.
|
|
# MODEL_ALIAS_COMPAT_ENABLED=true
|
|
|
|
# ── Devin CLI binary path ──
|
|
# Used by: open-sse/executors/devin-cli.ts. Default: looked up via PATH.
|
|
# CLI_DEVIN_BIN=devin
|
|
|
|
# ── Command Code (custom CLI) callback ──
|
|
# Local port used for OAuth-style callbacks from the Command Code CLI helper.
|
|
# Used by: src/app/api/providers/command-code/auth/shared.ts.
|
|
# COMMAND_CODE_CALLBACK_PORT=
|
|
|
|
# ── Command Code CLI version header ──
|
|
# Value sent as the x-command-code-version header to the Command Code upstream.
|
|
# Overrides the built-in default; bump if the upstream requires a newer CLI version.
|
|
# Used by: open-sse/executors/commandCode.ts
|
|
# Default: 0.33.2
|
|
# COMMAND_CODE_VERSION=0.33.2
|
|
|
|
# ── MITM debug proxy (development only) ──
|
|
# Used by: src/mitm/server.cjs — captures upstream traffic for inspection.
|
|
# MITM_LOCAL_PORT=443
|
|
# MITM_DISABLE_TLS_VERIFY=0
|
|
# Idle socket timeout (ms) for proxied connections; sockets idle past this are torn
|
|
# down to avoid leaking half-open tunnels (src/mitm/socketTimeouts.ts, server.cjs).
|
|
# MITM_IDLE_TIMEOUT_MS=60000
|
|
# Routing-decision log verbosity: 0 silences, higher values log more bypass/route
|
|
# decisions (src/mitm/server.cjs, _internal/bypass.cjs).
|
|
# MITM_VERBOSE=1
|
|
|
|
# ── 1Proxy egress pool ──
|
|
# Used by: src/lib/oneproxySync.ts — fetches proxy nodes from the OmniRoute
|
|
# CrofAI 1Proxy service. Disable, override URL, or tune the import quality.
|
|
# ONEPROXY_ENABLED=true
|
|
# ONEPROXY_API_URL=https://1proxy-api.aitradepulse.com
|
|
# ONEPROXY_MAX_PROXIES=500
|
|
# ONEPROXY_MIN_QUALITY_THRESHOLD=50
|
|
|
|
# ── Free Proxy Pool (1proxy source) ──
|
|
# Used by: src/lib/freeProxyProviders/oneproxy.ts
|
|
# Set FREE_PROXY_1PROXY_ENABLED=false to disable this source.
|
|
# FREE_PROXY_1PROXY_ENABLED=true
|
|
# FREE_PROXY_1PROXY_API_URL=https://1proxy-api.aitradepulse.com/api/v1/proxies/advanced
|
|
# FREE_PROXY_1PROXY_MAX=500
|
|
# FREE_PROXY_1PROXY_MIN_QUALITY=50
|
|
|
|
# ── Free Proxy Pool (Proxifly source) ──
|
|
# Used by: src/lib/freeProxyProviders/proxifly.ts
|
|
# Enabled by default; set to false to disable.
|
|
# FREE_PROXY_PROXIFLY_ENABLED=true
|
|
# FREE_PROXY_PROXIFLY_QUANTITY=100
|
|
# FREE_PROXY_PROXIFLY_ANONYMITY=elite
|
|
|
|
# ── Free Proxy Pool (IPLocate source) ──
|
|
# Used by: src/lib/freeProxyProviders/iplocate.ts
|
|
# Opt-in only; must set FREE_PROXY_IPLOCATE_ENABLED=true to activate.
|
|
# FREE_PROXY_IPLOCATE_ENABLED=false
|
|
# FREE_PROXY_IPLOCATE_BASE_URL=https://raw.githubusercontent.com/iplocate/free-proxy-list/main/protocols
|
|
|
|
# ── Free Proxy Pool (Webshare source) ──
|
|
# Used by: src/lib/freeProxyProviders/webshare.ts
|
|
# Paid, per-account proxy list — requires FREE_PROXY_WEBSHARE_API_KEY to activate,
|
|
# regardless of FREE_PROXY_WEBSHARE_ENABLED.
|
|
# FREE_PROXY_WEBSHARE_ENABLED=true
|
|
# FREE_PROXY_WEBSHARE_API_KEY=
|
|
# FREE_PROXY_WEBSHARE_API_URL=https://proxy.webshare.io/api/v2/proxy/list/
|
|
# FREE_PROXY_WEBSHARE_MAX=500
|
|
|
|
# ── Vercel Relay ──
|
|
# Used by: src/app/api/settings/proxy/vercel-deploy/route.ts
|
|
# Hides the "Deploy Relay" button when set to false.
|
|
# NEXT_PUBLIC_VERCEL_RELAY_ENABLED=true
|
|
# VERCEL_API_BASE=https://api.vercel.com
|
|
# Default project name pre-filled in the Vercel Relay deploy modal.
|
|
# NEXT_PUBLIC_VERCEL_RELAY_DEFAULT_PROJECT=omniroute-relay
|
|
|
|
# ── Tailscale tunnel binaries ──
|
|
# Optional explicit paths to tailscale/tailscaled binaries used by the
|
|
# dashboard's tunnel manager. Used by: src/lib/tailscaleTunnel.ts.
|
|
# TAILSCALE_BIN=/usr/local/bin/tailscale
|
|
# TAILSCALED_BIN=/usr/local/bin/tailscaled
|
|
# Pre-shared Tailscale auth key for non-interactive / headless `tailscale up`
|
|
# (passed via --auth-key=). When unset, login falls back to the interactive
|
|
# browser auth URL. Used by: src/lib/tailscaleTunnel.ts.
|
|
# TAILSCALE_AUTHKEY=
|
|
|
|
# ── Ngrok tunnel ──
|
|
# Used by: src/lib/ngrokTunnel.ts — authenticates outbound tunnels.
|
|
# NGROK_AUTHTOKEN=
|
|
|
|
# ── Database backups ──
|
|
# Used by: src/lib/db/backup.ts.
|
|
# DB_BACKUP_MAX_FILES=20
|
|
# DB_BACKUP_RETENTION_DAYS=0
|
|
|
|
# ── TLS sidecar override ──
|
|
# Used by: open-sse/services/chatgptTlsClient.ts tests. Production deployments
|
|
# should leave this unset; the sidecar is auto-managed.
|
|
# OMNIROUTE_TLS_PROXY_URL=
|
|
|
|
# ── Skills sandbox (experimental) ──
|
|
# Used by: src/lib/skills/builtins.ts. All values support comma lists where
|
|
# noted in the source.
|
|
# SKILLS_MAX_FILE_BYTES=1048576
|
|
# SKILLS_MAX_HTTP_RESPONSE_BYTES=256000
|
|
# SKILLS_MAX_SANDBOX_OUTPUT_CHARS=100000
|
|
# SKILLS_SANDBOX_TIMEOUT_MS=10000
|
|
# SKILLS_SANDBOX_NETWORK_ENABLED=0
|
|
# SKILLS_ALLOWED_SANDBOX_IMAGES=
|
|
|
|
# ═══════════════════════════════════════════════════════════════════════════════
|
|
# 25. TEST & E2E
|
|
# ═══════════════════════════════════════════════════════════════════════════════
|
|
# Used by scripts/dev/run-next-playwright.mjs, scripts/dev/smoke-electron-packaged.mjs,
|
|
# scripts/dev/run-ecosystem-tests.mjs and scripts/build/uninstall.mjs.
|
|
# Production deployments should leave every value below unset.
|
|
|
|
# E2E bootstrap mode for the Playwright runner. Accepted: auth | fresh | reuse.
|
|
# Default (when unset): auth.
|
|
# OMNIROUTE_E2E_BOOTSTRAP_MODE=auth
|
|
|
|
# Admin password injected into the Playwright test environment.
|
|
# Falls back to INITIAL_PASSWORD when unset.
|
|
# OMNIROUTE_E2E_PASSWORD=
|
|
|
|
# Disable the local healthcheck poll during Playwright runs (default: true).
|
|
# OMNIROUTE_DISABLE_LOCAL_HEALTHCHECK=true
|
|
|
|
# Disable the OAuth token healthcheck loop during tests (default: true).
|
|
# OMNIROUTE_DISABLE_TOKEN_HEALTHCHECK=true
|
|
|
|
# Exclude specific providers from the PROACTIVE token-refresh sweep (comma-separated,
|
|
# case-insensitive). Targeted alternative to OMNIROUTE_DISABLE_TOKEN_HEALTHCHECK: keeps
|
|
# rotating-cascade providers (Codex/OpenAI share one Auth0 family) on the reactive 401
|
|
# path only, while short-TTL providers like Kimi-coding keep being refreshed proactively.
|
|
# OMNIROUTE_HEALTHCHECK_SKIP_PROVIDERS=codex,openai
|
|
|
|
# Silence healthcheck noise in Playwright stdout (default: true).
|
|
# OMNIROUTE_HIDE_HEALTHCHECK_LOGS=true
|
|
|
|
# Skip the Next.js production build before Playwright starts (CI optimization).
|
|
# OMNIROUTE_PLAYWRIGHT_SKIP_BUILD=0
|
|
|
|
# Skip the OmniRoute uninstall hook (used by CI to keep node_modules intact).
|
|
# OMNIROUTE_SKIP_UNINSTALL_HOOK=0
|
|
|
|
# Ecosystem/protocol test orchestrators wait this long (ms) for the server to
|
|
# become healthy. Default: 180000.
|
|
# ECOSYSTEM_SERVER_WAIT_MS=180000
|
|
|
|
# Docs translation pipeline (used by scripts/i18n/run-translation.mjs).
|
|
# OpenAI-compatible base URL, e.g. https://cloud.omniroute.online/v1
|
|
# OMNIROUTE_TRANSLATION_API_URL=
|
|
# Bearer token for the translation backend (NEVER commit a real key here).
|
|
# OMNIROUTE_TRANSLATION_API_KEY=
|
|
# Model id, e.g. gpt-4o-mini or cx/gpt-5.4-mini.
|
|
# OMNIROUTE_TRANSLATION_MODEL=gpt-4o-mini
|
|
# Per-request timeout in milliseconds (default 60000).
|
|
# OMNIROUTE_TRANSLATION_TIMEOUT_MS=60000
|
|
# Number of parallel translation requests (default 4).
|
|
# OMNIROUTE_TRANSLATION_CONCURRENCY=4
|
|
|
|
# ─── Cloud Sync hardening (v3.8.6) ──────────────────────────────────────────
|
|
# Shared secret used to verify the HMAC-SHA256 of the Cloud sync response body
|
|
# (the Cloud endpoint must sign each response with the same secret and place
|
|
# the hex digest in the X-Cloud-Sig header). When unset, v3.8.6 logs a warning
|
|
# but accepts unsigned responses for back-compat. v3.9 will make this required.
|
|
# OMNIROUTE_CLOUD_SYNC_SECRET=
|
|
#
|
|
# Set to "true" to allow the Cloud Sync endpoint to overwrite local OAuth
|
|
# tokens (accessToken / refreshToken / providerSpecificData). Default OFF —
|
|
# only non-credential metadata is synced. See docs/security/SOCKET_DEV_FINDINGS.md §5.
|
|
# OMNIROUTE_CLOUD_SYNC_SECRETS=false
|
|
|
|
# ─── Zed import legacy compat (v3.8.6) ──────────────────────────────────────
|
|
# Set to "true" to fall back to the v3.8.5 one-step "import everything from
|
|
# the keychain" behaviour. Default OFF — the new 2-step confirmation flow
|
|
# requires `confirmedAccounts` in the request body. See SOCKET_DEV_FINDINGS.md §2.
|
|
# OMNIROUTE_ZED_IMPORT_LEGACY_ONE_STEP=false
|
|
|
|
# ─── Build profile (build-time only) ────────────────────────────────────────
|
|
# Set to "minimal" before `npm run build` to physically remove four optional
|
|
# privileged modules (MITM cert install, Zed keychain import, Cloud Sync,
|
|
# 9router installer) from the standalone bundle. The resulting artifact is
|
|
# intended to be published as `omniroute-secure`. See SECURITY.md.
|
|
# OMNIROUTE_BUILD_PROFILE=full
|
|
|
|
# Electron smoke harness (used by scripts/dev/smoke-electron-packaged.mjs).
|
|
# ELECTRON_SMOKE_URL=http://127.0.0.1:20128/login
|
|
# ELECTRON_SMOKE_TIMEOUT_MS=45000
|
|
# ELECTRON_SMOKE_SETTLE_MS=2000
|
|
# ELECTRON_SMOKE_APP_EXECUTABLE=
|
|
# ELECTRON_SMOKE_DATA_DIR=
|
|
# ELECTRON_SMOKE_KEEP_DATA=0
|
|
# ELECTRON_SMOKE_STREAM_LOGS=0
|
|
|
|
# Playground Studio
|
|
# Default model used by the improve-prompt route (optional; falls back to model in request body).
|
|
PLAYGROUND_IMPROVE_PROMPT_DEFAULT_MODEL=
|
|
# Maximum number of parallel compare columns in the Compare tab.
|
|
PLAYGROUND_COMPARE_MAX_COLUMNS=4
|
|
# Memory engine (plan 21)
|
|
# MEMORY_EMBEDDING_CACHE_TTL_MS=300000 # default 5 min
|
|
# MEMORY_EMBEDDING_CACHE_MAX=1000 # default 1000 entries
|
|
# MEMORY_TRANSFORMERS_MODEL=Xenova/all-MiniLM-L6-v2
|
|
# MEMORY_STATIC_MODEL=minishlab/potion-base-8M # HF repo id (download once)
|
|
# MEMORY_STATIC_CACHE_DIR= # default <DATA_DIR>/embeddings
|
|
# MEMORY_VEC_TOP_K=20 # default top-K for vector search
|
|
# MEMORY_RRF_K=60 # RRF k constant (sqlite-vec hybrid recipe)
|
|
# HF_HUB_ENDPOINT=https://huggingface.co # override Hugging Face Hub base URL for static potion downloads
|
|
# TV6 typed memory decay (OPT-IN, default off — the sweep DELETES decayed memories)
|
|
# MEMORY_TYPED_DECAY_ENABLED=false # master switch for the destructive sweep (default off)
|
|
# MEMORY_TYPED_DECAY_EPISODIC_DAYS=30 # episodic TTL in days; 0 = episodic immune too
|
|
# MEMORY_TYPED_DECAY_ACCESS_IMMUNITY=3 # access_count >= N → immune; 0 disables access immunity
|
|
# MEMORY_TYPED_DECAY_SWEEP_INTERVAL=0 # periodic sweep interval (seconds); 0 = no periodic sweep
|
|
# AgentBridge + Traffic Inspector (Group A)
|
|
|
|
# AgentBridge
|
|
AGENTBRIDGE_UPSTREAM_CA_CERT=
|
|
|
|
# Inspector
|
|
INSPECTOR_BUFFER_SIZE=1000
|
|
INSPECTOR_HTTP_PROXY_PORT=8080
|
|
INSPECTOR_HTTP_PROXY_AUTOSTART=false
|
|
INSPECTOR_TLS_INTERCEPT=false
|
|
INSPECTOR_SYSTEM_PROXY_GUARD_MINUTES=30
|
|
INSPECTOR_MAX_BODY_KB=1024
|
|
INSPECTOR_MASK_SECRETS=true
|
|
INSPECTOR_LLM_HOSTS_EXTRA=
|
|
INSPECTOR_INTERNAL_INGEST_TOKEN=
|
|
# Quota Sharing (Group B — planos 16+22)
|
|
QUOTA_STORE_DRIVER=sqlite # sqlite | redis
|
|
# QUOTA_STORE_REDIS_URL= # ex.: redis://localhost:6379 (apenas quando driver=redis)
|
|
# QUOTA_SATURATION_THRESHOLD=0.5 # 0..1; >= threshold ativa modo strict (sem empréstimo)
|
|
# QUOTA_SOFT_DEPRIORITIZE_FACTOR=0.7 # 0..1; multiplicador do score quando soft policy ativa
|
|
# STATUS_SOFT_DEPRIORITIZE_FACTOR=0.5 # 0..1; multiplicador do score p/ provider esgotado (credits_exhausted/rate_limited) quando preflight cutoff OFF (#4540)
|
|
# QUOTA_CONSUMPTION_RETENTION_DAYS=14 # GC de buckets quota_consumption.updated_at antigos
|
|
# QUOTA_PREFLIGHT_CUTOFF_ENABLED=false # opt-in (default OFF): hard quota cutoff drops low-quota candidates before auto-routing scoring
|
|
|
|
# ─── Auto-Combo tier filter (#4517) ───────────────────────────────────────
|
|
# When an `auto/<category>:free` (or any `:<tier>`) request matches NO connected
|
|
# candidates, OmniRoute returns an EMPTY pool by default — so `:free` really means
|
|
# "free tier only" and a paid model is never picked just because no free provider is
|
|
# connected. Set this to `true`/`1` to restore the legacy behavior of falling back to
|
|
# the full (unfiltered) pool with a warning. Source: open-sse/services/autoCombo/virtualFactory.ts
|
|
# OMNIROUTE_AUTO_FREE_FALLBACK_TO_FULL_POOL=false
|
|
|
|
# ─── OpenCode config regeneration (scripts/ad-hoc/regen-opencode-config.ts) ───
|
|
# Base URL of the OmniRoute instance to query for /v1/models when regenerating
|
|
# an opencode.json with accurate limit.context values. Used by:
|
|
# scripts/ad-hoc/regen-opencode-config.ts. Default: http://localhost:20128
|
|
# OMNIROUTE_URL=
|
|
# API key to authenticate against the OmniRoute /v1/models endpoint. Falls back
|
|
# to OPENCODE_API_KEY when unset. Used by: scripts/ad-hoc/regen-opencode-config.ts.
|
|
# OMNIROUTE_KEY=
|
|
# OpenCode-style API key (sk-...) for the regenerated opencode.json. Used by:
|
|
# scripts/ad-hoc/regen-opencode-config.ts. Falls back to OMNIROUTE_KEY.
|
|
# OPENCODE_API_KEY=
|
|
|
|
# ─── Bifrost Go sidecar (PR-4 in #3932) ──────────────────────────────────────
|
|
# Master kill switch for the bifrost sidecar proxy. When set to 0, the
|
|
# /api/v1/relay/chat/completions/bifrost route returns 503 with the
|
|
# X-Bifrost-Killswitch header and the operator is bounced to the TS path.
|
|
# Use this to disable the sidecar without redeploying (e.g. during a
|
|
# tier-1 router incident or a key rotation). Default: 1 (sidecar active).
|
|
# BIFROST_ENABLED=1
|
|
# When BIFROST_BASE_URL is set, /api/v1/relay/chat/completions/bifrost routes
|
|
# traffic to the Go gateway instead of the TS relay handler, removing TS from
|
|
# the hot path. Auth/rate-limit/injection-guard stay in the route (security not
|
|
# duplicated). Falls back to TS path via X-Bifrost-Fallback header on
|
|
# timeout/failure. See bin/omniroute for the local-redis companion.
|
|
# BIFROST_BASE_URL=
|
|
# Port the supervised Bifrost embedded service binds to (127.0.0.1:<port>), read by
|
|
# src/lib/services/bootstrap.ts when OmniRoute manages the Bifrost sidecar lifecycle.
|
|
# Default: 8080.
|
|
# BIFROST_PORT=8080
|
|
# API key for the Bifrost gateway (sent as Authorization: Bearer ...). If
|
|
# unset, the route expects the request to carry a valid OmniRoute API key;
|
|
# this key is for gateway-side auth only.
|
|
# BIFROST_API_KEY=
|
|
# When true, the Bifrost sidecar route streams responses back via SSE through
|
|
# the gateway rather than the TS streaming executor. Default: true (when
|
|
# BIFROST_BASE_URL is set).
|
|
# BIFROST_STREAMING_ENABLED=
|
|
# Per-request timeout when proxying to the Bifrost gateway. Default: 30000 (30s).
|
|
# BIFROST_TIMEOUT_MS=
|
|
# Alias for BIFROST_API_KEY (used by scripts that read the env via
|
|
# OMNIROUTE_*). BIFROST_API_KEY takes precedence when both are set.
|
|
# OMNIROUTE_BIFROST_KEY=
|
|
# Relay backend selection for the OpenAI-compatible relay endpoint:
|
|
# ts | bifrost | auto. "ts" (default when Bifrost is not configured) uses the
|
|
# TypeScript relay; "auto" selects Bifrost when BIFROST_BASE_URL is set (and
|
|
# BIFROST_ENABLED != 0) and falls back to TS if the sidecar is unreachable;
|
|
# "bifrost" forces Bifrost (strict — no TS fallback). Auth, rate limits,
|
|
# injection guard and model allowlists always run in the Next route first.
|
|
# RELAY_ROUTING_BACKEND is an accepted alias. Responses carry X-Routing-Backend
|
|
# and X-Routing-Fallback.
|
|
# OMNIROUTE_RELAY_BACKEND=
|
|
# RELAY_ROUTING_BACKEND=
|
|
# Cooldown (ms) after a Bifrost sidecar hop fails in "auto" mode before the relay
|
|
# re-attempts the sidecar; it goes straight to the TS path while the cooldown lasts.
|
|
# 0 disables. Default 5000. Only applies when OMNIROUTE_RELAY_BACKEND=auto.
|
|
# OMNIROUTE_BIFROST_FAILURE_COOLDOWN_MS=
|
|
# Opt-in native HTTPS/TLS for `omniroute serve` (equivalent to --tls-cert /
|
|
# --tls-key). Provide BOTH a PEM certificate and its private key and the
|
|
# standalone server terminates TLS on the same listener (wss:// works
|
|
# unchanged). With neither set the server stays plain HTTP; providing only one
|
|
# (or an unreadable path) logs a warning and stays HTTP (never half-enables).
|
|
# OMNIROUTE_TLS_CERT=
|
|
# OMNIROUTE_TLS_KEY=
|
|
|
|
# ─── 1-click local service launchers (PR-3 in #3932) ────────────────────────
|
|
# Master switch for /api/local/* routes. When unset or "0", all /api/local/*
|
|
# routes return 503 in production. Default: 0. Must be "1" in non-loopback
|
|
# deploys to enable the Redis launcher and similar 1-click local service
|
|
# starters. Belt-and-suspenders with the isLocalOnlyPath() route-guard
|
|
# classification (LOCAL_ONLY_API_PREFIXES in src/server/authz/routeGuard.ts).
|
|
# OMNIROUTE_LOCAL_ENDPOINTS_ENABLED=
|
|
# Bearer token for /api/local/* callers that aren't on loopback (e.g. the
|
|
# desktop app). When set, requests from non-loopback IPs must carry
|
|
# Authorization: Bearer <token>. Required when
|
|
# OMNIROUTE_LOCAL_ENDPOINTS_ENABLED=1 in non-loopback deployments. Default:
|
|
# unset (loopback-only).
|
|
# OMNIROUTE_LOCAL_ENDPOINTS_TOKEN=
|
|
# Container name for the 1-click Redis launcher (`omniroute redis up`).
|
|
# Default: omniroute-redis. Used by bin/cli/commands/redis.mjs and the
|
|
# RedisLauncherPanel.
|
|
# OMNIROUTE_REDIS_CONTAINER_NAME=
|
|
# Host port for the 1-click Redis launcher. Default: 6379. Bump if the host
|
|
# already binds 6379. The container's internal port stays 6379.
|
|
# OMNIROUTE_REDIS_HOST_PORT=
|
|
# Redis image used by the 1-click Redis launcher. Default: redis:7-alpine.
|
|
# Override to redis:8-alpine or a private registry mirror as needed.
|
|
# OMNIROUTE_REDIS_IMAGE=
|
|
|
|
# ── Cluster Profile: Qdrant Vector Memory (opt-in via `docker compose --profile memory up`) ──
|
|
# Qdrant is an OPTIONAL sidecar for deployments that need cosine-distance vector
|
|
# search at >1M embeddings. The default vector store is sqlite-vec
|
|
# (src/lib/memory/vectorStore.ts:108); flip this profile on only if you hit the
|
|
# sqlite-vec ceiling or want persistent cross-replica vector state. See
|
|
# docs/architecture/cluster-decisions.md § "Qdrant (memory profile)".
|
|
# QDRANT_HOST=qdrant
|
|
# QDRANT_PORT=6333
|
|
# QDRANT_GRPC_PORT=6334
|
|
# QDRANT_API_KEY=
|
|
# QDRANT_COLLECTION=omniroute-memory
|
|
# QDRANT_EMBEDDING_MODEL=text-embedding-3-small
|
|
# QDRANT_VECTOR_SIZE=1536
|
|
# QDRANT_HNSW_EF_CONSTRUCT=128
|
|
|
|
# ── Cluster Profile: Bifrost Tier-1 Router (opt-in via `docker compose --profile bifrost up`) ──
|
|
# Bifrost is an OPTIONAL Go-based Tier-1 router that handles the upstream-provider
|
|
# multiplexing layer. Default: OmniRoute's open-sse/executors/bifrost.ts in-process
|
|
# executor handles routing directly. Flip this profile on only if you want the
|
|
# gateway as a separate sidecar (helps in 3+ replica deployments where you want
|
|
# provider rotation centralised). See docs/architecture/cluster-decisions.md §
|
|
# "Bifrost (bifrost profile)".
|
|
# Set OMNIROUTE_RELAY_BACKEND=auto to use this sidecar when healthy, or
|
|
# OMNIROUTE_RELAY_BACKEND=bifrost to require it without TS fallback.
|
|
# BIFROST_BASE_URL=http://bifrost:8080
|
|
# BIFROST_API_KEY=
|
|
# BIFROST_STREAMING_ENABLED=true
|
|
# BIFROST_TIMEOUT_MS=30000
|