
























@@ -7,18 +7,18 @@ read_when:
77---
8899OpenClaw remembers things by writing **plain Markdown files** in your agent's
10-workspace. The model only "remembers" what gets saved to disk -- there is no
10+workspace. The model only "remembers" what gets saved to disk — there is no
1111hidden state.
12121313## How it works
14141515Your agent has three memory-related files:
161617-- **`MEMORY.md`** -- long-term memory. Durable facts, preferences, and
17+- **`MEMORY.md`** — long-term memory. Durable facts, preferences, and
1818 decisions. Loaded at the start of every DM session.
19-- **`memory/YYYY-MM-DD.md`** -- daily notes. Running context and observations.
19+- **`memory/YYYY-MM-DD.md`** — daily notes. Running context and observations.
2020 Today and yesterday's notes are loaded automatically.
21-- **`DREAMS.md`** (optional) -- Dream Diary and dreaming sweep
21+- **`DREAMS.md`** (optional) — Dream Diary and dreaming sweep
2222 summaries for human review, including grounded historical backfill entries.
23232424These files live in the agent workspace (default `~/.openclaw/workspace`).
@@ -32,9 +32,9 @@ prefer TypeScript." It will write it to the appropriate file.
32323333The agent has two tools for working with memory:
343435-- **`memory_search`** -- finds relevant notes using semantic search, even when
35+- **`memory_search`** — finds relevant notes using semantic search, even when
3636 the wording differs from the original.
37-- **`memory_get`** -- reads a specific memory file or line range.
37+- **`memory_get`** — reads a specific memory file or line range.
38383939Both tools are provided by the active memory plugin (default: `memory-core`).
4040@@ -61,7 +61,7 @@ See [Memory Wiki](/plugins/memory-wiki).
6161## Memory search
62626363When an embedding provider is configured, `memory_search` uses **hybrid
64-search** -- combining vector similarity (semantic meaning) with keyword matching
64+search** — combining vector similarity (semantic meaning) with keyword matching
6565(exact terms like IDs and code symbols). This works out of the box once you have
6666an API key for any supported provider.
6767@@ -104,7 +104,7 @@ dashboards, bridge mode, and Obsidian-friendly workflows.
104104105105Before [compaction](/concepts/compaction) summarizes your conversation, OpenClaw
106106runs a silent turn that reminds the agent to save important context to memory
107-files. This is on by default -- you do not need to configure anything.
107+files. This is on by default — you do not need to configure anything.
108108109109<Tip>
110110The memory flush prevents context loss during compaction. If your agent has
@@ -176,16 +176,14 @@ openclaw memory index --force # Rebuild the index
176176177177## Further reading
178178179-- [Builtin Memory Engine](/concepts/memory-builtin) -- default SQLite backend
180-- [QMD Memory Engine](/concepts/memory-qmd) -- advanced local-first sidecar
181-- [Honcho Memory](/concepts/memory-honcho) -- AI-native cross-session memory
182-- [Memory Wiki](/plugins/memory-wiki) -- compiled knowledge vault and wiki-native tools
183-- [Memory Search](/concepts/memory-search) -- search pipeline, providers, and
184- tuning
185-- [Dreaming](/concepts/dreaming) -- background promotion
186- from short-term recall to long-term memory
187-- [Memory configuration reference](/reference/memory-config) -- all config knobs
188-- [Compaction](/concepts/compaction) -- how compaction interacts with memory
179+- [Builtin memory engine](/concepts/memory-builtin): default SQLite backend.
180+- [QMD memory engine](/concepts/memory-qmd): advanced local-first sidecar.
181+- [Honcho memory](/concepts/memory-honcho): AI-native cross-session memory.
182+- [Memory Wiki](/plugins/memory-wiki): compiled knowledge vault and wiki-native tools.
183+- [Memory search](/concepts/memory-search): search pipeline, providers, and tuning.
184+- [Dreaming](/concepts/dreaming): background promotion from short-term recall to long-term memory.
185+- [Memory configuration reference](/reference/memory-config): all config knobs.
186+- [Compaction](/concepts/compaction): how compaction interacts with memory.
189187190188## Related
191189此内容由惯性聚合(RSS阅读器)自动聚合整理,仅供阅读参考。 原文来自 — 版权归原作者所有。