You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The default model for memory search is `nomic-embed-text` (300 MB). If you have a GPU with 8GB+ VRAM, upgrade to Qwen3-Embedding-8B for dramatically better search quality — see [Part 10](./part10-state-of-the-art-embeddings.md). If you have 500+ vault files, also add [LightRAG (Part 18)](./part18-lightrag-graph-rag.md) for knowledge graph retrieval that blows away basic vector search.
181
+
The default model for memory search should be `qwen3-embedding:0.6b` (500 MB, 1024 dims) — same Qwen3 family that holds #1 on MTEB, runs on anything, and blows away nomic on quality. Pull it: `ollama pull qwen3-embedding:0.6b`. If you have a GPU with 8GB+ VRAM, upgrade to Qwen3-Embedding-8B for dramatically better search quality — see [Part 10](./part10-state-of-the-art-embeddings.md). If you have 500+ vault files, also add [LightRAG (Part 18)](./part18-lightrag-graph-rag.md) for knowledge graph retrieval that blows away basic vector search.
182
182
183
183
---
184
184
@@ -385,9 +385,9 @@ _Pointers only. Search before answering._
385
385
386
386
Every detailed document → vault/. Leave a one-liner pointer in MEMORY.md or memory/.
387
387
388
-
**Step 5: Set up autoDream consolidation**
388
+
**Step 5: Set up memory consolidation**
389
389
390
-
Session memory files pile up fast — 200+ files in a month. [Part 16](./part16-autodream-memory-consolidation.md) adds automatic consolidation that extracts durable knowledge from session files into organized topic files, and rebuilds MEMORY.md as a clean index. No scripts needed — just instructions in AGENTS.md.
390
+
Session memory files pile up fast — 200+ files in a month. OpenClaw 2026.4+ has built-in dreaming ([Part 22](#part-22-built-in-dreaming)) — enable it in memory-core config and it auto-consolidates on a daily schedule. For older versions, use the custom autoDream approach in [Part 16](./part16-autodream-memory-consolidation.md).
391
391
392
392
### The Golden Rule
393
393
@@ -548,12 +548,12 @@ This writes a `CONTEXT.md` that the coding agent reads automatically — giving
548
548
| Role | What It Does | Best Model(s) | Why |
549
549
|------|-------------|----------------|-----|
550
550
|**Orchestrator**| Plans, judges, coordinates | Claude Opus 4.6 | Best complex reasoning + tool use |
551
-
|**Sub-agents**| Execute delegated tasks |Gemini 3 Flash, Kimi K2.5, MiMo V2 Pro | Fast, cheap, capable enough |
551
+
|**Sub-agents**| Execute delegated tasks | Kimi K2.5, MiMo V2 Pro, Gemini Flash| Fast, cheap, capable enough |
@@ -565,7 +565,7 @@ This writes a `CONTEXT.md` that the coding agent reads automatically — giving
565
565
- 1M context window with prompt caching (up to 90% savings on cached tokens)
566
566
-**Cost:** $5/M input, $25/M output, $0.50/M cached | **Max ($100/mo):** included - best value for heavy use
567
567
568
-
**Claude Sonnet 4.6** - Solid But Not the Best
568
+
**Claude Sonnet 4** - Solid Workhorse
569
569
- 80% of Opus quality at 20% of the cost. Strong at coding.
570
570
-**Note:** Some power users (including the author) have dropped Sonnet entirely in favor of Opus for orchestration + Cerebras/Gemini for sub-agents. The quality gap matters when your agent makes architectural decisions.
571
571
-**Cost:** $3/M input, $15/M output | **Pro ($20/mo):** included
@@ -635,12 +635,12 @@ Your Claude Pro/Max subscription includes API access. OpenClaw can use it direct
Do NOT use cloud embeddings (Gemini, OpenAI, Voyage) as your primary — 2-5 second round-trip latency per search vs <100ms local. Cloud embeddings defeat the entire purpose of fast memory search.
1147
1148
@@ -1187,20 +1188,30 @@ If editing same file 5+ times without progress, STOP and reconsider approach ent
1187
1188
### Multi-Session Projects
1188
1189
One feature at a time. Create progress.txt (done/in-progress/next). Start sessions by reading it.
1189
1190
1190
-
## STEP 9: SET UP AUTODREAM MEMORY CONSOLIDATION (Part 16)
1191
+
## STEP 9: SET UP MEMORY CONSOLIDATION
1191
1192
1192
-
Create the dream state file:
1193
+
**OpenClaw 2026.4+ (recommended):** Enable built-in dreaming in openclaw.json:
1194
+
```json
1195
+
{
1196
+
"plugins": {
1197
+
"entries": {
1198
+
"memory-core": {
1199
+
"config": {
1200
+
"dreaming": {
1201
+
"enabled": true
1202
+
}
1203
+
}
1204
+
}
1205
+
}
1206
+
}
1207
+
}
1208
+
```
1209
+
That's it. Dreaming runs daily at 3am automatically. See Part 22 for full config.
1210
+
1211
+
**Older versions (< 2026.4):** Use the custom autoDream approach from Part 16:
0 commit comments