mirror of https://github.com/openclaw/openclaw.git
docs: refresh cli and node pairing references
This commit is contained in:
parent
6fc69f5d33
commit
1809da659e
|
|
@ -100,7 +100,7 @@ Stored under `~/.openclaw/devices/`:
|
|||
|
||||
### Notes
|
||||
|
||||
- The legacy `node.pair.*` API (CLI: `openclaw nodes pending/approve`) is a
|
||||
- The legacy `node.pair.*` API (CLI: `openclaw nodes pending|approve|reject|rename`) is a
|
||||
separate gateway-owned pairing store. WS nodes still require device pairing.
|
||||
|
||||
## Related docs
|
||||
|
|
|
|||
|
|
@ -91,6 +91,20 @@ Pass `--token` or `--password` explicitly. Missing explicit credentials is an er
|
|||
openclaw gateway health --url ws://127.0.0.1:18789
|
||||
```
|
||||
|
||||
### `gateway usage-cost`
|
||||
|
||||
Fetch usage-cost summaries from session logs.
|
||||
|
||||
```bash
|
||||
openclaw gateway usage-cost
|
||||
openclaw gateway usage-cost --days 7
|
||||
openclaw gateway usage-cost --json
|
||||
```
|
||||
|
||||
Options:
|
||||
|
||||
- `--days <days>`: number of days to include (default `30`).
|
||||
|
||||
### `gateway status`
|
||||
|
||||
`gateway status` shows the Gateway service (launchd/systemd/schtasks) plus an optional RPC probe.
|
||||
|
|
|
|||
|
|
@ -46,6 +46,7 @@ This page describes the current CLI behavior. If commands change, update this do
|
|||
- [`browser`](/cli/browser)
|
||||
- [`cron`](/cli/cron)
|
||||
- [`tasks`](/cli/index#tasks)
|
||||
- [`flows`](/cli/flows)
|
||||
- [`dns`](/cli/dns)
|
||||
- [`docs`](/cli/docs)
|
||||
- [`hooks`](/cli/hooks)
|
||||
|
|
@ -105,6 +106,7 @@ openclaw [--dev] [--profile <name>] <command>
|
|||
set
|
||||
unset
|
||||
file
|
||||
schema
|
||||
validate
|
||||
completion
|
||||
doctor
|
||||
|
|
@ -122,6 +124,8 @@ openclaw [--dev] [--profile <name>] <command>
|
|||
reset
|
||||
uninstall
|
||||
update
|
||||
wizard
|
||||
status
|
||||
channels
|
||||
list
|
||||
status
|
||||
|
|
@ -133,6 +137,9 @@ openclaw [--dev] [--profile <name>] <command>
|
|||
login
|
||||
logout
|
||||
directory
|
||||
self
|
||||
peers list
|
||||
groups list|members
|
||||
skills
|
||||
search
|
||||
install
|
||||
|
|
@ -157,6 +164,28 @@ openclaw [--dev] [--profile <name>] <command>
|
|||
message
|
||||
send
|
||||
broadcast
|
||||
poll
|
||||
react
|
||||
reactions
|
||||
read
|
||||
edit
|
||||
delete
|
||||
pin
|
||||
unpin
|
||||
pins
|
||||
permissions
|
||||
search
|
||||
thread create|list|reply
|
||||
emoji list|upload
|
||||
sticker send|upload
|
||||
role info|add|remove
|
||||
channel info|list
|
||||
member info
|
||||
voice status
|
||||
event list|create
|
||||
timeout
|
||||
kick
|
||||
ban
|
||||
agent
|
||||
agents
|
||||
list
|
||||
|
|
@ -168,18 +197,26 @@ openclaw [--dev] [--profile <name>] <command>
|
|||
set-identity
|
||||
acp
|
||||
mcp
|
||||
serve
|
||||
list
|
||||
show
|
||||
set
|
||||
unset
|
||||
status
|
||||
health
|
||||
sessions
|
||||
cleanup
|
||||
tasks
|
||||
list
|
||||
audit
|
||||
maintenance
|
||||
show
|
||||
notify
|
||||
cancel
|
||||
flow list|show|cancel
|
||||
gateway
|
||||
call
|
||||
usage-cost
|
||||
health
|
||||
status
|
||||
probe
|
||||
|
|
@ -228,13 +265,34 @@ openclaw [--dev] [--profile <name>] <command>
|
|||
runs
|
||||
run
|
||||
nodes
|
||||
status
|
||||
describe
|
||||
list
|
||||
pending
|
||||
approve
|
||||
reject
|
||||
rename
|
||||
invoke
|
||||
notify
|
||||
push
|
||||
canvas snapshot|present|hide|navigate|eval
|
||||
canvas a2ui push|reset
|
||||
camera list|snap|clip
|
||||
screen record
|
||||
location get
|
||||
devices
|
||||
list
|
||||
remove
|
||||
clear
|
||||
approve
|
||||
reject
|
||||
rotate
|
||||
revoke
|
||||
node
|
||||
run
|
||||
status
|
||||
install
|
||||
uninstall
|
||||
start
|
||||
stop
|
||||
restart
|
||||
approvals
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
summary: "CLI reference for `openclaw nodes` (list/status/approve/invoke, camera/canvas/screen)"
|
||||
summary: "CLI reference for `openclaw nodes` (status, pairing, invoke, camera/canvas/screen)"
|
||||
read_when:
|
||||
- You’re managing paired nodes (cameras, screen, canvas)
|
||||
- You need to approve requests or invoke node commands
|
||||
|
|
@ -28,6 +28,8 @@ openclaw nodes list --connected
|
|||
openclaw nodes list --last-connected 24h
|
||||
openclaw nodes pending
|
||||
openclaw nodes approve <requestId>
|
||||
openclaw nodes reject <requestId>
|
||||
openclaw nodes rename --node <id|name|ip> --name <displayName>
|
||||
openclaw nodes status
|
||||
openclaw nodes status --connected
|
||||
openclaw nodes status --last-connected 24h
|
||||
|
|
|
|||
|
|
@ -43,7 +43,7 @@ pending request is superseded and a new `requestId` is created. Re-run
|
|||
Notes:
|
||||
|
||||
- `nodes status` marks a node as **paired** when its device pairing role includes `node`.
|
||||
- `node.pair.*` (CLI: `openclaw nodes pending/approve/reject`) is a separate gateway-owned
|
||||
- `node.pair.*` (CLI: `openclaw nodes pending/approve/reject/rename`) is a separate gateway-owned
|
||||
node pairing store; it does **not** gate the WS `connect` handshake.
|
||||
|
||||
## Remote node host (system.run)
|
||||
|
|
|
|||
Loading…
Reference in New Issue