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

# フロー（リダイレクト）

# `openclaw tasks flow`

トップレベルの `openclaw flows` コマンドはありません。永続的な TaskFlow の検査は `openclaw tasks flow` の下にあります。

## サブコマンド

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

| サブコマンド   | 説明                       | 引数 / オプション                                                 |
| -------- | ------------------------ | ---------------------------------------------------------- |
| `list`   | 追跡中の TaskFlow を一覧表示します。  | `--json` は機械可読出力、`--status <name>` はフィルターです（下記のステータス値を参照）。 |
| `show`   | 1 つの TaskFlow を表示します。    | `<lookup>` はフロー ID または所有者キーです。`--json` は機械可読出力です。          |
| `cancel` | 実行中の TaskFlow をキャンセルします。 | `<lookup>` はフロー ID または所有者キーです。                             |

`<lookup>` は、フロー ID（`list` / `show` が返すもの）またはフローの所有者キー（所有するサブシステムがフローを追跡するために使う安定した識別子）のどちらも受け付けます。

### ステータスフィルター値

`list` の `--status` は、`queued`、`running`、`waiting`、`blocked`、`succeeded`、`failed`、`cancelled`、`lost` のいずれかを受け付けます。

## 例

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

TaskFlow の概念と作成については、[TaskFlow](/ja-JP/automation/taskflow) を参照してください。親の `tasks` コマンドについては、[tasks CLI リファレンス](/ja-JP/cli/tasks) を参照してください。

## 関連

* [CLI リファレンス](/ja-JP/cli)
* [自動化](/ja-JP/automation)
* [TaskFlow](/ja-JP/automation/taskflow)
