2026-01-15 06:12:54 +00:00
|
|
|
|
---
|
|
|
|
|
|
summary: "CLI reference for `clawdbot nodes` (list/status/approve/invoke, camera/canvas/screen)"
|
|
|
|
|
|
read_when:
|
|
|
|
|
|
- You’re managing paired nodes (cameras, screen, canvas)
|
|
|
|
|
|
- You need to approve requests or invoke node commands
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
|
|
|
|
# `clawdbot nodes`
|
|
|
|
|
|
|
|
|
|
|
|
Manage paired nodes (devices) and invoke node capabilities.
|
|
|
|
|
|
|
|
|
|
|
|
Related:
|
|
|
|
|
|
- Nodes overview: [Nodes](/nodes)
|
|
|
|
|
|
- Camera: [Camera nodes](/nodes/camera)
|
|
|
|
|
|
- Images: [Image nodes](/nodes/images)
|
|
|
|
|
|
|
|
|
|
|
|
## Common commands
|
|
|
|
|
|
|
|
|
|
|
|
```bash
|
|
|
|
|
|
clawdbot nodes list
|
2026-01-21 04:39:11 +00:00
|
|
|
|
clawdbot nodes list --connected
|
|
|
|
|
|
clawdbot nodes list --last-connected 24h
|
2026-01-15 06:12:54 +00:00
|
|
|
|
clawdbot nodes pending
|
|
|
|
|
|
clawdbot nodes approve <requestId>
|
|
|
|
|
|
clawdbot nodes status
|
2026-01-21 04:39:11 +00:00
|
|
|
|
clawdbot nodes status --connected
|
|
|
|
|
|
clawdbot nodes status --last-connected 24h
|
2026-01-15 06:12:54 +00:00
|
|
|
|
```
|
|
|
|
|
|
|
2026-01-21 03:02:50 +00:00
|
|
|
|
`nodes list` prints pending/paired tables. Paired rows include the most recent connect age (Last Connect).
|
2026-01-21 04:39:11 +00:00
|
|
|
|
Use `--connected` to only show currently-connected nodes. Use `--last-connected <duration>` to
|
|
|
|
|
|
filter to nodes that connected within a duration (e.g. `24h`, `7d`).
|
2026-01-21 03:02:50 +00:00
|
|
|
|
|
2026-01-15 06:12:54 +00:00
|
|
|
|
## Invoke / run
|
|
|
|
|
|
|
|
|
|
|
|
```bash
|
|
|
|
|
|
clawdbot nodes invoke --node <id|name|ip> --command <command> --params <json>
|
|
|
|
|
|
clawdbot nodes run --node <id|name|ip> <command...>
|
|
|
|
|
|
```
|