#memory-wiki, qmd and bridged mode
6 messages · Page 1 of 1 (latest)
I’m checking the docs/source so I don’t guess here.
Still digging, this looks like a real config/behavior mismatch rather than user error.
Short version, 0 artifacts in bridge mode usually means there is nothing public for memory-wiki to import.
The confusing bit is this: QMD being enabled does not mean all QMD-indexed content becomes wiki bridge artifacts.
Right now, bridge mode imports the active memory plugin's public artifacts, which are basically:
MEMORY.mdormemory.mdmemory/**/*.md(daily notes, dream reports, etc.)- the memory event log
It does not import arbitrary memory.qmd.paths[] content or other QMD collections just because QMD can search them.
So if you only pointed QMD at extra folders, seeing 0 artifacts is expected.
What to try:
- Make sure bridge mode is actually enabled:
plugins: {
entries: {
"memory-wiki": {
enabled: true,
config: {
vaultMode: "bridge",
bridge: {
enabled: true,
readMemoryArtifacts: true,
},
},
},
},
}
- Put at least one actual memory artifact in the workspace, for example:
MEMORY.mdmemory/today.md
- Then run:
openclaw wiki doctor
openclaw wiki status
openclaw wiki bridge import
If what you want is “import my arbitrary QMD notes into the wiki”, use:
openclaw wiki ingest ..., orunsafe-localmode
Relevant docs: