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

Répertoriez et gérez les engagements de suivi déduits.

Les engagements sont des mémoires de suivi optionnelles et de courte durée, créées à partir du
contexte de conversation. Consultez [Engagements déduits](/fr/concepts/commitments) pour le
guide conceptuel.

Sans sous-commande, `openclaw commitments` répertorie les engagements en attente.

## Utilisation

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

## Options

* `--all` : afficher tous les statuts au lieu des seuls engagements en attente.
* `--agent <id>` : filtrer sur un seul identifiant d’agent.
* `--status <status>` : filtrer par statut. Valeurs : `pending`, `sent`,
  `dismissed`, `snoozed` ou `expired`.
* `--json` : produire du JSON lisible par machine.

## Exemples

Répertorier les engagements en attente :

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

Répertorier tous les engagements stockés :

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

Filtrer sur un seul agent :

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

Trouver les engagements reportés :

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

Ignorer un ou plusieurs engagements :

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

Exporter au format JSON :

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

## Sortie

La sortie texte inclut :

* identifiant de l’engagement
* statut
* type
* première échéance possible
* portée
* texte de relance suggéré

La sortie JSON inclut également le chemin du magasin d’engagements et les enregistrements stockés complets.

## Connexe

* [Engagements déduits](/fr/concepts/commitments)
* [Vue d’ensemble de la mémoire](/fr/concepts/memory)
* [Heartbeat](/fr/gateway/heartbeat)
* [Tâches planifiées](/fr/automation/cron-jobs)
