3.3 KiB
3.3 KiB
summary, read_when
| summary | read_when | |||
|---|---|---|---|---|
| Clawdbot Gateway CLI (`clawdbot gateway`) — run, query, and discover gateways |
|
Gateway CLI
The Gateway is Clawdbot’s WebSocket server (providers, nodes, sessions, hooks).
Subcommands in this page live under clawdbot gateway ….
Related docs:
Run the Gateway
Run a local Gateway process:
clawdbot gateway
Notes:
- By default, the Gateway refuses to start unless
gateway.mode=localis set in~/.clawdbot/clawdbot.json. Use--allow-unconfiguredfor ad-hoc/dev runs. - Binding beyond loopback without auth is blocked (safety guardrail).
SIGUSR1triggers an in-process restart (useful without a supervisor).
Options
--port <port>: WebSocket port (default comes from config/env; usually18789).--bind <loopback|lan|tailnet|auto>: listener bind mode.--auth <token|password>: auth mode override.--token <token>: token override (also setsCLAWDBOT_GATEWAY_TOKENfor the process).--password <password>: password override (also setsCLAWDBOT_GATEWAY_PASSWORDfor the process).--tailscale <off|serve|funnel>: expose the Gateway via Tailscale.--tailscale-reset-on-exit: reset Tailscale serve/funnel config on shutdown.--force: kill any existing listener on the selected port before starting.--verbose: verbose logs.--claude-cli-logs: only show claude-cli logs in the console (and enable its stdout/stderr).--ws-log <auto|full|compact>: websocket log style (defaultauto).--compact: alias for--ws-log compact.--raw-stream: log raw model stream events to jsonl.--raw-stream-path <path>: raw stream jsonl path.
Query a running Gateway
All query commands use WebSocket RPC.
Shared options:
--url <url>: Gateway WebSocket URL (defaults togateway.remote.urlwhen configured).--token <token>: Gateway token (if required).--password <password>: Gateway password (password auth).--timeout <ms>: timeout (default10000).--expect-final: wait for a “final” response (agent calls).
gateway health
clawdbot gateway health --url ws://127.0.0.1:18789
gateway status
clawdbot gateway status --url ws://127.0.0.1:18789
gateway call <method>
Low-level RPC helper.
clawdbot gateway call status
clawdbot gateway call logs.tail --params '{"sinceMs": 60000}'
Discover gateways (Bonjour)
gateway discover scans for Gateway bridge beacons (_clawdbot-bridge._tcp).
- Multicast DNS-SD:
local. - Unicast DNS-SD (Wide-Area Bonjour):
clawdbot.internal.(requires split DNS + DNS server; see /gateway/bonjour)
Only gateways with the bridge enabled will advertise the discovery beacon.
gateway discover
clawdbot gateway discover
Options:
--timeout <ms>: per-command timeout (browse/resolve); default2000.--json: machine-readable output (also disables styling/spinner).
Examples:
clawdbot gateway discover --timeout 4000
clawdbot gateway discover --json | jq '.beacons[].wsUrl'