From bfafec2271e29a56a500cd3b76220377bc62c31c Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Wed, 25 Feb 2026 02:41:13 +0000 Subject: [PATCH] docs: expand doctor and devices CLI references --- docs/cli/doctor.md | 2 ++ docs/cli/index.md | 14 ++++++++++++++ 2 files changed, 16 insertions(+) diff --git a/docs/cli/doctor.md b/docs/cli/doctor.md index dff899d7cd2..d53d86452f3 100644 --- a/docs/cli/doctor.md +++ b/docs/cli/doctor.md @@ -28,6 +28,8 @@ Notes: - Interactive prompts (like keychain/OAuth fixes) only run when stdin is a TTY and `--non-interactive` is **not** set. Headless runs (cron, Telegram, no terminal) will skip prompts. - `--fix` (alias for `--repair`) writes a backup to `~/.openclaw/openclaw.json.bak` and drops unknown config keys, listing each removal. - State integrity checks now detect orphan transcript files in the sessions directory and can archive them as `.deleted.` to reclaim space safely. +- Doctor includes a memory-search readiness check and can recommend `openclaw configure --section model` when embedding credentials are missing. +- If sandbox mode is enabled but Docker is unavailable, doctor reports a high-signal warning with remediation (`install Docker` or `openclaw config set agents.defaults.sandbox.mode off`). ## macOS: `launchctl` env overrides diff --git a/docs/cli/index.md b/docs/cli/index.md index 0a9878c23da..32eb31b5eb3 100644 --- a/docs/cli/index.md +++ b/docs/cli/index.md @@ -472,6 +472,20 @@ Subcommands: - `pairing approve [--account ] [--notify]` - `pairing approve --channel [--account ] [--notify]` +### `devices` + +Manage gateway device pairing entries and per-role device tokens. + +Subcommands: + +- `devices list [--json]` +- `devices approve [requestId] [--latest]` +- `devices reject ` +- `devices remove ` +- `devices clear --yes [--pending]` +- `devices rotate --device --role [--scope ]` +- `devices revoke --device --role ` + ### `webhooks gmail` Gmail Pub/Sub hook setup + runner. See [/automation/gmail-pubsub](/automation/gmail-pubsub).