Install
openclaw skills install memory-setup-openclawConfigure and validate OpenClaw memory recall for persistent context. Use when enabling memory_search/memory_get, fixing poor memory recall, or setting up MEMORY.md + memory/*.md workflows in an OpenClaw workspace.
openclaw skills install memory-setup-openclawSet up durable memory for OpenClaw so the agent can recall prior decisions, preferences, and todos.
In workspace root, keep:
MEMORY.md (curated long-term memory)memory/YYYY-MM-DD.md (daily notes)Optional structure:
memory/projects/memory/system/memory/groups/Configure under agents.defaults.memorySearch (not top-level memorySearch).
Example:
{
"agents": {
"defaults": {
"memorySearch": {
"enabled": true,
"provider": "local",
"includeDefaultMemory": true,
"maxResults": 20,
"minScore": 0.3
}
}
}
}
Notes:
includeDefaultMemory: true indexes MEMORY.md + memory/**/*.md.local, openai, gemini, voyage, mistral.memorySearch.remote.apiKey).openclaw statusopenclaw memory status (if available in your CLI build)Ask a question about past context, then verify the agent:
memory_searchmemory_get for precise lines when neededagents.defaults.memorySearch.enabled = true.minScore (e.g. 0.2) to broaden hits.maxResults (e.g. 30).MEMORY.md and daily logs.Before answering questions about prior work, decisions, dates, people, preferences, or todos:
memory_search firstmemory_get second (only needed lines)This keeps responses grounded and auditable.