惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
MongoDB | Blog
MongoDB | Blog
博客园_首页
博客园 - 三生石上(FineUI控件)
博客园 - 聂微东
B
Blog RSS Feed
D
Docker
IT之家
IT之家
大猫的无限游戏
大猫的无限游戏
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
阮一峰的网络日志
阮一峰的网络日志
罗磊的独立博客
Recent Announcements
Recent Announcements
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
A
About on SuperTechFans
The GitHub Blog
The GitHub Blog
G
Google Developers Blog
V
V2EX
量子位
雷峰网
雷峰网
月光博客
月光博客
云风的 BLOG
云风的 BLOG
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
T
Tailwind CSS Blog

Recent Commits to openclaw:main

test: merge chat side-result checks · openclaw/openclaw@ddd2c2a test: merge cron history checks · openclaw/openclaw@f7eb746 test: merge responsive navigation shell checks · openclaw/openclaw@c2e4b47 docs(changelog): add codex oauth fixes · openclaw/openclaw@628e6cd test: merge navigation routing cases · openclaw/openclaw@5d8cecb Tests: mock channel registry bundled fallback · openclaw/openclaw@2b08233 Secrets: avoid broad web search discovery for single plugin config · openclaw/openclaw@a464f59 test: merge config view browser checks · openclaw/openclaw@20cf511 fix(status): align oauth health with runtime · openclaw/openclaw@eed7116 feat: add macOS screen snapshots for monitor preview (#67954) thanks … · openclaw/openclaw@f377db1 fix: report shared auth scopes in hello-ok (#67810) thanks @BunsDev · openclaw/openclaw@0b6c39b Auto-reply: avoid eager bundled route fallback · openclaw/openclaw@3ea1bf4 Tests: narrow session binding contract setup · openclaw/openclaw@54e4e16 fix(macOS): enable undo/redo in webchat composer text input (#34962) · openclaw/openclaw@00951dc Tests: speed up channel setup promotion · openclaw/openclaw@82b529a Docs: refresh agent instructions · openclaw/openclaw@5775fe2 fix(auth): serialize OAuth refresh across agents to fix #26322 (#67876) · openclaw/openclaw@8e79080 test: allow ollama public surface boundary test · openclaw/openclaw@7d4f1a6 Docs: add test performance guardrails · openclaw/openclaw@89706d3 Tests: restore context-engine usage proof · openclaw/openclaw@e4c4f95 Tests: slim context engine runtime coverage · openclaw/openclaw@74c198f ci: retry failed custom checkouts · openclaw/openclaw@0ee5baf test: trim duplicate provider auth onboarding cases · openclaw/openclaw@1ffc02e matrix: fix sessions_spawn --thread subagent session spawning (#67643) · openclaw/openclaw@1ce2596 test: reduce auth choice fixture churn · openclaw/openclaw@857b9cd test: mock health status config boundaries · openclaw/openclaw@9d5ab4a test: mock onboard config io boundary · openclaw/openclaw@299694d test: mock legacy state plugin boundaries · openclaw/openclaw@2713089 test: mock channel install boundaries · openclaw/openclaw@b945248 test: mock doctor preview channel boundaries · openclaw/openclaw@b1a3ad4
docs(concepts): batch readability and Mintlify component ...
vincentkoc · 2026-04-27 · via Recent Commits to openclaw:main

@@ -7,18 +7,18 @@ read_when:

77

---

8899

OpenClaw 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

1111

hidden state.

12121313

## How it works

14141515

Your 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.

23232424

These files live in the agent workspace (default `~/.openclaw/workspace`).

@@ -32,9 +32,9 @@ prefer TypeScript." It will write it to the appropriate file.

32323333

The 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.

38383939

Both 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

62626363

When 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

6666

an API key for any supported provider.

6767

@@ -104,7 +104,7 @@ dashboards, bridge mode, and Obsidian-friendly workflows.

104104105105

Before [compaction](/concepts/compaction) summarizes your conversation, OpenClaw

106106

runs 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>

110110

The 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