openclaw*: add pages (#21160)

* openclaw*: add pages

---------

Co-authored-by: Dylan <145150333+dmmqz@users.noreply.github.com>
This commit is contained in:
Fazle Arefin
2026-02-22 14:05:22 +11:00
committed by GitHub
parent 97b8165b13
commit 93e6d2f2ac
9 changed files with 193 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
# openclaw agent
> Talk to the OpenClaw AI assistant.
> More information: <https://docs.openclaw.ai/cli/agent>.
- Send a single message to the assistant:
`openclaw agent {{[-m|--message]}} "{{Hello, what is the weather?}}"`
- Start interactive chat mode:
`openclaw agent`
- Send a message with configurable thinking level:
`openclaw agent {{[-m|--message]}} "{{Analyze this}}" --thinking {{off|minimal|low|medium|high}}`
- Display help:
`openclaw agent {{[-h|--help]}}`
+20
View File
@@ -0,0 +1,20 @@
# openclaw channels
> Manage OpenClaw channels (WhatsApp, Telegram, Slack, Discord, etc.).
> More information: <https://docs.openclaw.ai/cli/channels>.
- List all configured channels:
`openclaw channels list`
- Login to a channel:
`openclaw channels login --channel {{whatsapp}}`
- Login to a specific channel with verbose logging:
`openclaw channels login --channel {{telegram}} --verbose`
- Display help:
`openclaw channels {{[-h|--help]}}`
+20
View File
@@ -0,0 +1,20 @@
# openclaw doctor
> Run diagnostics for OpenClaw gateway and channels.
> More information: <https://docs.openclaw.ai/cli/doctor>.
- Run diagnostics:
`openclaw doctor`
- Run diagnostics with automatic fixes:
`openclaw doctor --fix`
- Run diagnostics non-interactively:
`openclaw doctor --non-interactive`
- Display help:
`openclaw doctor {{[-h|--help]}}`
+20
View File
@@ -0,0 +1,20 @@
# openclaw gateway
> Start the OpenClaw gateway server (control plane).
> More information: <https://docs.openclaw.ai/cli/gateway>.
- Start the gateway on the default port (18789):
`openclaw gateway --allow-unconfigured`
- Start the gateway on a specific port:
`openclaw gateway --allow-unconfigured --port {{18789}}`
- Start the gateway with verbose logging:
`openclaw gateway --allow-unconfigured --verbose`
- Display help:
`openclaw gateway {{[-h|--help]}}`
+16
View File
@@ -0,0 +1,16 @@
# openclaw message
> Send messages through OpenClaw channels.
> More information: <https://docs.openclaw.ai/cli/message>.
- Send a message to a phone number (WhatsApp):
`openclaw message send {{[-t|--target]}} {{+1234567890}} {{[-m|--message]}} "{{Hello}}"`
- Send a message to a specific channel:
`openclaw message send --channel {{telegram}} {{[-t|--target]}} {{user_id}} {{[-m|--message]}} "{{Hello}}"`
- Display help:
`openclaw message {{[-h|--help]}}`
+24
View File
@@ -0,0 +1,24 @@
# openclaw nodes
> Manage OpenClaw nodes (iOS, Android, macOS devices).
> More information: <https://docs.openclaw.ai/cli/nodes>.
- List all connected and pending nodes:
`openclaw nodes list`
- List pending pairing requests:
`openclaw nodes pending`
- Approve a pending node pairing request:
`openclaw nodes approve {{request_id}}`
- View node status:
`openclaw nodes status`
- Display help:
`openclaw nodes {{[-h|--help]}}`
+16
View File
@@ -0,0 +1,16 @@
# openclaw onboard
> Run the onboarding wizard to set up OpenClaw.
> More information: <https://docs.openclaw.ai/cli/onboard>.
- Run the onboarding wizard with daemon installation:
`openclaw onboard --install-daemon`
- Run the onboarding wizard without installing the daemon:
`openclaw onboard`
- Display help:
`openclaw onboard {{[-h|--help]}}`
+20
View File
@@ -0,0 +1,20 @@
# openclaw update
> Update OpenClaw to the latest version.
> More information: <https://docs.openclaw.ai/cli/update>.
- Update to the latest version:
`openclaw update`
- Switch to a specific release channel:
`openclaw update --channel {{stable|beta|dev}}`
- Display version:
`openclaw update {{[-v|--version]}}`
- Display help:
`openclaw update {{[-h|--help]}}`
+37
View File
@@ -0,0 +1,37 @@
# openclaw
> A personal AI assistant that you run on your own devices.
> Some subcommands such as `onboard`, `agent`, `doctor`, etc. have their own usage documentation.
> More information: <https://docs.openclaw.ai/cli>.
- Run the onboarding wizard to set up the gateway and channels:
`openclaw onboard --install-daemon`
- Start the gateway server:
`openclaw gateway --allow-unconfigured --port {{18789}} --verbose`
- Send a message to a contact:
`openclaw message send {{[-t|--target]}} {{+1234567890}} {{[-m|--message]}} "{{Hello}}"`
- Talk to the assistant with a single message:
`openclaw agent {{[-m|--message]}} "{{Ship checklist}}"`
- Start interactive chat mode:
`openclaw agent`
- Run diagnostics and check system health:
`openclaw doctor`
- Update OpenClaw to the latest version:
`openclaw update`
- List configured channels:
`openclaw channels list`