> ## 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.

# Alur (pengalihan)

# `openclaw tasks flow`

Tidak ada perintah `openclaw flows` tingkat atas. Inspeksi TaskFlow yang tahan lama berada di bawah `openclaw tasks flow`.

## Subperintah

```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>
```

| Subperintah | Deskripsi                                  | Argumen / opsi                                                                                     |
| ----------- | ------------------------------------------ | -------------------------------------------------------------------------------------------------- |
| `list`      | Mencantumkan TaskFlow yang dilacak.        | `--json` keluaran yang dapat dibaca mesin; filter `--status <name>` (lihat nilai status di bawah). |
| `show`      | Menampilkan satu TaskFlow.                 | `<lookup>` ID alur atau kunci pemilik; `--json` keluaran yang dapat dibaca mesin.                  |
| `cancel`    | Membatalkan TaskFlow yang sedang berjalan. | `<lookup>` ID alur atau kunci pemilik.                                                             |

`<lookup>` menerima ID alur (yang dikembalikan oleh `list` / `show`) atau kunci pemilik alur (pengidentifikasi stabil yang digunakan subsistem pemilik untuk melacak alur).

### Nilai filter status

`--status` pada `list` menerima salah satu dari:

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

## Contoh

```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
```

Untuk konsep TaskFlow lengkap dan penulisan, lihat [TaskFlow](/id/automation/taskflow). Untuk perintah induk `tasks`, lihat [referensi CLI tasks](/id/cli/tasks).

## Terkait

* [Referensi CLI](/id/cli)
* [Automasi](/id/automation)
* [TaskFlow](/id/automation/taskflow)
