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

अनुमानित फ़ॉलो-अप प्रतिबद्धताओं को सूचीबद्ध और प्रबंधित करें।

प्रतिबद्धताएँ opt-in, अल्पकालिक फ़ॉलो-अप स्मृतियाँ हैं, जो
बातचीत के संदर्भ से बनाई जाती हैं। वैचारिक मार्गदर्शिका के लिए
[अनुमानित प्रतिबद्धताएँ](/hi/concepts/commitments) देखें।

किसी subcommand के बिना, `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
```

## आउटपुट

टेक्स्ट आउटपुट में शामिल हैं:

* प्रतिबद्धता आईडी
* स्थिति
* प्रकार
* सबसे प्रारंभिक नियत समय
* दायरा
* सुझाया गया check-in टेक्स्ट

JSON आउटपुट में प्रतिबद्धता स्टोर पथ और पूर्ण संग्रहीत रिकॉर्ड भी शामिल होते हैं।

## संबंधित

* [अनुमानित प्रतिबद्धताएँ](/hi/concepts/commitments)
* [मेमरी अवलोकन](/hi/concepts/memory)
* [Heartbeat](/hi/gateway/heartbeat)
* [निर्धारित कार्य](/hi/automation/cron-jobs)
