CLI commands
QR
openclaw qr
Generate a mobile pairing QR and setup code from your current Gateway configuration.
The legacy openclaw clawbot qr alias accepts every flag below.
openclaw qropenclaw qr --setup-code-onlyopenclaw qr --jsonopenclaw qr --remoteopenclaw qr --limitedopenclaw qr --voice-nodeopenclaw qr --url wss://gateway.example/wsOfficial OpenClaw iOS and Android apps connect automatically when their setup-code metadata matches. If a request remains pending (for example, for a non-official client or mismatched metadata), review and approve it:
openclaw devices listopenclaw devices approve <requestId>Options
--remote: prefergateway.remote.url; falls back togateway.tailscale.mode=serve|funnelif that URL is unset. Ignoresdevice-pairpluginpublicUrl.--url <url>: override the gateway URL used in the payload--public-url <url>: override the public URL used in the payload--token <token>: override the gateway token the bootstrap flow authenticates against--password <password>: override the gateway password the bootstrap flow authenticates against--limited: omit administrative Gateway access from the handed-off operator token--voice-node: issue node credentials plus onlyoperator.readandoperator.talk--setup-code-only: print only the setup code;--jsontakes precedence and emits the JSON document instead--no-ascii: skip ASCII QR rendering--json: emit JSON (setupCode,gatewayUrl, optionalgatewayUrls,auth,access, optionalaccessDowngraded,urlSource)
--token and --password are mutually exclusive. --limited and --voice-node are mutually exclusive.
Setup code contents
The setup code carries an opaque, short-lived bootstrapToken, not the shared gateway token/password. For a wss:// endpoint (or same-host loopback), the default bootstrap flow issues:
- a primary
nodetoken withscopes: [] - a full native-mobile
operatorhandoff token withoperator.admin,operator.approvals,operator.read,operator.talk.secrets, andoperator.write
Use --limited to keep the same node token while omitting operator.admin from the operator handoff. Pairing-mutation scope is never handed off by a setup code.
Use --voice-node for an embedded or room voice client. It keeps the node token and hands off a separate operator token limited to operator.read and operator.talk; it cannot send messages, mutate configuration, or invoke general write-scoped Gateway methods.
Plaintext LAN ws:// setup remains available, but OpenClaw automatically uses
the limited profile because a network observer could capture and race the bearer
bootstrap token. Configure wss:// or Tailscale Serve, then generate a new code
to get full access.
Gateway URL resolution
Mobile pairing fails closed for Tailscale/public ws:// gateway URLs: use Tailscale Serve/Funnel or a wss:// gateway URL for those. Private LAN addresses and .local Bonjour hosts remain supported over plain ws://, with limited operator access as described above.
The QR command advertises Tailscale URLs only when OpenClaw owns the route through gateway.tailscale.mode=serve|funnel. Legacy external Serve routes that target the ordinary Gateway listener are not advertised because that listener rejects Tailscale-shaped proxy ingress.
If an older setup used gateway.bind=lan with a persistent default HTTPS Serve
route, run openclaw doctor to inspect it. Doctor does not migrate or clear the
route because its status cannot prove who owns it, even with --fix; if you
confirm it is stale, clear only its root handler, configure
gateway.bind=loopback plus gateway.tailscale.mode=serve manually, and restart
the Gateway. Custom Serve ports and retired named-Service routes require the
same manual cleanup; Doctor prints the relevant guidance.
With --remote, one of gateway.remote.url or gateway.tailscale.mode=serve|funnel is required.
Auth resolution (no --remote)
Gateways with gateway.auth.mode="trusted-proxy" can generate setup codes without a shared token or password.
The proxy still authenticates the mobile connection before it reaches the Gateway.
The setup code does not bypass Cloudflare Access or another proxy login.
Bootstrap expiry, device binding, and access profiles stay the same.
When no CLI auth override is passed, local gateway auth SecretRefs resolve as follows:
| Condition | Resolves |
|---|---|
gateway.auth.mode="token", or inferred mode with no winning password source |
gateway.auth.token |
gateway.auth.mode="password", or inferred mode with no winning token from auth/env |
gateway.auth.password |
Both gateway.auth.token and gateway.auth.password are configured (including SecretRefs) and gateway.auth.mode is unset |
fails; set gateway.auth.mode explicitly |
Auth resolution (--remote)
If effectively active remote credentials are configured as SecretRefs and neither --token nor --password is passed, the command resolves them from the active gateway snapshot. If the gateway is unavailable, the command fails fast.