Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Read and update global application settings: system prompts, thinking budget, IP filters, payload rules, combo defaults, and require-login configuration.
.claude/skills/diegosouzapw-omni-settings/SKILL.md| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-01 | ✗→✓ | ▲ Improved | 303% | 0% |
| case-02 | ✗→✓ | ▲ Improved | 420% | 0% |
| case-03 | ✗→✓ | ▲ Improved | 798% | 0% |
| case-04 | ✗→✓ | ▲ Improved | 329% | 0% |
| case-05 | ✗→✓ | ▲ Improved | 473% | 0% |
<!-- generated by src/lib/agentSkills/generator.ts; manual edits will be overwritten -->
Read and update global application settings: system prompts, thinking budget, IP filters, payload rules, combo defaults, and require-login configuration.
All requests require a valid Bearer token or session cookie. Obtain a token via POST /api/auth/login or configure REQUIRE_API_KEY=false for local development.
Get memory settings
Returns the extended memory settings including 7 new fields added in plan 21 (embeddingSource, embeddingProviderModel, transformersEnabled, staticEnabled, rerankEnabled, rerankProviderModel, vectorStore).
bashcurl https://localhost:20128/api/settings/memory \ -H "Authorization: Bearer $OMNIROUTE_TOKEN"
Update memory settings
Update any subset of the extended memory settings. All fields are optional; only provided fields are updated. Schema: MemorySettingsExtendedSchema.
bashcurl -X PUT https://localhost:20128/api/settings/memory \ -H "Authorization: Bearer $OMNIROUTE_TOKEN" \ -H "Content-Type: application/json" \ -d '{}'
Get Qdrant settings
Returns current Qdrant configuration. The apiKey field is never returned raw — use hasApiKey / apiKeyMasked instead.
bashcurl https://localhost:20128/api/settings/qdrant \ -H "Authorization: Bearer $OMNIROUTE_TOKEN"
Update Qdrant settings
Update Qdrant configuration. Pass apiKey: "" to remove the stored key. Schema: QdrantSettingsUpdateSchema.
bashcurl -X PUT https://localhost:20128/api/settings/qdrant \ -H "Authorization: Bearer $OMNIROUTE_TOKEN" \ -H "Content-Type: application/json" \ -d '{}'
Qdrant health probe
Performs a liveness check against the configured Qdrant instance. Returns latency and any connection error (sanitized — no stack traces).
bashcurl https://localhost:20128/api/settings/qdrant/health \ -H "Authorization: Bearer $OMNIROUTE_TOKEN"
Qdrant semantic search test
Performs a test semantic search against the Qdrant collection. Useful for validating that the integration works end-to-end. Schema: QdrantSearchSchema.
bashcurl -X POST https://localhost:20128/api/settings/qdrant/search \ -H "Authorization: Bearer $OMNIROUTE_TOKEN" \ -H "Content-Type: application/json" \ -d '{}'
Clean up expired Qdrant points
Removes Qdrant points for memories that have expired or exceeded the configured retention window.
bashcurl -X POST https://localhost:20128/api/settings/qdrant/cleanup \ -H "Authorization: Bearer $OMNIROUTE_TOKEN" \ -H "Content-Type: application/json" \ -d '{}'
List Qdrant embedding models
Returns the list of embedding models available for use with Qdrant.
bashcurl https://localhost:20128/api/settings/qdrant/embedding-models \ -H "Authorization: Bearer $OMNIROUTE_TOKEN"
Get application settings
bashcurl https://localhost:20128/api/settings \ -H "Authorization: Bearer $OMNIROUTE_TOKEN"
Update settings
bashcurl -X PATCH https://localhost:20128/api/settings \ -H "Authorization: Bearer $OMNIROUTE_TOKEN" \ -H "Content-Type: application/json" \ -d '{}'
Clear request log history
Deletes call_logs, legacy request_detail_logs, and local request artifact files under DATA_DIR/call_logs.
bashcurl -X POST https://localhost:20128/api/settings/purge-request-history \ -H "Authorization: Bearer $OMNIROUTE_TOKEN" \ -H "Content-Type: application/json" \ -d '{}'
Get global compression settings
bashcurl https://localhost:20128/api/settings/compression \ -H "Authorization: Bearer $OMNIROUTE_TOKEN"
Update global compression settings
bashcurl -X PUT https://localhost:20128/api/settings/compression \ -H "Authorization: Bearer $OMNIROUTE_TOKEN" \ -H "Content-Type: application/json" \ -d '{}'
Get the MCP tool-output accessibility (trimming) config
bashcurl https://localhost:20128/api/settings/compression/mcp-accessibility \ -H "Authorization: Bearer $OMNIROUTE_TOKEN"
Update the MCP tool-output accessibility (trimming) config
Partial-merge update. Numeric floors (e.g. a maxTextChars below the truncation-tail reserve) are folded back to the safe defaults server-side, so the response reflects the effective config.
bashcurl -X PUT https://localhost:20128/api/settings/compression/mcp-accessibility \ -H "Authorization: Bearer $OMNIROUTE_TOKEN" \ -H "Content-Type: application/json" \ -d '{}'
Get payload rules configuration
Returns the current payload rules used to mutate outgoing request payloads before they are sent upstream.
Requires a dashboard management session cookie when management auth is enabled.
bashcurl https://localhost:20128/api/settings/payload-rules \ -H "Authorization: Bearer $OMNIROUTE_TOKEN"
Update payload rules configuration
Persists and hot reloads payload rules. The legacy input field default-raw is accepted on writes and normalized to defaultRaw in responses/runtime state.
Requires a dashboard management session cookie when management auth is enabled.
bashcurl -X PUT https://localhost:20128/api/settings/payload-rules \ -H "Authorization: Bearer $OMNIROUTE_TOKEN" \ -H "Content-Type: application/json" \ -d '{}'
Get combo default settings
bashcurl https://localhost:20128/api/settings/combo-defaults \ -H "Authorization: Bearer $OMNIROUTE_TOKEN"
Get proxy settings
bashcurl https://localhost:20128/api/settings/proxy \ -H "Authorization: Bearer $OMNIROUTE_TOKEN"
Update proxy settings
bashcurl -X PATCH https://localhost:20128/api/settings/proxy \ -H "Authorization: Bearer $OMNIROUTE_TOKEN" \ -H "Content-Type: application/json" \ -d '{}'
Test proxy connection
bashcurl -X POST https://localhost:20128/api/settings/proxy/test \ -H "Authorization: Bearer $OMNIROUTE_TOKEN" \ -H "Content-Type: application/json" \ -d '{}'
Toggle login requirement
bashcurl -X POST https://localhost:20128/api/settings/require-login \ -H "Authorization: Bearer $OMNIROUTE_TOKEN" \ -H "Content-Type: application/json" \ -d '{}'
Get IP filter configuration
Returns the current IP filter settings including blacklist, whitelist, and temp bans.
bashcurl https://localhost:20128/api/settings/ip-filter \ -H "Authorization: Bearer $OMNIROUTE_TOKEN"
Update IP filter configuration
Configure IP filtering with blacklist/whitelist modes, add/remove individual IPs, and manage temp bans.
bashcurl -X PUT https://localhost:20128/api/settings/ip-filter \ -H "Authorization: Bearer $OMNIROUTE_TOKEN" \ -H "Content-Type: application/json" \ -d '{}'
Get system prompt configuration
Returns the current system prompt injection settings.
bashcurl https://localhost:20128/api/settings/system-prompt \ -H "Authorization: Bearer $OMNIROUTE_TOKEN"
Update system prompt configuration
bashcurl -X PUT https://localhost:20128/api/settings/system-prompt \ -H "Authorization: Bearer $OMNIROUTE_TOKEN" \ -H "Content-Type: application/json" \ -d '{}'
Get thinking budget configuration
Returns the current thinking/reasoning budget settings for AI models.
bashcurl https://localhost:20128/api/settings/thinking-budget \ -H "Authorization: Bearer $OMNIROUTE_TOKEN"
Update thinking budget configuration
bashcurl -X PUT https://localhost:20128/api/settings/thinking-budget \ -H "Authorization: Bearer $OMNIROUTE_TOKEN" \ -H "Content-Type: application/json" \ -d '{}'
List Ollama-compatible model tags
Returns models in Ollama /api/tags format for Ollama client compatibility
bashcurl https://localhost:20128/api/tags \ -H "Authorization: Bearer $OMNIROUTE_TOKEN"
Get current quota store driver settings
Redis URL is masked in the response (shows only scheme+host).
bashcurl https://localhost:20128/api/settings/quota-store \ -H "Authorization: Bearer $OMNIROUTE_TOKEN"
Update quota store driver settings
bashcurl -X PUT https://localhost:20128/api/settings/quota-store \ -H "Authorization: Bearer $OMNIROUTE_TOKEN" \ -H "Content-Type: application/json" \ -d '{}'
Purge usage history
Dashboard-only. Purges stored usage-history records.
bashcurl -X POST https://localhost:20128/api/settings/purge-usage-history \ -H "Authorization: Bearer $OMNIROUTE_TOKEN" \ -H "Content-Type: application/json" \ -d '{}'
GET settings › authz inventory
bashcurl https://localhost:20128/api/settings/authz-inventory \ -H "Authorization: Bearer $OMNIROUTE_TOKEN"
GET settings › auto disable accounts
bashcurl https://localhost:20128/api/settings/auto-disable-accounts \ -H "Authorization: Bearer $OMNIROUTE_TOKEN"
PUT settings › auto disable accounts
bashcurl -X PUT https://localhost:20128/api/settings/auto-disable-accounts \ -H "Authorization: Bearer $OMNIROUTE_TOKEN" \ -H "Content-Type: application/json" \ -d '{}'
GET settings › background degradation
bashcurl https://localhost:20128/api/settings/background-degradation \ -H "Authorization: Bearer $OMNIROUTE_TOKEN"
POST settings › background degradation
bashcurl -X POST https://localhost:20128/api/settings/background-degradation \ -H "Authorization: Bearer $OMNIROUTE_TOKEN" \ -H "Content-Type: application/json" \ -d '{}'
PUT settings › background degradation
bashcurl -X PUT https://localhost:20128/api/settings/background-degradation \ -H "Authorization: Bearer $OMNIROUTE_TOKEN" \ -H "Content-Type: application/json" \ -d '{}'
GET settings › cache config
bashcurl https://localhost:20128/api/settings/cache-config \ -H "Authorization: Bearer $OMNIROUTE_TOKEN"
PUT settings › cache config
bashcurl -X PUT https://localhost:20128/api/settings/cache-config \ -H "Authorization: Bearer $OMNIROUTE_TOKEN" \ -H "Content-Type: application/json" \ -d '{}'
GET settings › cache metrics
bashcurl https://localhost:20128/api/settings/cache-metrics \ -H "Authorization: Bearer $OMNIROUTE_TOKEN"
DELETE settings › cache metrics
bashcurl -X DELETE https://localhost:20128/api/settings/cache-metrics \ -H "Authorization: Bearer $OMNIROUTE_TOKEN"
GET settings › cc discovery metrics
bashcurl https://localhost:20128/api/settings/cc-discovery-metrics \ -H "Authorization: Bearer $OMNIROUTE_TOKEN"
GET settings › compression › rules
bashcurl https://localhost:20128/api/settings/compression/rules \ -H "Authorization: Bearer $OMNIROUTE_TOKEN"
GET settings › compression › run telemetry
bashcurl https://localhost:20128/api/settings/compression/run-telemetry \ -H "Authorization: Bearer $OMNIROUTE_TOKEN"
GET settings › database
bashcurl https://localhost:20128/api/settings/database \ -H "Authorization: Bearer $OMNIROUTE_TOKEN"
PUT settings › database
bashcurl -X PUT https://localhost:20128/api/settings/database \ -H "Authorization: Bearer $OMNIROUTE_TOKEN" \ -H "Content-Type: application/json" \ -d '{}'
PATCH settings › database
bashcurl -X PATCH https://localhost:20128/api/settings/database \ -H "Authorization: Bearer $OMNIROUTE_TOKEN" \ -H "Content-Type: application/json" \ -d '{}'
POST settings › database › refresh stats
bashcurl -X POST https://localhost:20128/api/settings/database/refresh-stats \ -H "Authorization: Bearer $OMNIROUTE_TOKEN" \ -H "Content-Type: application/json" \ -d '{}'
GET settings › database › vacuum
bashcurl https://localhost:20128/api/settings/database/vacuum \ -H "Authorization: Bearer $OMNIROUTE_TOKEN"
POST settings › database › vacuum
bashcurl -X POST https://localhost:20128/api/settings/database/vacuum \ -H "Authorization: Bearer $OMNIROUTE_TOKEN" \ -H "Content-Type: application/json" \ -d '{}'
GET settings › export json
bashcurl https://localhost:20128/api/settings/export-json \ -H "Authorization: Bearer $OMNIROUTE_TOKEN"
GET settings › favicon
bashcurl https://localhost:20128/api/settings/favicon \ -H "Authorization: Bearer $OMNIROUTE_TOKEN"
GET settings › feature flags
bashcurl https://localhost:20128/api/settings/feature-flags \ -H "Authorization: Bearer $OMNIROUTE_TOKEN"
PUT settings › feature flags
bashcurl -X PUT https://localhost:20128/api/settings/feature-flags \ -H "Authorization: Bearer $OMNIROUTE_TOKEN" \ -H "Content-Type: application/json" \ -d '{}'
DELETE settings › feature flags
bashcurl -X DELETE https://localhost:20128/api/settings/feature-flags \ -H "Authorization: Bearer $OMNIROUTE_TOKEN"
GET settings › free proxies
bashcurl https://localhost:20128/api/settings/free-proxies \ -H "Authorization: Bearer $OMNIROUTE_TOKEN"
DELETE settings › free proxies
bashcurl -X DELETE https://localhost:20128/api/settings/free-proxies \ -H "Authorization: Bearer $OMNIROUTE_TOKEN"
POST settings › free proxies › <id> › add to pool
bashcurl -X POST https://localhost:20128/api/settings/free-proxies/{id}/add-to-pool \ -H "Authorization: Bearer $OMNIROUTE_TOKEN" \ -H "Content-Type: application/json" \ -d '{}'
POST settings › free proxies › bulk add to pool
bashcurl -X POST https://localhost:20128/api/settings/free-proxies/bulk-add-to-pool \ -H "Authorization: Bearer $OMNIROUTE_TOKEN" \ -H "Content-Type: application/json" \ -d '{}'
GET settings › free proxies › stats
bashcurl https://localhost:20128/api/settings/free-proxies/stats \ -H "Authorization: Bearer $OMNIROUTE_TOKEN"
POST settings › free proxies › sync
bashcurl -X POST https://localhost:20128/api/settings/free-proxies/sync \ -H "Authorization: Bearer $OMNIROUTE_TOKEN" \ -H "Content-Type: application/json" \ -d '{}'
POST settings › import json
bashcurl -X POST https://localhost:20128/api/settings/import-json \ -H "Authorization: Bearer $OMNIROUTE_TOKEN" \ -H "Content-Type: application/json" \ -d '{}'
DELETE settings › lkgp cache
bashcurl -X DELETE https://localhost:20128/api/settings/lkgp-cache \ -H "Authorization: Bearer $OMNIROUTE_TOKEN"
GET settings › local corpus
bashcurl https://localhost:20128/api/settings/local-corpus \ -H "Authorization: Bearer $OMNIROUTE_TOKEN"
POST settings › local corpus
bashcurl -X POST https://localhost:20128/api/settings/local-corpus \ -H "Authorization: Bearer $OMNIROUTE_TOKEN" \ -H "Content-Type: application/json" \ -d '{}'
DELETE settings › local corpus
bashcurl -X DELETE https://localhost:20128/api/settings/local-corpus \ -H "Authorization: Bearer $OMNIROUTE_TOKEN"
GET settings › mitm
bashcurl https://localhost:20128/api/settings/mitm \ -H "Authorization: Bearer $OMNIROUTE_TOKEN"
POST settings › mitm
bashcurl -X POST https://localhost:20128/api/settings/mitm \ -H "Authorization: Bearer $OMNIROUTE_TOKEN" \ -H "Content-Type: application/json" \ -d '{}'
PUT settings › mitm
bashcurl -X PUT https://localhost:20128/api/settings/mitm \ -H "Authorization: Bearer $OMNIROUTE_TOKEN" \ -H "Content-Type: application/json" \ -d '{}'
GET settings › model aliases
bashcurl https://localhost:20128/api/settings/model-aliases \ -H "Authorization: Bearer $OMNIROUTE_TOKEN"
POST settings › model aliases
bashcurl -X POST https://localhost:20128/api/settings/model-aliases \ -H "Authorization: Bearer $OMNIROUTE_TOKEN" \ -H "Content-Type: application/json" \ -d '{}'
PUT settings › model aliases
bashcurl -X PUT https://localhost:20128/api/settings/model-aliases \ -H "Authorization: Bearer $OMNIROUTE_TOKEN" \ -H "Content-Type: application/json" \ -d '{}'
DELETE settings › model aliases
bashcurl -X DELETE https://localhost:20128/api/settings/model-aliases \ -H "Authorization: Bearer $OMNIROUTE_TOKEN"
GET settings › models dev
bashcurl https://localhost:20128/api/settings/models-dev \ -H "Authorization: Bearer $OMNIROUTE_TOKEN"
POST settings › models dev
bashcurl -X POST https://localhost:20128/api/settings/models-dev \ -H "Authorization: Bearer $OMNIROUTE_TOKEN" \ -H "Content-Type: application/json" \ -d '{}'
GET settings › notion
bashcurl https://localhost:20128/api/settings/notion \ -H "Authorization: Bearer $OMNIROUTE_TOKEN"
POST settings › notion
bashcurl -X POST https://localhost:20128/api/settings/notion \ -H "Authorization: Bearer $OMNIROUTE_TOKEN" \ -H "Content-Type: application/json" \ -d '{}'
DELETE settings › notion
bashcurl -X DELETE https://localhost:20128/api/settings/notion \ -H "Authorization: Bearer $OMNIROUTE_TOKEN"
GET settings › obsidian
bashcurl https://localhost:20128/api/settings/obsidian \ -H "Authorization: Bearer $OMNIROUTE_TOKEN"
POST settings › obsidian
bashcurl -X POST https://localhost:20128/api/settings/obsidian \ -H "Authorization: Bearer $OMNIROUTE_TOKEN" \ -H "Content-Type: application/json" \ -d '{}'
DELETE settings › obsidian
bashcurl -X DELETE https://localhost:20128/api/settings/obsidian \ -H "Authorization: Bearer $OMNIROUTE_TOKEN"
GET settings › obsidian › webdav
bashcurl https://localhost:20128/api/settings/obsidian/webdav \ -H "Authorization: Bearer $OMNIROUTE_TOKEN"
POST settings › obsidian › webdav
bashcurl -X POST https://localhost:20128/api/settings/obsidian/webdav \ -H "Authorization: Bearer $OMNIROUTE_TOKEN" \ -H "Content-Type: application/json" \ -d '{}'
DELETE settings › obsidian › webdav
bashcurl -X DELETE https://localhost:20128/api/settings/obsidian/webdav \ -H "Authorization: Bearer $OMNIROUTE_TOKEN"
GET settings › oneproxy
bashcurl https://localhost:20128/api/settings/oneproxy \ -H "Authorization: Bearer $OMNIROUTE_TOKEN"
POST settings › oneproxy
bashcurl -X POST https://localhost:20128/api/settings/oneproxy \ -H "Authorization: Bearer $OMNIROUTE_TOKEN" \ -H "Content-Type: application/json" \ -d '{}'
DELETE settings › oneproxy
bashcurl -X DELETE https://localhost:20128/api/settings/oneproxy \ -H "Authorization: Bearer $OMNIROUTE_TOKEN"
POST settings › oneproxy › rotate
bashcurl -X POST https://localhost:20128/api/settings/oneproxy/rotate \ -H "Authorization: Bearer $OMNIROUTE_TOKEN" \ -H "Content-Type: application/json" \ -d '{}'
GET settings › proxies
bashcurl https://localhost:20128/api/settings/proxies \ -H "Authorization: Bearer $OMNIROUTE_TOKEN"
POST settings › proxies
bashcurl -X POST https://localhost:20128/api/settings/proxies \ -H "Authorization: Bearer $OMNIROUTE_TOKEN" \ -H "Content-Type: application/json" \ -d '{}'
PATCH settings › proxies
bashcurl -X PATCH https://localhost:20128/api/settings/proxies \ -H "Authorization: Bearer $OMNIROUTE_TOKEN" \ -H "Content-Type: application/json" \ -d '{}'
DELETE settings › proxies
bashcurl -X DELETE https://localhost:20128/api/settings/proxies \ -H "Authorization: Bearer $OMNIROUTE_TOKEN"
POST settings › proxies › <id> › repair relay
bashcurl -X POST https://localhost:20128/api/settings/proxies/{id}/repair-relay \ -H "Authorization: Bearer $OMNIROUTE_TOKEN" \ -H "Content-Type: application/json" \ -d '{}'
GET settings › proxies › assignments
bashcurl https://localhost:20128/api/settings/proxies/assignments \ -H "Authorization: Bearer $OMNIROUTE_TOKEN"
PUT settings › proxies › assignments
bashcurl -X PUT https://localhost:20128/api/settings/proxies/assignments \ -H "Authorization: Bearer $OMNIROUTE_TOKEN" \ -H "Content-Type: application/json" \ -d '{}'
POST settings › proxies › auto test
bashcurl -X POST https://localhost:20128/api/settings/proxies/auto-test \ -H "Authorization: Bearer $OMNIROUTE_TOKEN" \ -H "Content-Type: application/json" \ -d '{}'
POST settings › proxies › batch activate
bashcurl -X POST https://localhost:20128/api/settings/proxies/batch-activate \ -H "Authorization: Bearer $OMNIROUTE_TOKEN" \ -H "Content-Type: application/json" \ -d '{}'
POST settings › proxies › batch delete
bashcurl -X POST https://localhost:20128/api/settings/proxies/batch-delete \ -H "Authorization: Bearer $OMNIROUTE_TOKEN" \ -H "Content-Type: application/json" \ -d '{}'
PUT settings › proxies › bulk assign
bashcurl -X PUT https://localhost:20128/api/settings/proxies/bulk-assign \ -H "Authorization: Bearer $OMNIROUTE_TOKEN" \ -H "Content-Type: application/json" \ -d '{}'
POST settings › proxies › bulk import
bashcurl -X POST https://localhost:20128/api/settings/proxies/bulk-import \ -H "Authorization: Bearer $OMNIROUTE_TOKEN" \ -H "Content-Type: application/json" \ -d '{}'
GET settings › proxies › egress
bashcurl https://localhost:20128/api/settings/proxies/egress \ -H "Authorization: Bearer $OMNIROUTE_TOKEN"
POST settings › proxies › egress
bashcurl -X POST https://localhost:20128/api/settings/proxies/egress \ -H "Authorization: Bearer $OMNIROUTE_TOKEN" \ -H "Content-Type: application/json" \ -d '{}'
GET settings › proxies › health
bashcurl https://localhost:20128/api/settings/proxies/health \ -H "Authorization: Bearer $OMNIROUTE_TOKEN"
POST settings › proxies › migrate
bashcurl -X POST https://localhost:20128/api/settings/proxies/migrate \ -H "Authorization: Bearer $OMNIROUTE_TOKEN" \ -H "Content-Type: application/json" \ -d '{}'
GET settings › proxies › pool
bashcurl https://localhost:20128/api/settings/proxies/pool \ -H "Authorization: Bearer $OMNIROUTE_TOKEN"
PUT settings › proxies › pool
bashcurl -X PUT https://localhost:20128/api/settings/proxies/pool \ -H "Authorization: Bearer $OMNIROUTE_TOKEN" \ -H "Content-Type: application/json" \ -d '{}'
PATCH settings › proxies › pool
bashcurl -X PATCH https://localhost:20128/api/settings/proxies/pool \ -H "Authorization: Bearer $OMNIROUTE_TOKEN" \ -H "Content-Type: application/json" \ -d '{}'
DELETE settings › proxies › pool
bashcurl -X DELETE https://localhost:20128/api/settings/proxies/pool \ -H "Authorization: Bearer $OMNIROUTE_TOKEN"
GET settings › proxies › pool › egress observation
Read-only observation of how many distinct egress IPs actually served the members of a proxy pool over the last 24 h, read from the proxy log (numbers only, never used for routing). Opt-in through the PROXY_POOL_EGRESS_OBSERVATION feature flag: while it is off, or when the read fails, the body is JSON null. Results are cached for 30 seconds per normalized scope (key is read as account, global as the stored global pool).
bashcurl https://localhost:20128/api/settings/proxies/pool/egress-observation \ -H "Authorization: Bearer $OMNIROUTE_TOKEN"
POST settings › proxy › cloudflare deploy
bashcurl -X POST https://localhost:20128/api/settings/proxy/cloudflare-deploy \ -H "Authorization: Bearer $OMNIROUTE_TOKEN" \ -H "Content-Type: application/json" \ -d '{}'
POST settings › proxy › deno deploy
bashcurl -X POST https://localhost:20128/api/settings/proxy/deno-deploy \ -H "Authorization: Bearer $OMNIROUTE_TOKEN" \ -H "Content-Type: application/json" \ -d '{}'
POST settings › proxy › vercel deploy
bashcurl -X POST https://localhost:20128/api/settings/proxy/vercel-deploy \ -H "Authorization: Bearer $OMNIROUTE_TOKEN" \ -H "Content-Type: application/json" \ -d '{}'
POST settings › purge call logs
bashcurl -X POST https://localhost:20128/api/settings/purge-call-logs \ -H "Authorization: Bearer $OMNIROUTE_TOKEN" \ -H "Content-Type: application/json" \ -d '{}'
POST settings › purge detailed logs
bashcurl -X POST https://localhost:20128/api/settings/purge-detailed-logs \ -H "Authorization: Bearer $OMNIROUTE_TOKEN" \ -H "Content-Type: application/json" \ -d '{}'
POST settings › purge logs
bashcurl -X POST https://localhost:20128/api/settings/purge-logs \ -H "Authorization: Bearer $OMNIROUTE_TOKEN" \ -H "Content-Type: application/json" \ -d '{}'
POST settings › purge quota snapshots
bashcurl -X POST https://localhost:20128/api/settings/purge-quota-snapshots \ -H "Authorization: Bearer $OMNIROUTE_TOKEN" \ -H "Content-Type: application/json" \ -d '{}'
GET settings › quota › state
bashcurl https://localhost:20128/api/settings/quota/state \ -H "Authorization: Bearer $OMNIROUTE_TOKEN"
POST settings › quota › state
bashcurl -X POST https://localhost:20128/api/settings/quota/state \ -H "Authorization: Bearer $OMNIROUTE_TOKEN" \ -H "Content-Type: application/json" \ -d '{}'
GET settings › reasoning routing rules
bashcurl https://localhost:20128/api/settings/reasoning-routing-rules \ -H "Authorization: Bearer $OMNIROUTE_TOKEN"
POST settings › reasoning routing rules
bashcurl -X POST https://localhost:20128/api/settings/reasoning-routing-rules \ -H "Authorization: Bearer $OMNIROUTE_TOKEN" \ -H "Content-Type: application/json" \ -d '{}'
GET settings › reasoning routing rules › <id>
bashcurl https://localhost:20128/api/settings/reasoning-routing-rules/{id} \ -H "Authorization: Bearer $OMNIROUTE_TOKEN"
PATCH settings › reasoning routing rules › <id>
bashcurl -X PATCH https://localhost:20128/api/settings/reasoning-routing-rules/{id} \ -H "Authorization: Bearer $OMNIROUTE_TOKEN" \ -H "Content-Type: application/json" \ -d '{}'
DELETE settings › reasoning routing rules › <id>
bashcurl -X DELETE https://localhost:20128/api/settings/reasoning-routing-rules/{id} \ -H "Authorization: Bearer $OMNIROUTE_TOKEN"
POST settings › reasoning routing rules › simulate
bashcurl -X POST https://localhost:20128/api/settings/reasoning-routing-rules/simulate \ -H "Authorization: Bearer $OMNIROUTE_TOKEN" \ -H "Content-Type: application/json" \ -d '{}'
GET settings › task routing
bashcurl https://localhost:20128/api/settings/task-routing \ -H "Authorization: Bearer $OMNIROUTE_TOKEN"
POST settings › task routing
bashcurl -X POST https://localhost:20128/api/settings/task-routing \ -H "Authorization: Bearer $OMNIROUTE_TOKEN" \ -H "Content-Type: application/json" \ -d '{}'
PUT settings › task routing
bashcurl -X PUT https://localhost:20128/api/settings/task-routing \ -H "Authorization: Bearer $OMNIROUTE_TOKEN" \ -H "Content-Type: application/json" \ -d '{}'
GET settings › tier config
bashcurl https://localhost:20128/api/settings/tier-config \ -H "Authorization: Bearer $OMNIROUTE_TOKEN"
PUT settings › tier config
bashcurl -X PUT https://localhost:20128/api/settings/tier-config \ -H "Authorization: Bearer $OMNIROUTE_TOKEN" \ -H "Content-Type: application/json" \ -d '{}'
See the full OpenAPI specification at GET /api/openapi/spec or docs/openapi.yaml for detailed request/response schemas.
<!-- skill:custom-start --> <!-- Thinking budget behavior (preserved curated content — #10169) -->
Returns proxy-level thinking/reasoning request rewrite settings:
| Field | Meaning | |-------|---------| | mode | passthrough (leave client reasoning alone — required for Codex visible thinking), auto (strips all client thinking fields), custom, adaptive | | customBudget | Fixed budget when mode=custom | | effortLevel | Base effort when mode=adaptive |
Not compression and not "decrypt encrypted reasoning". Full guide: docs/guides/THINKING_BUDGET.md.
Example — keep client-controlled reasoning (Codex/Desktop):
bashcurl -X PUT https://localhost:20128/api/settings/thinking-budget \ -H "Authorization: Bearer $OMNIROUTE_TOKEN" \ -H "Content-Type: application/json" \ -d '{"mode":"passthrough","customBudget":10240,"effortLevel":"medium"}'
Warning: mode=auto deletes reasoning / reasoning_effort / Claude thinking from the outbound body before upstream. That can empty thinking panels even when the client requested Ultra + summary. <!-- skill:custom-end -->
| Case | Status | Duration (ms) | Turns | Tokens | Tool calls | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Without | With | Δ | Without | With | Δ | Without | With | Δ | Without | With | Δ | ||
case-01 | fail→pass | 20,297 | 10,967 | -46% | 1 | 1 | 0% | 2,810 | 11,312 | +303% | 0 | 0 | — |
case-02 | fail→pass | 36,122 | 12,133 | -66% | 1 | 1 | 0% | 2,219 | 11,535 | +420% | 0 | 0 | — |
case-03 | fail→pass | 9,109 | 8,894 | -2% | 1 | 1 | 0% | 1,252 | 11,245 | +798% | 0 | 0 | — |
case-04 | fail→pass | 20,413 | 9,592 | -53% | 1 | 1 | 0% | 2,596 | 11,141 | +329% | 0 | 0 | — |
case-05 | fail→pass | 12,354 | 3,216 | -74% | 1 | 1 | 0% | 1,902 | 10,898 | +473% | 0 | 0 | — |
case-06 | fail→pass | 18,636 | 5,392 | -71% | 1 | 1 | 0% | 1,982 | 11,107 | +460% | 0 | 0 | — |
case-07 | fail→pass | 15,487 | 10,466 | -32% | 1 | 1 | 0% | 1,458 | 11,128 | +663% | 0 | 0 | — |
case-08 | fail→pass | 19,453 | 29,446 | +51% | 1 | 1 | 0% | 1,504 | 11,133 | +640% | 0 | 0 | — |
case-09 | fail→pass | 25,778 | 9,623 | -63% | 1 | 1 | 0% | 1,887 | 11,142 | +490% | 0 | 0 | — |
case-10 | fail→pass | 38,164 | 5,255 | -86% | 1 | 1 | 0% | 2,126 | 11,202 | +427% | 0 | 0 | — |
case-11 | fail→pass | 29,430 | 10,008 | -66% | 1 | 1 | 0% | 1,319 | 10,980 | +732% | 0 | 0 | — |
case-12 | fail→pass | 12,680 | 4,013 | -68% | 1 | 1 | 0% | 1,699 | 10,832 | +538% | 0 | 0 | — |
case-13 | fail→pass | 10,917 | 10,741 | -2% | 1 | 1 | 0% | 1,304 | 10,984 | +742% | 0 | 0 | — |
case-14 | fail→pass | 14,022 | 9,498 | -32% | 1 | 1 | 0% | 1,374 | 11,021 | +702% | 0 | 0 | — |
case-15 | fail→pass | 46,862 | 9,149 | -80% | 1 | 1 | 0% | 1,926 | 10,996 | +471% | 0 | 0 | — |
case-16 | fail→pass | 14,515 | 9,246 | -36% | 1 | 1 | 0% | 1,216 | 10,974 | +802% | 0 | 0 | — |
case-17 | fail→pass | 21,277 | 12,240 | -42% | 1 | 1 | 0% | 2,313 | 11,193 | +384% | 0 | 0 | — |
case-18 | fail→pass | 34,411 | 12,731 | -63% | 1 | 1 | 0% | 1,936 | 11,217 | +479% | 0 | 0 | — |
case-19 | fail→pass | 9,583 | 8,903 | -7% | 1 | 1 | 0% | 1,593 | 10,998 | +590% | 0 | 0 | — |
case-20 | pass→pass | 31,598 | 9,572 | -70% | 1 | 1 | 0% | 1,353 | 10,897 | +705% | 0 | 0 | — |
case-21 | pass→pass | 13,330 | 6,770 | -49% | 1 | 1 | 0% | 1,190 | 11,475 | +864% | 0 | 0 | — |
case-22 | fail→pass | 20,051 | 7,137 | -64% | 1 | 1 | 0% | 1,246 | 10,858 | +771% | 0 | 0 | — |
case-23 | pass→pass | 11,882 | 10,956 | -8% | 1 | 1 | 0% | 1,137 | 11,141 | +880% | 0 | 0 | — |
DecimalAI ran this skill against gemini-3.6-flash twice over the same eval suite — once with the skill loaded and once without — and compared the two runs case by case. 23 cases were attempted. The headline lift of +87 percentage points is the difference between those two pass rates over the 23 comparable cases.
Without the skill loaded, the model failed this case. With it loaded, the same prompt on the same model passed. This is one improved case from the latest verified run; every case, including any that regressed, is in the table above.
| Model | Method | Date | Lift |
|---|---|---|---|
| gemini-3.6-flash | verified | 9/8/2026 | +78% |
| gemini-3.6-flash | verified | 8/24/2026 | +86% |
| gemini-3.6-flash | verified | 8/17/2026 | +77% |
| gemini-3.6-flash | verified | 8/7/2026 | +74% |
Other measured skills in the registry, with their headline benchmark lift.