How the vault works
Every container is launched withHTTPS_PROXY pointing at the vault’s gateway. When the agent calls a real API URL — api.anthropic.com, api.github.com, gmail.googleapis.com — the gateway intercepts the request, matches the host against its stored secrets, and rewrites the auth header with the real token before the request leaves for the internet. Standard HTTP clients (curl, fetch, requests, axios, git) honor HTTPS_PROXY automatically, so the agent just makes normal requests with no auth headers at all.
If the target service isn’t connected yet, the gateway returns an error with a connect_url the agent surfaces to you, instead of a silent failure.
NanoClaw talks to the vault through two values in .env: ONECLI_URL (the OneCLI app/API — note that what OneCLI’s own docs call the gateway is a separate proxy listener that agent egress actually flows through; these pages use “gateway” loosely for the whole vault) and ONECLI_API_KEY (the host’s own credential for the vault API).
Credential stubs
Some tools insist on finding a credential locally before they’ll start — MCP servers especially. For these, the container gets stub files whose secret values are the placeholder string"onecli-managed". The Gmail tool is the worked example: the Gmail MCP server reads ~/.gmail-mcp/credentials.json containing "access_token": "onecli-managed", happily starts, and sends Authorization: Bearer onecli-managed — which the gateway rewrites to the real OAuth token on its way to gmail.googleapis.com. Files containing onecli-managed are managed by OneCLI; agents are instructed never to modify or delete them.
Setting it up
The setup wizard handles the vault as one of its steps, with three paths:- Fresh install (default) — runs the OneCLI installer (a Docker Compose stack plus the
onecliCLI), points the CLI at the new instance, and writesONECLI_URLto.env. - Reuse existing — if setup detects a working
oneclion the host, it asks before reinstalling. Choosing reuse leaves the running gateway untouched (re-running the installer would rebind the listener and break other apps using it) and just records its URL. - Remote vault — set
NANOCLAW_ONECLI_API_HOSTbefore running setup to point at a OneCLI instance on another machine. Setup installs only the CLI, health-checks the remote URL, and writesONECLI_URL. Pass the remote vault’s API token viaNANOCLAW_ONECLI_API_TOKENso setup can authenticate the CLI and writeONECLI_API_KEY.
onecli CLI at the versions pinned in versions.json (onecli-gateway, onecli-cli), never at latest. It also probes the gateway’s /v1/health: @onecli-sh/sdk 2.x talks to the gateway’s /v1 API, and a gateway that predates it answers 404 to every vault call — failures that look transient but are permanent. Setup never upgrades the gateway for you; it warns and points to the verbatim migration runbook, docs/onecli-upgrades.md. The gateway pin also moves through /update-nanoclaw — see Upgrading.
On an existing install (for example after /update-nanoclaw brings in OneCLI as a breaking change), run the /init-onecli skill instead. It installs the vault, migrates any credentials it finds in .env (Anthropic keys, OPENAI_API_KEY, and similar container-facing secrets) into the vault, and removes the raw values from .env. Channel tokens like TELEGRAM_BOT_TOKEN stay in .env — the host process uses those, not the containers.
Anthropic credentials
The wizard’s auth step offers three ways to connect Claude, all of which end up as a vault secret rather than an env var:- Claude subscription (Pro/Max)
- API key or existing OAuth token
- Custom endpoint
Setup runs
claude setup-token under a PTY so the browser OAuth flow works, captures the resulting sk-ant-oat… token, and registers it:Adding a credential for a new service
Register a secret with a name and a host pattern — the host the gateway should inject it for:set-secrets replaces the agent’s whole list, so read and merge first:
<agentGroupId> is the agentGroupId field in the group’s container.json. The same model powers setup/register-claude-token.sh, which accepts SECRET_NAME and HOST_PATTERN overrides if you want the subscription flow against a different secret name or host.
Accessing the OneCLI dashboard
The vault ships a web dashboard at the same address asONECLI_URL — this is the “OneCLI web UI” the OAuth-based tool skills refer to. Open it in a browser to connect OAuth services (Gmail, Calendar), browse secrets, and watch gateway activity.
Two gotchas on a headless install:
- The dashboard binds where OneCLI binds. On installs where containers reach the gateway over the Docker bridge, that address isn’t routable from your laptop — reach it through an SSH tunnel or a private network such as a tailnet rather than exposing the port publicly.
- OAuth Connect flows finish by redirecting the browser back into the dashboard at OneCLI’s configured
APP_URL, which defaults tohttp://localhost:10254. Started from a remote browser, the provider consent itself works (that redirect is derived from the request), but the final hop lands on localhost and dies unlessAPP_URLis set to the URL you actually browse from. Theconnect_urllinks the gateway hands to agents are built from the same value, so an unsetAPP_URLmakes those unreachable too.
Approving credential use
Secrets can be configured in OneCLI to require manual approval per request. When the gateway intercepts a request that needs one, it holds the HTTP connection open and asks NanoClaw, which delivers a Credentials Request card to an admin DM with Approve / Reject buttons. The card always names the agent; when the gateway supplies a structured summary, it shows an Action line plus labeled fields describing what the request does. Without one it falls back to the raw shape: a body preview and theMETHOD host/path line.
- Who gets the card: admins of the originating agent group first, then global admins, then owners — the first one with a reachable DM. No eligible approver means auto-deny.
- Approving or rejecting: tap the button on the card. The decision is returned to the gateway, which either injects the credential and lets the request through or fails it.
- Expiry: unanswered cards expire on the gateway’s TTL and the request is denied. Cards left over from a previous process are marked “Expired (host restarted)” at startup.
ncl approvals list --status pending. The CLI is read-only for approvals — decisions happen on the card.
Opting out: the native credential proxy
If you don’t want the vault — a single-user install where.env simplicity beats per-agent policies — the /use-native-credential-proxy skill adds an explicit opt-out. With NANOCLAW_NATIVE_CREDENTIALS=true, NanoClaw reads ANTHROPIC_API_KEY, CLAUDE_CODE_OAUTH_TOKEN, or ANTHROPIC_AUTH_TOKEN (plus optional ANTHROPIC_BASE_URL) straight from .env and threads them into the container’s environment as standard SDK variables.
The skill is additive — with the flag unset, it’s a no-op and the vault path is unchanged. It only covers Anthropic credentials; other service secrets still need the vault or manual handling.
Egress lockdown
For defense in depth,NANOCLAW_EGRESS_LOCKDOWN=true places agents on an internal Docker network where the vault’s gateway is the only reachable egress hop — agents physically cannot bypass the proxy. See Hardening for the full setup.