A fast, searchable, single-file reference for every OpenClaw CLI command — built for operators who live in the terminal and need answers without digging through docs.
openclaw-cheatsheet.html is a standalone HTML file with zero dependencies (beyond a Google Fonts CDN call that degrades gracefully offline). Drop it anywhere, open it in a browser, and you have an instant searchable reference for all OpenClaw commands.
Built for OpenClaw 2026.3+.
- Search across all commands, flags, and descriptions instantly
- Categorized tabs — logs & tailing, gateway, status & doctor, channels, config, cron, agents & models, auth & security, memory & skills, sandbox & nodes, browser, setup & misc
- Top picks marked — the commands you'll actually reach for most are flagged with ★
- Color-coded syntax — commands, arguments, and flags are visually distinct
- Global flags reference always visible at the top
- Dark terminal aesthetic — easy on the eyes during late-night debugging sessions
- Fully offline after first load
open openclaw-cheatsheet.html# Python
python3 -m http.server 8080
# Node
npx serve .Then visit http://localhost:8080/openclaw-cheatsheet.html.
| Command | What it does |
|---|---|
openclaw logs --follow --local-time |
Stream logs live in real time |
openclaw logs --json | jq '.level=="error"' |
Filter to errors only |
openclaw gateway restart |
Apply config changes |
openclaw status --deep |
Live probe every channel |
openclaw doctor |
Health checks + auto-fix |
openclaw channels logs --channel <name> |
Isolate logs to one channel |
The most important category for debugging:
openclaw logs # last 500 lines
openclaw logs --follow # live stream
openclaw logs --follow --local-time # live stream, your timezone
openclaw logs --limit 50 # quick recent scan
openclaw logs --json | jq '.level=="error"' # errors only
openclaw channels logs --channel all # all channel logs
openclaw channels logs --channel telegram # specific channel.
├── openclaw-cheatsheet.html # The cheatsheet (single file, self-contained)
├── logo.svg # Project logo
└── README.md # This file
Tested on OpenClaw 2026.3.22+. Some commands may vary on older versions — use --help to verify flags on your installed version.
If a command is wrong, missing, or a flag has changed — PRs welcome. Keep it factual and sourced to the official docs at docs.openclaw.ai.