mirror of https://github.com/openclaw/openclaw.git
37 lines
1.3 KiB
Markdown
37 lines
1.3 KiB
Markdown
---
|
|
summary: "Compatibility note for the mistakenly documented `openclaw flows` command"
|
|
read_when:
|
|
- You encounter openclaw flows in older release notes, issue threads, or search results
|
|
- You want to know what command replaced openclaw flows
|
|
title: "flows"
|
|
---
|
|
|
|
# `openclaw flows`
|
|
|
|
`openclaw flows` is **not** a current OpenClaw CLI command.
|
|
|
|
Some older release notes and docs mistakenly documented a `flows` command surface. The supported operator surface is [`openclaw tasks`](/automation/tasks).
|
|
|
|
```bash
|
|
openclaw tasks list
|
|
openclaw tasks show <lookup>
|
|
openclaw tasks cancel <lookup>
|
|
```
|
|
|
|
## Use instead
|
|
|
|
- `openclaw tasks list` — list tracked background tasks
|
|
- `openclaw tasks show <lookup>` — inspect one task by task id, run id, or session key
|
|
- `openclaw tasks cancel <lookup>` — cancel a running background task
|
|
- `openclaw tasks notify <lookup> <policy>` — change task notification behavior
|
|
- `openclaw tasks audit` — surface stale or broken task runs
|
|
|
|
## Why this page exists
|
|
|
|
This page stays in place so existing links from older changelog entries, issue threads, and search results have a clear correction instead of a dead end.
|
|
|
|
## Related
|
|
|
|
- [Background Tasks](/automation/tasks) — detached work ledger
|
|
- [CLI reference](/cli/index) — full command tree
|