> ## Documentation Index
> Fetch the complete documentation index at: https://docs2.openclaw.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Stromen (doorverwijzing)

# `openclaw tasks flow`

Er is geen top-level `openclaw flows`-commando. Persistente TaskFlow-inspectie bevindt zich onder `openclaw tasks flow`.

## Subcommando's

```bash theme={"theme":{"light":"min-light","dark":"min-dark"}}
openclaw tasks flow list   [--json] [--status <name>]
openclaw tasks flow show   <lookup> [--json]
openclaw tasks flow cancel <lookup>
```

| Subcommando | Beschrijving                     | Argumenten / opties                                                                          |
| ----------- | -------------------------------- | -------------------------------------------------------------------------------------------- |
| `list`      | Geef bijgehouden TaskFlows weer. | `--json` machinaal leesbare uitvoer; `--status <name>`-filter (zie statuswaarden hieronder). |
| `show`      | Toon één TaskFlow.               | `<lookup>` flow-id of owner key; `--json` machinaal leesbare uitvoer.                        |
| `cancel`    | Annuleer een actieve TaskFlow.   | `<lookup>` flow-id of owner key.                                                             |

`<lookup>` accepteert een flow-id (geretourneerd door `list` / `show`) of de owner key van de flow (de stabiele identificatie die het eigenaarssubsysteem gebruikt om de flow te volgen).

### Statusfilterwaarden

`--status` bij `list` accepteert een van:

`queued`, `running`, `waiting`, `blocked`, `succeeded`, `failed`, `cancelled`, `lost`

## Voorbeelden

```bash theme={"theme":{"light":"min-light","dark":"min-dark"}}
openclaw tasks flow list
openclaw tasks flow list --status running
openclaw tasks flow list --json
openclaw tasks flow show flow_abc123
openclaw tasks flow show flow_abc123 --json
openclaw tasks flow cancel flow_abc123
```

Zie [TaskFlow](/nl/automation/taskflow) voor volledige TaskFlow-concepten en authoring. Zie [tasks CLI-referentie](/nl/cli/tasks) voor het bovenliggende `tasks`-commando.

## Gerelateerd

* [CLI-referentie](/nl/cli)
* [Automatisering](/nl/automation)
* [TaskFlow](/nl/automation/taskflow)
