mirror of
https://github.com/openclaw/openclaw.git
synced 2026-04-03 21:31:26 +00:00
44 lines
935 B
Markdown
44 lines
935 B
Markdown
---
|
|
summary: "CLI reference for `openclaw flows` commands"
|
|
read_when:
|
|
- You want to list, inspect, or cancel TaskFlow flows from the CLI
|
|
- You encounter openclaw flows in release notes or docs
|
|
title: "flows"
|
|
---
|
|
|
|
# `openclaw flows`
|
|
|
|
Inspect and manage [TaskFlow](/automation/taskflow) flows from the command line.
|
|
|
|
## Commands
|
|
|
|
### `flows list`
|
|
|
|
```bash
|
|
openclaw flows list [--json]
|
|
```
|
|
|
|
List active and recent flows with status and sync mode.
|
|
|
|
### `flows show`
|
|
|
|
```bash
|
|
openclaw flows show <lookup>
|
|
```
|
|
|
|
Show details for a specific flow by flow id or lookup key, including state, revision history, and associated tasks.
|
|
|
|
### `flows cancel`
|
|
|
|
```bash
|
|
openclaw flows cancel <lookup>
|
|
```
|
|
|
|
Cancel a running flow and its active tasks.
|
|
|
|
## Related
|
|
|
|
- [TaskFlow](/automation/taskflow) — flow orchestration overview
|
|
- [Background Tasks](/automation/tasks) — the detached work ledger
|
|
- [CLI reference](/cli/index) — full command tree
|