Imported from OpenBMB/ClawXMemory (
clawxmemory/agent-skills/memory-maintenance/SKILL.md). Install upstream withnpx skills add OpenBMB/ClawXMemory --skill memory-maintenance. Copyright stays with the author.
Memory Maintenance
Use this skill for diagnosis and maintenance of ClawXMemory storage/indexes.
Mixed Mode Policy
- Prefer tool calls for normal user-facing retrieval flows.
- Use scripts only for diagnostics, data checks, and troubleshooting.
Recommended Workflow
- Read current memory behavior with tools:
memory_overviewmemory_listmemory_searchmemory_get
- If the user wants an immediate refresh or you see pending memory, run
memory_flush. - If behavior is still suspicious, run scripts:
node {baseDir}/scripts/inspect-indexes.mjs --db <path>node {baseDir}/scripts/recent-sessions.mjs --db <path> --limit 5
- Compare script output with tool output.
- Report concrete findings:
- missing data
- stale indexing
- low extraction quality
- query mismatch
Script Defaults
- Default DB path:
~/.openclaw/clawxmemory/memory.sqlite - You can override with
--db /absolute/path/to/memory.sqlite
Common Debug Cases
- Install succeeds but recall empty: start with
memory_overview, then check table counts andlastIndexedAt. - Project answers weak: start with
memory_search, then inspectl2_projectand recentl1ids usingmemory_get. - Timeline mismatch: inspect
l2_timeids frommemory_search, then compare against the latestl0sessions. - Recent turn not visible yet: inspect
pendingL0inmemory_overview, then runmemory_flush.
Guardrails
- Scripts are read-only diagnostics in this skill.
- Do not modify DB directly from this skill unless user explicitly asks for data repair.