Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions pages/common/openclaw-agent.md
Original file line number Diff line number Diff line change
@@ -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 changes: 20 additions & 0 deletions pages/common/openclaw-channels.md
Original file line number Diff line number Diff line change
@@ -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 (WhatsApp):

`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 changes: 20 additions & 0 deletions pages/common/openclaw-doctor.md
Original file line number Diff line number Diff line change
@@ -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 changes: 20 additions & 0 deletions pages/common/openclaw-gateway.md
Original file line number Diff line number Diff line change
@@ -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 changes: 16 additions & 0 deletions pages/common/openclaw-message.md
Original file line number Diff line number Diff line change
@@ -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 changes: 24 additions & 0 deletions pages/common/openclaw-nodes.md
Original file line number Diff line number Diff line change
@@ -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 changes: 16 additions & 0 deletions pages/common/openclaw-onboard.md
Original file line number Diff line number Diff line change
@@ -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 changes: 20 additions & 0 deletions pages/common/openclaw-update.md
Original file line number Diff line number Diff line change
@@ -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 (stable/beta/dev):

`openclaw update --channel {{stable|beta|dev}}`

- View current version:

`openclaw update --version`

- Display help:

`openclaw update {{[-h|--help]}}`
37 changes: 37 additions & 0 deletions pages/common/openclaw.md
Original file line number Diff line number Diff line change
@@ -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`