Commitments are short-lived follow-up memories. When enabled, OpenClaw can notice that a conversation created a future check-in opportunity and remember to bring it back later. Examples:Documentation Index
Fetch the complete documentation index at: https://docs.openclaw.ai/llms.txt
Use this file to discover all available pages before exploring further.
- You mention an interview tomorrow. OpenClaw may check in afterward.
- You say you are exhausted. OpenClaw may ask later whether you slept.
- The agent says it will follow up after something changes. OpenClaw may track that open loop.
MEMORY.md, and they are not exact
reminders. They sit between memory and automation: OpenClaw remembers a
conversation-bound obligation, then heartbeat delivers it when it is due.
Enable commitments
Commitments are off by default. Enable them in config:openclaw.json:
commitments.maxPerDay limits how many inferred follow-ups can be delivered
per agent session in a rolling day. The default is 3.
How it works
After an agent reply, OpenClaw may run a hidden background extraction pass in a separate context. That pass looks only for inferred follow-up commitments. It does not write into the visible conversation and it does not ask the main agent to reason about the extraction. When it finds a high-confidence candidate, OpenClaw stores a commitment with:- the agent id
- the session key
- the original channel and delivery target
- a due window
- a short suggested check-in
- non-instructional metadata for heartbeat to decide whether to send it
HEARTBEAT_OK to dismiss it.
If heartbeat is configured with target: "none", due commitments remain
internal and do not send external check-ins. Commitment delivery prompts do not
replay the original conversation text, and due commitment heartbeat turns run
without OpenClaw tools.
OpenClaw never delivers an inferred commitment immediately after writing it.
The due time is clamped to at least one heartbeat interval after the commitment
is created, so the follow-up cannot echo back in the same moment it was
inferred.
Scope
Commitments are scoped to the exact agent and channel context where they were created. A follow-up inferred while talking to one agent in Discord is not delivered by another agent, another channel, or an unrelated session. This scope is part of the feature. Natural check-ins should feel like the same conversation continuing, not like a global reminder system.Commitments vs reminders
| Need | Use |
|---|---|
| ”Remind me at 3 PM” | Scheduled tasks |
| ”Ping me in 20 minutes” | Scheduled tasks |
| ”Run this report every weekday” | Scheduled tasks |
| ”I have an interview tomorrow” | Commitments |
| ”I was up all night” | Commitments |
| ”Follow up if I do not answer this open thread” | Commitments |
Manage commitments
Use the CLI to inspect and clear stored commitments:openclaw commitments for the command reference.
Privacy and cost
Commitment extraction uses an LLM pass, so enabling it adds background model usage after eligible turns. The pass is hidden from the user-visible conversation, but it can read the recent exchange needed to decide whether a follow-up exists. Stored commitments are local OpenClaw state. They are operational memory, not long-term memory. Disable the feature with:Troubleshooting
If expected follow-ups are not appearing:- Confirm
commitments.enabledistrue. - Check
openclaw commitments --allfor pending, dismissed, snoozed, or expired records. - Make sure heartbeat is running for the agent.
- Check whether
commitments.maxPerDayhas already been reached for that agent session. - Remember that exact reminders are skipped by commitment extraction and should appear under scheduled tasks instead.