-
-
Notifications
You must be signed in to change notification settings - Fork 7.4k
Management Auth
OmniRoute has four credential families that can authorize management routes.
They are not interchangeable. Inference API keys (sk-…) do not manage the
server unless they were explicitly granted manage or admin scope.
Canonical implementation: src/lib/api/requireManagementAuth.ts.
| Credential | Typical form | Created where | Intended use | Management capability |
|---|---|---|---|---|
| Dashboard JWT session |
auth_token cookie |
Dashboard login | Browser UI | Full dashboard management, subject to CSRF, locality, and always-protected-route rules |
| CLI machine-id token | internal / local | CLI bootstrap (omniroute on the same machine) |
Local CLI | Local management only |
| Scoped Access Token | oma_live_… |
Settings → Access Tokens or omniroute connect
|
Remote CLI and management API | Must satisfy the route's required read, write, or admin scope |
| Inference API key |
sk-… (and other API-key prefixes) |
API Manager / API Keys |
/v1/* inference |
None unless the key metadata includes manage or admin
|
oma_ credentials are management/CLI credentials. They are not inference API keys.
If login/API-key auth is disabled for the server, some management routes may accept unauthenticated calls. Local-only and always-protected routes still apply their own rules. Presenting one of these credentials is therefore not universally mandatory, and possessing one is not universally sufficient without the required scope and route locality.
Related: Remote Mode (how oma_live_… is minted for a remote CLI).
These two scope vocabularies are different. Do not mix them.
| Scope | Typical operations |
|---|---|
read |
List/status GETs that the token is allowed to see |
write |
Mutations (create/update/delete) below admin |
admin |
Full remote CLI / connect token (password bootstrap defaults here) |
A token with read cannot call a write route. Runtime message shape:
Access token scope '<have>' is insufficient; '<need>' required.
| Scope | Meaning |
|---|---|
| (none) | Inference only. Management routes return 403. |
manage |
Management API (same gate as requireManagementAuth API-key branch) |
admin |
Also satisfies hasManageScope (treated as management-capable) |
Enable manage on the key in the API Keys / API Manager UI. Do not reuse a
chat client key for automation unless you deliberately granted that scope.
- Open
/login, sign in with the management password (INITIAL_PASSWORDon first boot). - Cookie
auth_tokenis HttpOnly. Browser dashboard uses it automatically. - Log out via
/api/auth/logout. There is no long-lived secret to copy.
- Run
omnirouteon the same host as the server (loopback). - The CLI bootstraps a machine-id token under
~/.omniroute/(chmod 600). - This does not work from another machine. Use an Access Token for remote CLI.
- Dashboard: Settings → Access Tokens → create (name + scope). The secret is shown once.
- Or CLI:
omniroute connect <host>(password → token). See Remote Mode. - Header:
Authorization: Bearer oma_live_… - Revoke from the same Access Tokens page (or delete the CLI context).
- Server stores only a hash. Treat the plaintext like a password.
- Dashboard: API Manager / API Keys → create or edit a key → enable
manage(oradmin). - Header:
Authorization: Bearer sk-…(the key's actual prefix). - Revoke or strip
managein the same UI. - Least privilege for automation that is not the CLI: prefer a
readAccess Token for GET-only jobs; usemanageon an API key only when the caller must also speak/v1and management.
Authorization: Bearer oma_live_<secret>
Authorization: Bearer sk-<secret>
Cookie: auth_token=<dashboard-jwt>Do not put management credentials in the URL path or query string. Management auth is header/cookie only.
Read-only (list providers). Use a read Access Token:
curl -sS "$OMNIROUTE_URL/api/providers" \
-H "Authorization: Bearer oma_live_<read-token>"Modifying (create a provider connection). Use write/admin Access Token or a
manage-scoped API key:
curl -sS -X POST "$OMNIROUTE_URL/api/providers" \
-H "Authorization: Bearer oma_live_<write-or-admin-token>" \
-H "Content-Type: application/json" \
-d '{"provider":"openai","apiKey":"<upstream-key>"}'Inference (not management). Ordinary API key, no manage required:
curl -sS "$OMNIROUTE_URL/v1/models" \
-H "Authorization: Bearer sk-<inference-key>"| Situation | Typical status | Message (sanitized) |
|---|---|---|
| No credential | 401 | Authentication required |
Invalid/expired oma_live_…
|
401 | Invalid or expired access token |
Valid API key without manage/admin
|
403 | API key lacks 'manage' scope. Enable it in the API Keys dashboard. |
| Invalid ordinary API key on a management route | 403 | Invalid management token |
| Access Token scope too low | 403 | Access token scope '<have>' is insufficient; '<need>' required. |
"Invalid management token" means the bearer was not accepted as a management
credential. It does not tell you which family to mint. Use the table above:
inference keys need manage scope; remote CLI needs oma_live_…; the dashboard
uses the session cookie.
| Caller | Use |
|---|---|
| Browser | Dashboard session |
| CLI on the server host | Machine token |
| CLI on a laptop talking to a remote server |
oma_live_… from omniroute connect
|
| CI / scripts (management only) |
oma_live_… with the smallest scope that works |
CI that must call both /v1 and /api
|
API key with manage or two credentials |
OmniRoute · Website · npm · Docker Hub
- Setup Guide
- User Guide
- Features
- Quick Start (Docker)
- Electron Desktop App
- Termux (Android)
- PWA Guide
- MCP Server
- A2A Server
- Agent Protocols
- OpenCode Plugin
- Webhooks
- Cloud Agents
- Skills
- Memory
- Evals
- Gamification
- Guardrails
- Compliance
- Error Sanitization
- Public Credentials
- Route Guard Tiers
- Stealth Guide
- CLI Token Auth