Using Obsidian with openclaw-mem (optional)¶
Obsidian is a local-first knowledge base that works on top of a folder of Markdown files (a “vault”).
This pairs extremely well with openclaw-mem, because openclaw-mem is designed to generate:
- durable, auditable memory artifacts (SQLite + exports)
- daily notes and summaries (optional)
- progressive recall outputs you can trace back to source
Think of it as:
openclaw-mem= memory layer + retrieval + automation primitives- Obsidian = human-facing cockpit (reading, linking, graph view, manual curation)
What you get (why bother)¶
1) A “second brain” UI for your agent’s memory¶
- Browse exported memories as normal notes.
- Cross-link them into projects/themes.
- Use Obsidian search + graph view to see what your agent has been doing over time.
2) A safe, local-first workflow¶
- Everything is files on disk.
- Easy backup (git/rsync), easy migration.
- You can start read-only and gradually allow writes.
3) Better collaboration between you and the agent¶
- You curate the “source-of-truth” notes.
- The agent can ingest/cite from those notes (via
openclaw-mem ingest+search/timeline/get).
Recommended adoption approach (roadmap)¶
Phase 0 — Read-only vault (1 day)¶
Goal: get value without risk.
- Create a vault folder, e.g.:
~/Obsidian/OpenClawVault(macOS/Linux)- Add an
OpenClaw/subfolder inside the vault. - Export a small slice of observations into the vault:
uv run openclaw-mem export \
--to ~/Obsidian/OpenClawVault/OpenClaw/observations.md \
--limit 200 --yes --json
- Open the vault in Obsidian and verify you can search/read the export.
Safety note: In this phase, the agent never writes to the vault.
Phase 1 — Daily notes + weekly consolidation (2–7 days)¶
Goal: a stable “memory timeline”.
- Keep
~/.openclaw/memory/(daily notes + MEMORY.md) under version control or backed up. - Optionally symlink
~/.openclaw/memoryinto your vault asOpenClaw/memory/.
If you use AI compression (openclaw-mem summarize), treat:
- daily notes (memory/YYYY-MM-DD.md) as raw logs
- MEMORY.md as curated compressed context
Phase 2 — Structured notes (Hub & Spoke) (1–2 weeks)¶
Goal: make the knowledge base “alive”, not a dump.
- Create a few hub notes (MOCs):
OpenClaw/Hub.mdProjects/<project>.mdPeople/<name>.md- As you read exports, link the parts that matter.
Phase 3 — Controlled writes from the agent (optional)¶
Goal: automation without losing trust.
- Give the agent a dedicated folder like
OpenClaw/Inbox/. - Only allow append-only writes initially.
- Use deterministic triage + approval prompts for risky actions.
Minimal closed-loop (v0): approve → import¶
A practical way to turn Obsidian into a real learning loop (instead of just a viewer) is:
- Agent writes proposals into
OpenClaw/Inbox/. - Human approves by adding bullet items into
OpenClaw/Approved/approved_memories.md. - Importer persists approved items into
openclaw-memusingopenclaw-mem store.
Reference importer script:
- scripts/obsidian_approved_import.py
Practical integration patterns¶
Pattern A: Obsidian as viewer; openclaw-mem as runtime store (recommended)¶
- Keep SQLite as the runtime store.
- Periodically export snapshots into the vault for human review.
Pattern B: Vault as source-of-truth; openclaw-mem indexes it¶
- Treat the vault as canonical notes.
- Periodically ingest vault exports (or selected folders) into
openclaw-mem.
This is powerful, but you must be careful about: - accidental ingestion of private/secrets - duplicated or conflicting notes
What you need to start¶
- Obsidian installed
- A chosen vault folder location
- A backup plan (git, rsync, cloud drive)
- A clear policy on what the agent is allowed to write
Optional: use obsidian-skills for cleaner agent-written notes¶
Repo: https://github.com/kepano/obsidian-skills
obsidian-skills is a set of Agent Skills (spec: agentskills.io) that teaches an agent how to write:
- Obsidian Flavored Markdown (
.md) — wikilinks, callouts, properties/frontmatter, embeds - Obsidian Bases (
.base) — YAML schema for views/filters/formulas - JSON Canvas (
.canvas) — the canvas JSON spec (and common pitfalls like proper\nnewlines)
Why it helps us:
- If you use Claude Code or Codex CLI to edit your vault, these skills reduce formatting mistakes.
- If we later add a openclaw-mem export-obsidian helper, we can align exports with Obsidian-friendly conventions.
Install (Claude Code)¶
Copy the repo contents into a /.claude folder inside your vault root.
Install (Codex CLI)¶
Copy skills/ into your Codex skills path (typically ~/.codex/skills).
Operational note:
- These skills are “syntax + file-format guardrails” — they don’t change what openclaw-mem stores.
- Keep your automation policy the same: start read-only, then allow controlled writes (Inbox/Approved pattern).
Suggested next step¶
If you want, we can add a tiny helper command to openclaw-mem later:
- openclaw-mem export-obsidian --vault <path>
…but it’s intentionally not required to get value.