#memory-wiki, qmd and bridged mode

6 messages · Page 1 of 1 (latest)

vernal tide
#

How does one get this to work? I only get 0 artifacts?

drowsy bearBOT
#

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.md or memory.md
  • memory/**/*.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:

  1. Make sure bridge mode is actually enabled:
#
plugins: {
  entries: {
    "memory-wiki": {
      enabled: true,
      config: {
        vaultMode: "bridge",
        bridge: {
          enabled: true,
          readMemoryArtifacts: true,
        },
      },
    },
  },
}
#
  1. Put at least one actual memory artifact in the workspace, for example:
  • MEMORY.md
  • memory/today.md
  1. 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 ..., or
  • unsafe-local mode

Relevant docs: