~/.openclaw/workspace). The model only remembers what gets
saved to disk; there is no hidden state.
How it works
Your agent has four memory-related files:USER.md(optional) — stable preferences, communication style, relationships, and active-project context written as directives. Loaded at the start of a session with a separate small budget.MEMORY.md— long-term memory. Durable non-profile facts and decisions. Loaded at the start of a session.memory/YYYY-MM-DD.md(ormemory/YYYY-MM-DD-<slug>.md) — daily notes. Running context and observations. Today’s and yesterday’s dated notes load automatically on a bare/newor/reset; slugged variants, such as those written by the bundled session-memory hook, are picked up alongside the date-only file.DREAMS.md(optional) — Dream Diary and dreaming sweep summaries for human review, including grounded historical backfill entries.
What goes where
USER.md is the compact user-model layer. Write stable preferences and profile
facts as imperative directives with observed-date and active/superseded
metadata. When a preference changes, supersede it in place instead of appending
a contradictory active directive. See User model.
MEMORY.md is the compact, curated layer for durable non-profile facts,
standing decisions, and short summaries that should be available at the start
of a session. It is not a raw transcript, daily log, or exhaustive archive.
memory/YYYY-MM-DD.md files are the working layer: detailed daily notes,
observations, session summaries, and raw context that may still be useful
later. These are indexed for memory_search and memory_get, but are not
injected into the bootstrap prompt on every turn.
Over time, useful material from daily notes is distilled into MEMORY.md by
the default dreaming sweep. The generated workspace
instructions still encourage the agent to record durable facts as it works,
while dreaming handles background consolidation. The default heartbeat prompt
performs no memory maintenance on its own.
If MEMORY.md grows past the bootstrap file budget, OpenClaw keeps the file on
disk intact but truncates the copy injected into context. Treat that as a
signal to move detailed material into memory/*.md, keep only a durable
summary in MEMORY.md, or raise the bootstrap limits if you want to spend more
prompt budget. Use /context list, /context detail, or openclaw doctor to
see raw vs. injected sizes and truncation status.
Import from coding assistants
The Control UI can import existing local memory from Codex, Claude Code, and Hermes. Open Settings → Import Memory, choose the destination agent, review the detected files, and confirm the import. For the existing default agent, you can instead open Settings → Ask OpenClaw and sayimport memory; this narrower
chat wizard requires completed onboarding, copies only new detected memory, and
reports per-source failures or possible partial copies. OpenClaw copies only
Markdown memory:
- Codex: the consolidated
MEMORY.mdandmemory_summary.mdfiles under~/.codex/memories(orCODEX_HOME/memories). Raw rollout and transcript files are not imported. - Claude Code: Markdown files from each project auto-memory directory under
~/.claude/projects/*/memory, plus a user-configuredautoMemoryDirectorywhen present. Project instructions, sessions, settings, and credentials are not part of this memory-only action. - Hermes:
MEMORY.mdandUSER.mdfrom the detected Hermes home. Config, credentials, and skills are not part of this memory-only action.
memory/imports/codex/ and
memory/imports/claude-code/, or memory/imports/hermes/ in the selected agent
workspace. They are indexed for memory_search and available through
memory_get; they are not merged into the agent’s bootstrap MEMORY.md. The
source files are left unchanged.
The preview marks destination conflicts. Enable Replace existing imports to
replace those files; apply creates a verified pre-import backup and preserves
item-level copies of overwritten files in the migration report.
Action-sensitive memories
Most memories are ordinary Markdown notes. Some affect what the agent should do later; for those, capture when it is safe to act on the note, not just the fact itself. Capture that action boundary when a note involves:- approval or permission requirements,
- temporary constraints,
- handoffs to another session, thread, or person,
- expiry conditions,
- safe-to-act timing,
- source or owner authority,
- instructions to avoid a tempting action.
- what changes future behavior,
- when or under what condition it applies,
- when it expires, or what unlocks action,
- what the agent should avoid doing,
- who is the source or owner, if that affects trust or authority.
Memory tools
The agent has three tools for working with memory:memory_search— finds relevant notes using semantic search, even when the wording differs from the original.memory_get— reads a specific memory file or line range.intent— creates, lists, or explicitly cancels event-conditioned standing intents. Time-based reminders continue to use scheduled tasks.
memory-core).
Memory search
When an embedding provider is configured,memory_search uses hybrid search:
vector similarity (semantic meaning) combined with keyword matching (exact
terms like IDs and code symbols). This works out of the box with an API key
for any supported provider.
OpenClaw uses OpenAI embeddings by default. Set
memory.search.provider explicitly to use Gemini, Voyage,
Mistral, Bedrock, DeepInfra, local GGUF, Ollama, LM Studio, GitHub Copilot, or
a generic OpenAI-compatible endpoint.Memory engines
Builtin (default)
SQLite-based. Works out of the box with keyword search, vector similarity, and
hybrid search. No extra dependencies.
Honcho
AI-native cross-session memory with user modeling, semantic search, and
multi-agent awareness. Plugin install.
LanceDB
LanceDB-backed memory with OpenAI-compatible embeddings, auto-recall,
auto-capture, and local Ollama embedding support. Plugin install.
Knowledge wiki layer
If you want durable memory to behave more like a maintained knowledge base than raw notes, use the bundledmemory-wiki plugin. It compiles durable
knowledge into a wiki vault with deterministic page structure, structured
claims and evidence, contradiction and freshness tracking, generated
dashboards, compiled digests, and wiki-native tools (wiki_status,
wiki_search, wiki_get, wiki_apply, wiki_lint).
memory-wiki does not replace the active memory plugin; the active memory
plugin still owns recall, promotion, and dreaming. memory-wiki adds a
provenance-rich knowledge layer beside it. You can browse the compiled wiki
in the Control UI under Memory → Dreams → Diary → Memory Wiki
(details).
Memory Wiki
Compiles durable memory into a provenance-rich wiki vault with claims,
dashboards, bridge mode, and Obsidian-friendly workflows.
Automatic memory flush
Before compaction summarizes your conversation, OpenClaw runs a silent turn that reminds the agent to save important context to memory files. This is on by default; setagents.defaults.compaction.memoryFlush.enabled: false to turn it off.
To keep that housekeeping turn on a local model, set an exact override that
applies only to the memory-flush turn (it does not inherit the active
session’s model fallback chain):
Dreaming
Dreaming is the default background consolidation path for memory. It collects short-term recall signals, scores candidates, and promotes only qualified owner or agent-derived items into long-term memory (MEMORY.md):
- Default on: disable it with
plugins.entries.memory-core.config.dreaming.enabled: false. - Scheduled: when enabled,
memory-coreauto-manages one recurring cron job for a full dreaming sweep. - Thresholded: promotions must pass score, recall-frequency, and query-diversity gates.
- Consolidated: a bounded subagent rewrite merges duplicates and supersedes stale entries after the deterministic gate. Invalid or unavailable rewrites use append-only fallback.
- Taint gated: untrusted and system-derived candidates never enter the consolidation prompt or durable promotion path.
- Reviewable: phase summaries and diary entries are written to
DREAMS.mdfor human review, including rewrite counts and highlights.
Grounded backfill and live promotion
The dreaming system has two related review lanes:- Live dreaming works from the short-term dreaming store under
memory/.dreams/and is what the normal deep phase uses to decide what graduates intoMEMORY.md. - Grounded backfill reads historical
memory/YYYY-MM-DD.mdnotes as standalone day files and writes structured review output intoDREAMS.md.
MEMORY.md.
--stage-short-term flag stages grounded durable candidates into the same
short-term dreaming store the normal deep phase already uses; it does not
promote them directly. So:
DREAMS.mdstays the human review surface.- The short-term store stays the machine-facing ranking surface.
MEMORY.mdis still only written by deep promotion.
CLI
Further reading
- Memory search: search pipeline, providers, and tuning.
- Builtin memory engine: default SQLite backend.
- Honcho memory: AI-native cross-session memory.
- Memory LanceDB: LanceDB-backed plugin with OpenAI-compatible embeddings.
- Memory Wiki: compiled knowledge vault and wiki-native tools.
- Dreaming: background promotion from short-term recall to long-term memory.
- Memory configuration reference: all config knobs.
- Compaction: how compaction interacts with memory.
- Active memory: sub-agent memory for interactive chat sessions.
- User model: directive-based durable preferences and profile facts.
- Standing intents: event-conditioned prospective memory.