Files
openclaw/docs/cli/memory.md

42 lines
1.2 KiB
Markdown
Raw Normal View History

2026-01-15 06:12:54 +00:00
---
summary: "CLI reference for `clawdbot memory` (status/index/search)"
read_when:
- You want to index or search semantic memory
- Youre debugging memory availability or indexing
---
# `clawdbot memory`
Manage semantic memory indexing and search.
Provided by the active memory plugin (default: `memory-core`; set `plugins.slots.memory = "none"` to disable).
2026-01-15 06:12:54 +00:00
Related:
- Memory concept: [Memory](/concepts/memory)
2026-01-18 02:12:01 +00:00
- Plugins: [Plugins](/plugins)
2026-01-15 06:12:54 +00:00
## Examples
```bash
clawdbot memory status
2026-01-17 20:18:26 +00:00
clawdbot memory status --deep
clawdbot memory status --deep --index
2026-01-18 01:24:16 +00:00
clawdbot memory status --deep --index --verbose
2026-01-15 06:12:54 +00:00
clawdbot memory index
clawdbot memory index --verbose
2026-01-15 06:12:54 +00:00
clawdbot memory search "release checklist"
clawdbot memory status --agent main
clawdbot memory index --agent main --verbose
2026-01-15 06:12:54 +00:00
```
2026-01-18 01:24:16 +00:00
## Options
Common:
- `--agent <id>`: scope to a single agent (default: all configured agents).
- `--verbose`: emit detailed logs during probes and indexing.
Notes:
- `memory status --deep` probes vector + embedding availability.
- `memory status --deep --index` runs a reindex if the store is dirty.
- `memory index --verbose` prints per-phase details (provider, model, sources, batch activity).