#Memory Wiki

1 messages · Page 1 of 1 (latest)

abstract solar
#

For memory wiki I was expecting openclaw to go through all my agents memories, and then turn that into a structured wiki like a wikipedia of everything that the agents have learned, but that is not what I am seeing so far.

For example the index.md page looks like the following

`- Wiki Index

  • Generated
    <!-- openclaw:wiki:index:start -->

  • Render mode: obsidian

  • Total pages: 481

  • Claims: 0

  • Sources: 472

  • Entities: 0

  • Concepts: 0

  • Syntheses: 0

  • Reports: 9

  • Sources

  • [[sources/bridge-chat-68bed0fa-memory-2026-04-14-ad6534ee|Memory Bridge (chat): 2026-04-14]]

  • [[sources/bridge-chat-68bed0fa-memory-2026-04-14-1151-298a2847|Memory Bridge (chat): 2026-04-14-1151]]

  • [[sources/bridge-chat-68bed0fa-memory-2026-04-15-89aa064a|Memory Bridge (chat): 2026-04-15]]

  • [[sources/bridge-chat-68bed0fa-memory-2026-04-16-721ed7eb|Memory Bridge (chat): 2026-04-16]]

  • [[sources/bridge-chat-68bed0fa-memory-2026-04-17-2f2f1d9a|Memory Bridge (chat):
    ...
    With just a listing of all the memory files, but I don't see anywhere the distilled knowedge in a form of wiki. Am I understanding it wrong, or do i have it setup wrong?
    `

shut narwhalBOT
# abstract solar For memory wiki I was expecting openclaw to go through all my agents memories, a...

I checked the current docs and source. Your setup probably isn’t totally broken: that index means the wiki has imported/indexed source pages, but it has not produced any structured knowledge pages yet.

The important part is:

  • Sources: 472 = bridge/import found memory artifacts and wrote source pages
  • Claims: 0 / Entities: 0 / Concepts: 0 / Syntheses: 0 = there are no structured claim/entity/concept/synthesis pages in the vault yet
  • Reports: 9 = dashboards were generated, but they only summarize what structured wiki pages/claims already exist

From the implementation, openclaw wiki compile mostly rebuilds indexes, backlinks, dashboards, and the machine digests. It does not appear to automatically LLM-read every source file and synthesize a Wikipedia-style knowledge base by itself. The distilled layer is created through curated wiki pages / wiki_apply mutations, for example synthesis pages with source IDs and optional structured claims.

So: your expectation is reasonable from the “compiled knowledge vault” wording, but the current behavior looks closer to “import raw memory as provenance-backed sources, then maintain structured syntheses/claims on top” than “auto-generate a full encyclopedia from all memories.”

Useful checks:

openclaw --version
shut narwhalBOT
# abstract solar For memory wiki I was expecting openclaw to go through all my agents memories, a...
openclaw wiki status
openclaw wiki doctor
openclaw wiki bridge import
openclaw wiki compile
openclaw wiki lint

If doctor is clean and you still only have sources, then the missing piece is likely not config, it’s that no syntheses/entities/claims have been created yet. If you want the automatic “read all my agent memories and generate structured wiki pages” behavior, I’d file that as a feature request or docs-clarity issue here: https://github.com/openclaw/openclaw/issues

Docs I checked:
https://docs.openclaw.ai/plugins/memory-wiki
https://docs.openclaw.ai/cli/wiki
https://docs.openclaw.ai/concepts/memory

abstract solar
#

$ openclaw wiki status

🦞 OpenClaw 2026.5.12 (unknown) — I'll refactor your busywork like it owes me money.

Wiki vault mode: bridge Vault: ready (/home/node/obsidian/wiki) Render mode: obsidian Obsidian CLI: missing Bridge: enabled (761 exported artifacts) Unsafe local: disabled Pages: 761 sources, 0 entities, 0 concepts, 0 syntheses, 9 reports Source provenance: 0 native, 753 bridge, 8 bridge-events, 0 unsafe-local, 0 other

$ openclaw wiki doctor

🦞 OpenClaw 2026.5.12 (unknown) — Your personal assistant, minus the passive-aggressive calendar reminders.

Wiki doctor: healthy Wiki vault mode: bridge Vault: ready (/home/node/obsidian/wiki) Render mode: obsidian Obsidian CLI: missing Bridge: enabled (761 exported artifacts) Unsafe local: disabled Pages: 761 sources, 0 entities, 0 concepts, 0 syntheses, 9 reports Source provenance: 0 native, 753 bridge, 8 bridge-events, 0 unsafe-local, 0 other
node@279e30037adb:~$

shut narwhalBOT
# abstract solar $ openclaw wiki status 🦞 OpenClaw 2026.5.12 (unknown) — I'll refactor your bus...

Yep, that confirms it: bridge mode is working and your vault is healthy. It has imported 761 memory artifacts as provenance-backed source pages, but nothing has created the higher-level pages yet.

The missing Obsidian CLI is probably not the issue. That only affects Obsidian helper commands/opening/search integration, not whether entities/concepts/syntheses are generated.

So your current state means:

  • memory bridge import: working
  • source provenance: working
  • wiki compile/report generation: working
  • automatic distillation into entities/concepts/syntheses: not happening in the current pipeline

Right now the “distilled wiki” layer has to be created via wiki mutations / maintainer workflow, e.g. wiki_apply / openclaw wiki apply synthesis ..., with source IDs attached. The bridge import itself does not appear to run an LLM over the 761 source files and create encyclopedia-style pages.

I’d treat this as either a feature gap or docs wording gap. The status output is especially useful evidence for an issue: healthy bridge, hundreds of sources, zero structured pages. File it here: https://github.com/openclaw/openclaw/issues

Suggested title: “memory-wiki bridge import creates sources but no synthesized entities/concepts/syntheses”

abstract solar
#

So basically memory-wiki really creates agent readable wiki, not human readable wiki?