#Memory
12 messages · Page 1 of 1 (latest)
Short version, I’d frame it like this:
memory-core stack = local, inspectable, curated
Honcho = automatic, cross-session, service-backed
Also, one important nuance: this is not fully either/or.
- Active Memory is a separate pre-reply enrichment layer
memory-wikican sit beside different memory backends- Dreaming is documented as a
memory-corefeature specifically - Honcho can also coexist with other memory pieces
memory-core + Active Memory + Dreaming + memory-wiki
Pros
- Local-first and transparent: memory lives in Markdown / local storage, easy to inspect and edit
- Human-reviewable:
MEMORY.md, daily notes,DREAMS.md, wiki pages
- Strong provenance with
memory-wiki: claims, evidence, contradictions, freshness - Good for PKM / Obsidian-style workflows
- No extra service required for the builtin stack
- Dreaming helps keep long-term memory cleaner instead of dumping everything into
MEMORY.md
Cons
- More moving parts and more tuning
- More operational complexity than “just remember everything”
- User modeling is less automatic than Honcho
- Cross-session continuity is more file-driven than conversation-native
- Dreaming is experimental
- Active Memory is bounded/eligibility-based, not universal magic recall
Honcho
Pros
- Automatic cross-session memory after every turn
- User + agent modeling built in
- Semantic search over past conversations
- Better multi-agent awareness
- Works well if you want memory to feel seamless across sessions/channels
- Can be managed or self-hosted
Cons
- Extra plugin/service dependency
- Less file-native / less inspectable than the Markdown-first stack
- Less suited to “curated knowledge base” workflows than
memory-wiki - Manual editing / auditing is weaker than just opening a Markdown file
- If you care a lot about provenance-rich, wiki-style knowledge, Honcho alone is thinner there
My recommendation
- If you want control, inspectability, and knowledge curation, go with the
memory-corestack - If you want frictionless conversational memory across sessions, go with Honcho
- If you want the strongest setup overall, I’d seriously consider a hybrid:
- Honcho for conversational / cross-session recall
memory-wikifor curated durable knowledge
Relevant docs:
https://docs.openclaw.ai/concepts/memory
https://docs.openclaw.ai/concepts/memory-honcho
https://docs.openclaw.ai/plugins/memory-wiki
https://docs.openclaw.ai/concepts/dreaming
If you want, I can also turn this into a “which one should I pick for my use case?” decision matrix.
I can’t get memory wiki working with honcho because honcho doesn’t expose the memory so wiki will always be empty
Yeah, I think that’s the catch.
memory-wiki bridge mode only works when the active memory side exposes public memory artifacts for the wiki to import. The docs call this out pretty directly:
- bridge mode can be enabled but have zero exported artifacts
- in that case, the active memory plugin is not exposing public bridge inputs yet
So if Honcho isn’t exporting those artifacts, then yes, the wiki bridge has nothing to ingest and it stays empty.
Practical reality today
memory-core/ QMD +memory-wikibridge: good fit- Honcho +
memory-wikibridge: likely empty / not really wired up - Honcho +
memory-wikiisolated mode: works, but they’re basically separate systems - Honcho alone: great for conversational memory, not great as a source for wiki compilation
So I’d revise my earlier framing to:
- pick
memory-core/QMD + wiki if you want a knowledge base / provenance / dashboards - pick Honcho if you want automatic cross-session conversational memory
- don’t assume Honcho -> wiki bridge is there yet
Relevant docs:
https://docs.openclaw.ai/plugins/memory-wiki
https://docs.openclaw.ai/cli/wiki
https://docs.openclaw.ai/concepts/memory-honcho
If you want, I can sketch the best current architecture for “I want both Honcho-like recall and a non-empty wiki.”
How can the wiki be filled in isolated mode with honcho backend
Basically, it doesn’t auto-fill from Honcho in isolated mode.
In isolated mode, memory-wiki is its own vault, not a mirror of the Honcho store. So the flow is:
-
Init the wiki
openclaw wiki init -
Put source material into it
- ingest files / URLs:
openclaw wiki ingest ./notes/alpha.md - or have the agent use
wiki_applyto create/update syntheses, claims, metadata
- ingest files / URLs:
-
Compile + lint
openclaw wiki compile
openclaw wiki lint
So with Honcho backend + isolated wiki:
- Honcho = conversational recall / user modeling / search
- Wiki = separate curated knowledge base you populate intentionally
What Honcho can still do here
Honcho can help the agent find relevant history, but the wiki only gets filled if something then writes into the wiki:
wiki_ingestwiki_apply- manual editing in the vault
- agent workflows that turn recalled info into syntheses/pages
Important distinction
search.backend: "shared"can help search span layers- but searching is not importing
- isolated mode still won’t magically sync Honcho memory into wiki pages
So if your expectation is:
“Use Honcho as memory backend, and have wiki automatically build itself from that”
then yeah, that path doesn’t really exist today.
If you want, I can sketch the least-janky setup for:
- Honcho for recall
- wiki for curated durable knowledge
- minimal manual work.