#Obisidian

1 messages · Page 1 of 1 (latest)

cold vector
#

I have a new openclaw setup help me setup obisidian memory for my new openclaw agent

vernal robinBOT
#

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

pine craterBOT
sturdy boneBOT
#

Yep, easiest setup is memory-wiki in Obsidian mode.

First, send me:

openclaw --version

Then add this to your openclaw.json:

{
  plugins: {
    entries: {
      "memory-wiki": {
        enabled: true,
#
        config: {
          vaultMode: "isolated",
          vault: {
            path: "~/Obsidian/OpenClaw-Wiki",
            renderMode: "obsidian",
          },
          obsidian: {
            enabled: true,
            useOfficialCli: false, // turn on later if you installed the official obsidian CLI
            vaultName: "OpenClaw Wiki",
            openAfterWrites: false,
          },
          ingest: {
            autoCompile: true,
            maxConcurrentJobs: 1,
#
            allowUrlIngest: true,
          },
          search: {
            backend: "local",
            corpus: "wiki",
          },
          render: {
            preserveHumanBlocks: true,
            createBacklinks: true,
            createDashboards: true,
          },
        },
      },
    },
  },
#
}

Then run:

openclaw gateway restart
openclaw wiki init
openclaw wiki status

Important bit: this does not replace normal OpenClaw memory. Your agent still uses MEMORY.md and daily notes, and memory-wiki gives you an Obsidian-friendly knowledge vault beside that.

If you already use plugins.allow, add "memory-wiki" there too.

Docs:

cold vector
#

claude cli token auth not working ⚠️ Agent failed before reply: All models failed (4): anthropic/claude-haiku-4-5: Provider anthropic has auth issue (skipping all models) (auth) | anthropic/claude-sonnet-4-6: Provider anthropic has auth issue (skipping all models) (auth) | anthropic/claude-opus-4-6: Provider anthropic has auth issue (skipping all models) (auth) | anthropic/claude-opus-4-7: Provider anthropic has auth issue (skipping all models) (auth).

sturdy boneBOT
#

That usually means OpenClaw is trying to use Anthropic for this agent, but it cannot find a usable Anthropic credential on the gateway host.

Also important: new agents do not inherit the main agent’s Anthropic auth.

For a fresh setup, I would not use legacy Anthropic token auth if you can avoid it. Use one of these instead:

If you want to reuse Claude CLI login

Run on the gateway machine:

openclaw --version
claude --version
openclaw models auth login --provider anthropic --method cli --set-default
openclaw models status --probe

If you want direct Anthropic API auth

#

Put your key in ~/.openclaw/.env on the gateway machine:

ANTHROPIC_API_KEY=sk-ant-...

Then run:

openclaw models auth order clear --provider anthropic
openclaw gateway restart
openclaw models status --probe

A couple of gotchas that bite people a lot:

  • Run this on the gateway host, not your laptop, if you are in remote mode.
#

Before flagging it, I’d verify whether this is just per-agent Anthropic auth. New agents do not inherit the main agent’s creds.

From the gateway host, please post:

openclaw --version
openclaw models status --probe

And if they want Claude CLI reuse:

openclaw models auth login --provider anthropic --method cli --set-default

If that still fails after re-auth, the right escalation path is a GitHub issue, not a Discord invite: