> ## 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`       | يسرد TaskFlows المتتبعة.   | مخرجات `--json` قابلة للقراءة آليًا؛ مرشح `--status <name>` (انظر قيم الحالة أدناه). |
| `show`       | يعرض TaskFlow واحدًا.      | `<lookup>` معرّف التدفق أو مفتاح المالك؛ مخرجات `--json` قابلة للقراءة آليًا.        |
| `cancel`     | يلغي TaskFlow قيد التشغيل. | `<lookup>` معرّف التدفق أو مفتاح المالك.                                             |

يقبل `<lookup>` إما معرّف تدفق (تعيده `list` / `show`) أو مفتاح مالك التدفق (المعرّف الثابت الذي يستخدمه النظام الفرعي المالك لتتبع التدفق).

### قيم مرشح الحالة

يقبل `--status` في `list` إحدى القيم التالية:

`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](/ar/automation/taskflow). ولأمر `tasks` الأصل، راجع [مرجع CLI للمهام](/ar/cli/tasks).

## ذو صلة

* [مرجع CLI](/ar/cli)
* [الأتمتة](/ar/automation)
* [TaskFlow](/ar/automation/taskflow)
