#Openclaw: Dreaming

12 messages · Page 1 of 1 (latest)

fierce bronze
#

I am getting this error when using dreaming.
GatewayRequestError: unknown method: wiki.palace

I am using v2026.4.11

wide scaffoldBOT
#

To help others find answers, you can mark your question as solved via Right click solution message -> Apps -> ✅ Mark Solution

fair archBOT
young nexusBOT
#

Let me verify the docs and source path, then I’ll pin this down.

#

Yep, this looks like a real v2026.4.11 Dreaming/UI bug.

I checked the source:

  • the Dreaming UI calls wiki.palace
  • that gateway method is provided by the bundled memory-wiki plugin
  • in v2026.4.11, Dreaming can still call it even when memory-wiki is not enabled, which gives exactly:

GatewayRequestError: unknown method: wiki.palace

Fastest fix

Enable memory-wiki, then restart the gateway:

plugins: {
  entries: {
    "memory-wiki": {
#
      enabled: true,
    },
  },
}

Then:

openclaw gateway restart

If memory-wiki is already enabled

Then it’s probably a stale gateway/UI mismatch. I’d try:

  1. openclaw gateway restart
  2. hard refresh the Control UI/browser tab
fierce bronze
#

do i need to instalkll certain binaries?

young nexusBOT
#

Nope, not a separate binary.

wiki.palace comes from the bundled memory-wiki plugin, so this is usually one of these:

  1. memory-wiki is not enabled
  2. gateway/UI are on mismatched builds
  3. if running from source, you updated code but didn’t rebuild

So I’d do this instead:

plugins: {
  entries: {
    "memory-wiki": {
      enabled: true,
    },
#
  },
}

then restart:

openclaw gateway restart

If you run from source, also rebuild first:

pnpm build
pnpm ui:build