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

اعرض وأدر التزامات المتابعة المستنتجة.

الالتزامات هي ذكريات متابعة اختيارية وقصيرة الأجل تُنشأ من
سياق المحادثة. راجع [الالتزامات المستنتجة](/ar/concepts/commitments) للاطلاع على
الدليل المفاهيمي.

من دون أمر فرعي، يعرض `openclaw commitments` الالتزامات المعلّقة.

## الاستخدام

```bash theme={"theme":{"light":"min-light","dark":"min-dark"}}
openclaw commitments [--all] [--agent <id>] [--status <status>] [--json]
openclaw commitments list [--all] [--agent <id>] [--status <status>] [--json]
openclaw commitments dismiss <id...> [--json]
```

## الخيارات

* `--all`: اعرض كل الحالات بدلاً من الالتزامات المعلّقة فقط.
* `--agent <id>`: صفِّ النتائج إلى معرّف وكيل واحد.
* `--status <status>`: صفِّ حسب الحالة. القيم: `pending`، و`sent`،
  و`dismissed`، و`snoozed`، أو `expired`.
* `--json`: أخرج JSON قابلاً للقراءة آلياً.

## أمثلة

اعرض الالتزامات المعلّقة:

```bash theme={"theme":{"light":"min-light","dark":"min-dark"}}
openclaw commitments
```

اعرض كل التزام مخزّن:

```bash theme={"theme":{"light":"min-light","dark":"min-dark"}}
openclaw commitments --all
```

صفِّ إلى وكيل واحد:

```bash theme={"theme":{"light":"min-light","dark":"min-dark"}}
openclaw commitments --agent main
```

اعثر على الالتزامات المؤجلة:

```bash theme={"theme":{"light":"min-light","dark":"min-dark"}}
openclaw commitments --status snoozed
```

استبعد التزاماً واحداً أو أكثر:

```bash theme={"theme":{"light":"min-light","dark":"min-dark"}}
openclaw commitments dismiss cm_abc123 cm_def456
```

صدّر كـ JSON:

```bash theme={"theme":{"light":"min-light","dark":"min-dark"}}
openclaw commitments --all --json
```

## الإخراج

يتضمن الإخراج النصي:

* معرّف الالتزام
* الحالة
* النوع
* أقرب وقت استحقاق
* النطاق
* نص تسجيل الوصول المقترح

يتضمن إخراج JSON أيضاً مسار مخزن الالتزامات والسجلات المخزّنة الكاملة.

## ذو صلة

* [الالتزامات المستنتجة](/ar/concepts/commitments)
* [نظرة عامة على الذاكرة](/ar/concepts/memory)
* [Heartbeat](/ar/gateway/heartbeat)
* [المهام المجدولة](/ar/automation/cron-jobs)
