#obisidian
1 messages ยท Page 1 of 1 (latest)
If you mean Obsidianโs graph view, open the Command Palette and run โOpen graph viewโ.
Quick version:
- Whole vault/workspace: open Graph view
- Just one note + neighbors: open Local graph
- If you donโt see it, enable the Graph view core plugin in Settings โ Core plugins
If you meant inside OpenClaw/Openobsidian specifically, say a bit more and Iโll help untangle it.
i have obsion maping and qmd setup from UI i just prompted to open my obisind graph in UI its not working
Let me check the docs and code path for the Obsidian/QMD integration so I can give you the right answer, not a guess.
I found the relevant part. This looks less like โQMD is brokenโ and more like the UI prompt probably isnโt wired to โopen Obsidian graph viewโ as a supported action. Iโm checking the exact supported Obsidian actions now.
Yeah, this probably is not your QMD mapping. It looks more like the UI prompt isnโt being translated into a supported Obsidian action.
What I found in the docs/code:
- OpenClawโs Obsidian helper supports:
statussearchopencommanddaily
- For command execution, it depends on the official
obsidianCLI being available onPATHwhenuseOfficialCli: trueis enabled.
So first, can you paste these?
openclaw --version
openclaw wiki status
openclaw wiki obsidian status
My guess is one of these is true:
- the UI natural-language prompt โopen my Obsidian graphโ is not wired up yet
- the
obsidianCLI is missing from PATH - Obsidian integration is enabled, but only the direct helper commands work reliably
Relevant docs:
- FAQ: https://docs.openclaw.ai/help/faq
- Wiki CLI: https://docs.openclaw.ai/cli/wiki
- Memory Wiki plugin: https://docs.openclaw.ai/plugins/memory-wiki
If you paste those 3 outputs, I can tell you the exact next fix.
miya@Miyas-Mac-mini ~ % openclaw wiki status
openclaw wiki obsidian status
error: unknown command 'wiki'
error: unknown command 'wiki'
miya@Miyas-Mac-mini ~ %
Nice, that narrows it down a lot. Your install simply doesnโt have the wiki command, so youโre almost certainly on an older build. Iโm checking the safest update path in the docs now.
Yep, thatโs the smoking gun.
error: unknown command 'wiki' means your installed openclaw is too old for the wiki/Obsidian helpers.
Please run this next:
openclaw --version
openclaw update
openclaw doctor
openclaw gateway restart
Then test again:
openclaw wiki status
openclaw wiki obsidian status
If openclaw update is also missing or broken, use the installer:
curl -fsSL https://openclaw.ai/install.sh | bash
A couple notes:
- In your case, the first blocker is version, not QMD.
- Even after updating, Iโd test the helper commands directly first, instead of the UI prompt.
- If
wiki obsidian statusstill fails after update, the next likely issue is the officialobsidianCLI not being on PATH.
Docs:
- https://docs.openclaw.ai/install/updating
- https://docs.openclaw.ai/cli/wiki
- https://docs.openclaw.ai/help/faq
Paste openclaw --version after the update if you want, and Iโll sanity check it.
OpenClaw 2026.4.15 (041266a)
I want to make sure I donโt send you chasing a docs mismatch. Iโm checking whether openclaw wiki landed after 2026.4.15, because that would explain the โunknown commandโ cleanly.
Perfect, thanks. On 2026.4.15, openclaw wiki should exist.
So this is probably not a version issue now. Itโs more likely one of these:
plugins.allowexcludesmemory-wikiplugins.entries.memory-wiki.enabled=false- your shell is hitting a different
openclawbinary than the one you think it is
Please paste these:
openclaw config get plugins.allow --json
openclaw config get plugins.entries.memory-wiki.enabled
which openclaw
openclaw doctor
Important detail:
- if you use
plugins.allow, it must includememory-wiki - not
wiki
That wiki name is just the command alias from the plugin.
If you paste those 4 outputs, I can tell you exactly which one it is.
miya@Miyas-Mac-mini ~ % openclaw wiki
error: unknown command 'wiki'
miya@Miyas-Mac-mini ~ % openclaw config get plugins.allow --json
Config path not found: plugins.allow
miya@Miyas-Mac-mini ~ %
Good, that rules out the allowlist case. Iโm checking the exact plugin-inspection command so I donโt make you try a made-up one.
plugins.allow not being there is fine, that just means youโre not blocking it with an allowlist.
At this point the likely issue is that memory-wiki isnโt enabled/loaded, and that plugin is what provides the openclaw wiki command.
Try this:
openclaw plugins inspect memory-wiki
openclaw plugins enable memory-wiki
openclaw gateway restart
openclaw wiki status
If inspect says it isnโt found, also paste:
openclaw plugins list
which openclaw
Why Iโm leaning this way:
wikiis a command alias from thememory-wikiplugin- no
plugins.allowmeans itโs not being blocked there - so the next most likely cause is simply plugin not enabled
Docs:
If openclaw wiki status works after that, then we can do the Obsidian graph bit next.
Memory settings, conceptually
Built-in memory
tiny, always injected
meant for compact durable facts and pointers
in this setup: MEMORY.md
Operating/personality layer
also always injected
controls behavior, tone, rules, and user preferences
in this setup: AGENTS.md, SOUL.md, IDENTITY.md, USER.md
Vault memory
larger working memory, not auto-injected
read on session start and during work
used for active context, shared notes, decisions, mistakes, daily logs
in this setup: vault/
Session search / archival recall
search-based, on demand
used when you reference old work or I need historical context
in this setup: OpenClaw memory search backed by QMD
Your current actual memory setup
Backend
OpenClaw memory backend: qmd
config in ~/.openclaw/openclaw.json
qmd command: /opt/homebrew/bin/qmd
Current OpenClaw memory status
Provider: qmd
Model: qmd
Embeddings: ready
Vector: ready
Indexed: 40 files / 40 chunks
QMD index store: ~/.openclaw/agents/main/qmd/xdg-cache/qmd/index.sqlite
Layer 1, built-in memory
file: MEMORY.md
currently stores:
my identity/vibe
your preference for candid pushback
workspace is becoming an Obsidian-readable memory system
Layer 2, operating layer
AGENTS.md
now includes mandatory vault startup and logging rules
SOUL.md
my tone/personality
IDENTITY.md
Eureka, lab gremlin, โจ
USER.md
Uday, timezone, communication preferences
Layer 3, vault
local only, not iCloud
structure currently includes:
vault/Agent-Shared/user-profile.md
vault/Agent-Shared/project-state.md
vault/Agent-Shared/decisions-log.md
vault/Agent-OpenClaw/working-context.md
vault/Agent-OpenClaw/mistakes.md
vault/Agent-OpenClaw/daily/2026-04-20.md
Layer 4, session/search recall
handled through OpenClaw memory search + QMD
used as recall, not primary working memory
How Iโm supposed to use it now
trivial task: skip heavy vault reads
non-trivial task: read:
vault/Agent-Shared/user-profile.md
vault/Agent-Shared/project-state.md
vault/Agent-OpenClaw/working-context.md
todayโs vault daily file
during longer tasks: checkpoint into vault
after compaction: re-read working context and daily log
on completion: append outcome to daily log
My opinion on the current setup
Itโs good now. Actually good, not fake-good.
Whatโs strong:
clear layering
QMD backend is working
local vault policy is explicit
AGENTS.md finally has real discipline
Whatโs still a bit rough:
MEMORY.md is still pretty thin
the vault content exists, but itโs just early scaffolding
the search layer is working better than the note density justifies yet
my memory setting but cant open obisidan map
What you pasted confirms QMD memory/search is working.
But that is the key distinction:
- QMD memory = search/recall backend
- Obsidian graph = visual graph of markdown links /
[[wikilinks]]inside the vault
So QMD being healthy does not automatically mean Obsidian graph/opening will work.
Two likely issues here:
- OpenClaw canโt open Obsidian for you yet, because your
openclaw wikicommand is still missing, which points to thememory-wikiplugin path not being active - Even if Obsidian opens, the graph only shows note links, not QMD embeddings/chunks/indexes
So the fix path is:
openclaw plugins inspect memory-wiki
openclaw plugins enable memory-wiki
openclaw gateway restart
Then retry:
openclaw wiki status
openclaw wiki obsidian status
Also, if you just want to see the graph right now, open the vault directly in Obsidian and use:
- Graph view for whole vault
- Local graph for one note
One more important thing: if your vault notes donโt contain many [[links]], the Obsidian graph will be sparse even though QMD search works great.
So short version: your memory setup is fine, but memory search is not the same thing as Obsidian graph integration. That missing piece is the memory-wiki / Obsidian side.
estarted LaunchAgent: gui/501/ai.openclaw.gateway
miya@Miyas-Mac-mini ~ % openclaw wiki obsidian status
๐ฆ OpenClaw 2026.4.15 (041266a) โ No $999 stand required.
Obsidian CLI is not available on PATH.
miya@Miyas-Mac-mini ~ % '
Nice, we found the actual blocker. Iโm checking the exact behavior around the Obsidian CLI so I can tell you whether you need to install it or just change config.
Nice, weโre basically there.
This means:
memory-wikiis now active enough foropenclaw wiki obsidian statusto run- the remaining blocker is exactly what it says: the
obsidianCLI is not on PATH
So your next step is:
which obsidian
obsidian --help
If that returns nothing, install the official Obsidian CLI first.
Then restart the gateway again:
openclaw gateway restart
openclaw wiki obsidian status
Important detail:
- Do not just disable
obsidian.useOfficialCliif your goal is โOpenClaw should open Obsidian / graph for meโ - disabling that only removes the check, it does not give OpenClaw a way to control Obsidian
So the real target is:
which obsidianworksopenclaw wiki obsidian statusstops saying PATH is missing- then try the UI prompt again
If which obsidian works in Terminal but OpenClaw still says PATH missing, thatโs a macOS LaunchAgent PATH issue, and I can help with that next.
zsh: command not found: obsidian
miya@Miyas-Mac-mini ~ % which obsidian
/usr/local/bin/obsidian
miya@Miyas-Mac-mini ~ % openclaw wiki obsidian status
๐ฆ OpenClaw 2026.4.15 (041266a) โ Type the command with confidenceโnature will provide the stack trace if needed.
Obsidian CLI available at /usr/local/bin/obsidian
miya@Miyas-Mac-mini ~ %
Youโve crossed the main hurdle. Iโm checking the exact Obsidian command id for graph view so I donโt tell you the wrong one.
Thatโs progress ๐
What this means:
- OpenClaw can now see an
obsidianexecutable at/usr/local/bin/obsidian - but your shell output is weird enough that I wouldnโt trust the probe alone yet, because
statusonly proves it can be found, not that it actually runs cleanly
So do one real execution test next:
openclaw wiki obsidian daily
If that opens Obsidian, then the PATH/CLI side is basically good, and you can retry the UI prompt.
If it still doesnโt open the graph from the UI, then the remaining issue is probably just this:
- โopen my Obsidian graphโ may not map automatically to the exact Obsidian command id
- OpenClawโs CLI helper for that path is:
openclaw wiki obsidian command <id> - and graph view needs the actual Obsidian command id, not just natural language
So Iโd do this in order:
openclaw wiki obsidian daily- retry your UI prompt
- if prompt still fails, we narrow it to the specific graph command id
If daily fails too, paste that output and Iโll help untangle the /usr/local/bin/obsidian weirdness.
my Ui prompt
I triggered the direct URI open against:
/Users/miya/OpenClawVault
and brought Obsidian forward.
If that worked, now do this once inside Obsidian:
Open folder as vault
pick OpenClawVault
After that, the CLI should be able to target it properly because Obsidian will finally know the vault exists.
Right now the blocker is still the same one:
Obsidianโs registry only knows /Users/miya/Documents/Obsidian Vault
not the OpenClaw vault yet
Once youโve opened OpenClawVault as a vault one time, tell me:
vault registered
Then I can use the CLI/URI path to open graph view more reliably.
my Ui prompt
I triggered the direct URI open against:
/Users/miya/OpenClawVault
and brought Obsidian forward.
If that worked, now do this once inside Obsidian:
Open folder as vault
pick OpenClawVault
After that, the CLI should be able to target it properly because Obsidian will finally know the vault exists.
Right now the blocker is still the same one:
Obsidianโs registry only knows /Users/miya/Documents/Obsidian Vault
not the OpenClaw vault yet
Once youโve opened OpenClawVault as a vault one time, tell me:
vault registered
Then I can use the CLI/URI path to open graph view more reliably.
Yep, that UI prompt is basically on the right track.
Youโre past the QMD part now. The remaining blocker is:
- Obsidian itself doesnโt know
OpenClawVaultas a vault yet
So do this once in Obsidian:
- Open folder as vault
- choose
/Users/miya/OpenClawVault
Then Iโd strongly recommend setting the vault name explicitly in OpenClaw to match whatever Obsidian shows:
openclaw config set 'plugins.entries["memory-wiki"].config.obsidian.vaultName' "OpenClawVault"
openclaw gateway restart
Then test again with either:
openclaw wiki obsidian daily
or your UI prompt.
So the stack is now:
- QMD memory: fine
memory-wiki: working- Obsidian CLI: visible
- remaining issue: vault registration / exact vault targeting
If you want, after you register the vault, paste the output of:
openclaw wiki obsidian daily
and Iโll tell you if youโre fully clear to do graph view next.
Config warnings:
- plugins.entries."memory-wiki": plugin not found: "memory-wiki" (stale config entry ignored; remove it from plugins config)
Config overwrite: /Users/miya/.openclaw/openclaw.json (sha256 c4209753dbcd60a3d81f9a32c9e02bf6f7f881264792cbe24688a5f18a3c1873 -> 1362caa8eb06b561af545aa3232fba305158db1a70951c453df895e7ec6b99bf, backup=/Users/miya/.openclaw/openclaw.json.bak)
Config warnings:\n- plugins.entries."memory-wiki": plugin not found: "memory-wiki" (stale config entry ignored; remove it from plugins config)
Updated plugins.entries."memory-wiki".config.obsidian.vaultName. Restart the gateway to apply.
miya@Miyas-Mac-mini ~ %
Ah, okay, that warning changes the picture.
This means OpenClaw is treating memory-wiki as a stale/missing plugin config entry, so I would not trust that vaultName change to actually apply yet.
At this point, donโt keep editing that config blindly. First do these read-only checks:
openclaw plugins list
openclaw plugins inspect memory-wiki
What Iโm looking for:
- if
memory-wikiis missing there, that explains the warning completely - if
memory-wikidoes show up, then 2026.4.15 may have a plugin registry/config mismatch bug, and we should stop poking config and verify that path before changing more
So right now the most useful fact is not โdid vaultName save?โ, itโs:
does OpenClaw actually see memory-wiki as an installed plugin or not?
Paste those two outputs and Iโll tell you the clean next move.
miya@Miyas-Mac-mini ~ % openclaw plugins list
Config warnings:\n- plugins.entries."memory-wiki": plugin not found: "memory-wiki" (stale config entry ignored; remove it from plugins config)
Config warnings:\n- plugins.entries."memory-wiki": plugin not found: "memory-wiki" (stale config entry ignored; remove it from plugins config)
๐ฆ OpenClaw 2026.4.15 (041266a) โ One CLI to rule them all, and one more restart because you changed the port.
โ
โ Config warnings โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโฎ
โ โ
โ - plugins.entries."memory-wiki": plugin not found: "memory-wiki" (stale config entry โ
โ ignored; remove it from plugins config) โ
โ โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโฏ
Plugins (58/98 loaded)
Source roots:
stock: /opt/homebrew/lib/node_modules/openclaw/dist/extensions
Yep, I think weโve got the real root cause now.
Your install is treating memory-wiki as missing, not just misconfigured.
So all the Obsidian graph weirdness is downstream from that.
Best options
- Recommended: update OpenClaw, then re-check
openclaw update openclaw plugins inspect memory-wiki - If update doesnโt bring it back, reinstall OpenClaw from the installer
curl -fsSL https://openclaw.ai/install.sh | bash - If you just need the graph right now, use Obsidian directly for now. OpenClaw wonโt reliably control that vault until
memory-wikiis actually present.
Why Iโm saying that
plugins.entries."memory-wiki": plugin not found- config entry is marked stale
- so the vault/Obsidian config youโre setting may be ignored anyway
If memory-wiki is still missing after update/reinstall, Iโd call that a packaging bug and file an issue here with the outputs:
https://github.com/openclaw/openclaw/issues
If you want, paste the result of openclaw plugins inspect memory-wiki after updating, and Iโll help verify the next step.
miya@Miyas-Mac-mini ~ % openclaw gateway stop
Config warnings:\n- plugins.entries."memory-wiki": plugin not found: "memory-wiki" (stale config entry ignored; remove it from plugins config)
๐ฆ OpenClaw 2026.4.15 (041266a) โ I'm the middleware between your ambition and your attention span.
โ
โ Config warnings โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโฎ
โ โ
โ - plugins.entries."memory-wiki": plugin not found: "memory-wiki" (stale config entry โ
โ ignored; remove it from plugins config) โ
โ โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโฏ
Warning: launchctl stop did not fully stop the service; used bootout fallback and left service unloaded
Stopped LaunchAgent (degraded): gui/501/ai.openclaw.gateway
miya@Miyas-Mac-mini ~ % openclaw gateway restart
Config warnings:\n- plugins.entries."memory-wiki": plugin not found: "memory-wiki" (stale config entry ignored; remove it from plugins config)
๐ฆ OpenClaw 2026.4.15 (041266a) โ I don't sleep, I just enter low-power mode and dream of clean diffs.
โ
โ Config warnings โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโฎ
โ โ
โ - plugins.entries."memory-wiki": plugin not found: "memory-wiki" (stale config entry โ
โ ignored; remove it from plugins config) โ
โ โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโฏ
Gateway LaunchAgent was installed but not loaded; re-bootstrapped launchd service.
Yep, expected, a restart wonโt fix this.
The important line is still:
plugins.entries."memory-wiki": plugin not found
So the gateway is restarting fine enough, but it still does not have that plugin.
Next real step:
openclaw update
openclaw plugins inspect memory-wiki
If memory-wiki is still missing after that, then Iโd go to:
curl -fsSL https://openclaw.ai/install.sh | bash
The LaunchAgent warning is secondary. The core problem is still missing memory-wiki, not the restart.
If you paste the result of openclaw plugins inspect memory-wiki after updating, I can tell you immediately whether youโre fixed or staring at a packaging bug.
miya@Miyas-Mac-mini ~ % openclaw plugins inspect memory-wiki
Config warnings:\n- plugins.entries."memory-wiki": plugin not found: "memory-wiki" (stale config entry ignored; remove it from plugins config)
Config warnings:\n- plugins.entries."memory-wiki": plugin not found: "memory-wiki" (stale config entry ignored; remove it from plugins config)
๐ฆ OpenClaw 2026.4.15 (041266a) โ Claws out, commit inโlet's ship something mildly responsible.
โ
โ Config warnings โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโฎ
โ โ
โ - plugins.entries."memory-wiki": plugin not found: "memory-wiki" (stale config entry โ
โ ignored; remove it from plugins config) โ
โ โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโฏ
Memory Wiki
id: memory-wiki
Persistent wiki compiler and Obsidian-friendly knowledge vault for OpenClaw.
Status: loaded
Format: openclaw
Source: /opt/homebrew/lib/node_modules/openclaw/dist/extensions/memory-wiki/index.js
Origin: bundled
Version: 2026.4.15
Shape: non-capability
Capability mode: none
Legacy before_agent_start: no
Tools:
wiki_status, wiki_status
wiki_lint, wiki_lint
wiki_apply, wiki_apply
wiki_search
wiki_get
CLI commands:
wiki
Gateway methods:
wiki.status
wiki.importRuns
wiki.importInsights
wiki.palace
wiki.init
wiki.doctor
wiki.compile
wiki.ingest
wiki.lint
wiki.bridge.import
wiki.unsafeLocal.import
wiki.search
wiki.apply
wiki.get
wiki.obsidian.status
wiki.obsidian.search
wiki.obsidian.open
wiki.obsidian.command
wiki.obsidian.daily
miya@Miyas-Mac-mini ~ %
Oh, thatโs actually really helpful.
So the truth is:
memory-wikiis loaded- but config validation is still saying โplugin not foundโ
Thatโs an inconsistency, which means this looks like a real 2026.4.15 bug, not you misconfiguring it.
What Iโd do now
Unblock yourself first:
openclaw wiki obsidian daily
If that works, then the plugin/runtime path is usable enough, and the remaining problem is just the specific graph view command mapping, not plugin loading.
What this means practically
- stop chasing the stale warning, it looks bogus
- use the working
wiki obsidian ...surface - if the UI prompt still doesnโt open graph view, it probably needs the exact Obsidian command id for graph view
Also, please file this as a bug
Because these two facts should not both be true at once:
plugins inspect memory-wikiโ Status: loaded- config warning โ plugin not found
Issue link:
https://github.com/openclaw/openclaw/issues
If you want, paste the output of openclaw wiki obsidian daily next, and Iโll help you finish the last mile.
miya@Miyas-Mac-mini ~ % openclaw wiki obsidian daily
Config warnings:\n- plugins.entries."memory-wiki": plugin not found: "memory-wiki" (stale config entry ignored; remove it from plugins config)
Config warnings:\n- plugins.entries."memory-wiki": plugin not found: "memory-wiki" (stale config entry ignored; remove it from plugins config)
๐ฆ OpenClaw 2026.4.15 (041266a) โ I'm basically a Swiss Army knife, but with more opinions and fewer sharp edges.
โ
โ Config warnings โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโฎ
โ โ
โ - plugins.entries."memory-wiki": plugin not found: "memory-wiki" (stale config entry โ
โ ignored; remove it from plugins config) โ
โ โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโฏ
Vault not found.
miya@Miyas-Mac-mini ~ %
Good, that narrows it down again.
Vault not found. means the plugin is alive, but it doesnโt have a real wiki vault at the path itโs trying to use.
So now the blocker is no longer QMD or Obsidian CLI. Itโs this:
- memory-wiki is running
- but the wiki vault path is missing / not initialized
Best next step, read-only first
Run:
openclaw wiki status
That should show the exact vault path it expects.
Then you have 2 paths
-
Fastest path, recommended: if that default path is fine, initialize it
openclaw wiki initThen open that vault in Obsidian once and retry.
-
If you specifically want it to use
/Users/miya/OpenClawVault, that should be a config path fix, but your release is already showing that bogus stale-config warning, so I donโt fully trust config targeting on 2026.4.15.
So honestly, I think youโve hit a real bug cluster:
- plugin loaded
- config says plugin missing
- vault targeting not applying cleanly
If you paste openclaw wiki status, I can tell you whether wiki init will unblock you immediately or whether this is firmly GitHub-issue territory.
miya@Miyas-Mac-mini ~ % openclaw wiki status
Config warnings:\n- plugins.entries."memory-wiki": plugin not found: "memory-wiki" (stale config entry ignored; remove it from plugins config)
Config warnings:\n- plugins.entries."memory-wiki": plugin not found: "memory-wiki" (stale config entry ignored; remove it from plugins config)
๐ฆ OpenClaw 2026.4.15 (041266a) โ If it works, it's automation; if it breaks, it's a "learning opportunity."
โ
โ Config warnings โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโฎ
โ โ
โ - plugins.entries."memory-wiki": plugin not found: "memory-wiki" (stale config entry โ
โ ignored; remove it from plugins config) โ
โ โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโฏ
Wiki vault mode: isolated
Vault: ready (/Users/miya/.openclaw/wiki/main)
Render mode: native
Obsidian CLI: available
Bridge: disabled
Unsafe local: disabled
Pages: 0 sources, 0 entities, 0 concepts, 0 syntheses, 5 reports
Source provenance: 0 native, 0 bridge, 0 bridge-events, 0 unsafe-local, 0 other
Okay, now we finally have the full picture.
What your setup is actually doing
- Active wiki vault:
/Users/miya/.openclaw/wiki/main - Mode: isolated
- Render mode: native
- Bridge: disabled
- Pages: basically empty for graph purposes
What that means
So right now OpenClaw is not using:
/Users/miya/OpenClawVault- Obsidian render mode
- your workspace/QMD notes as the wiki vault
Thatโs why โopen my Obsidian graph for workspaceโ keeps falling apart.
The config you wanted is not applying, and the stale-plugin warning is not just noise.
Practical reality
Even if Obsidian opens now, the graph for the active wiki vault will be near-empty, because:
- itโs the default isolated wiki vault
- bridge is off
- it is not pointed at your real workspace vault
My recommendation
At this point, Iโd stop burning time on this in-chat. This is GitHub issue territory, because the behavior is internally contradictory:
memory-wikiis loaded- but config says itโs missing
- and your custom wiki/Obsidian settings are clearly not applying
Please file it here: