docs: rewrite published docs grounded in current source (#100142)

Source-grounded rewrite of 529 published docs pages with per-unit information-loss verification: 1,713 factual corrections cited to src/**, generated surfaces regenerated, frontmatter titles preserved for i18n, release notes pages untouched. All docs gates green.

Closes #100141
This commit is contained in:
Peter Steinberger
2026-07-05 00:32:47 -04:00
committed by GitHub
parent e069cb26f7
commit f7d7148cf0
531 changed files with 31763 additions and 40928 deletions

View File

@@ -9,9 +9,9 @@ title: "`openclaw commitments`"
List and manage inferred follow-up commitments.
Commitments are opt-in, short-lived follow-up memories created from
conversation context. See [Inferred commitments](/concepts/commitments) for the
conceptual guide.
Commitments are opt-in (`commitments.enabled`), short-lived follow-up memories
created from conversation context and delivered by heartbeat. See
[Inferred commitments](/concepts/commitments) for the conceptual guide and config.
With no subcommand, `openclaw commitments` lists pending commitments.
@@ -28,9 +28,12 @@ openclaw commitments dismiss <id...> [--json]
- `--all`: show all statuses instead of only pending commitments.
- `--agent <id>`: filter to one agent id.
- `--status <status>`: filter by status. Values: `pending`, `sent`,
`dismissed`, `snoozed`, or `expired`.
`dismissed`, `snoozed`, or `expired`. Unknown values exit with an error.
- `--json`: output machine-readable JSON.
`dismiss` marks the given commitment ids as `dismissed` so heartbeat will not
deliver them.
## Examples
List pending commitments:
@@ -71,16 +74,18 @@ openclaw commitments --all --json
## Output
Text output includes:
Text output prints the commitment count, the store path, any active filters,
and one row per commitment:
- commitment id
- status
- kind
- kind (`event_check_in`, `deadline_check`, `care_check_in`, or `open_loop`)
- earliest due time
- scope
- scope (agent/channel/target)
- suggested check-in text
JSON output also includes the commitment store path and full stored records.
JSON output includes the count, the active status and agent filters, the
commitment store path, and the full stored records.
## Related