A Claude Code skill that turns your Obsidian vault into a living second brain — autonomous writes, thinking tools, knowledge ingestion, scheduled agents, and _CLAUDE.md for cross-surface context.
# Add to your Claude Code skills
git clone https://github.com/eugeniughelbur/obsidian-second-brainClaude operates your Obsidian vault as a living OS — not a note-taking app. Everything worth remembering gets saved. Every update propagates everywhere it belongs.
This skill uses the mcp-obsidian MCP server. The tool names below (get_file_contents, list_files_in_vault, search, append_content, write_file) are specific to that package. If you are using a different Obsidian MCP server, tool names may differ — check that server's documentation.
If MCP vault tools are unavailable: fall back to reading and writing files directly via the filesystem using standard file tools (Read, Write, Edit, Glob). The vault is plain markdown files — all operations can be done without MCP, just more verbosely. Tell the user:
"The obsidian-vault MCP server isn't connected — I'll read/write vault files directly instead. To enable MCP for faster vault access, run:
claude mcp add obsidian-vault -s user -- npx -y mcp-obsidian \"/path/to/your/vault\""
_CLAUDE.mdBefore doing anything in a vault, check if _CLAUDE.md exists at the vault root:
get_file_contents("_CLAUDE.md")
If it exists: follow its rules exactly — they override the defaults in this skill. Where _CLAUDE.md is silent, fall back to the defaults below.
If it doesn't exist: use the defaults in this skill, then offer to create one.
list_files_in_vault()
Scan the structure to understand: folder names, template locations, naming conventions, frontmatter patterns. Then read 2–3 existing notes with get_file_contents(path) to calibrate writing style before creating anything new.
If the user has no vault yet, run:
# One-line install + bootstrap (asks 3 questions: vault path, your name, preset)
curl -sL https://raw.githubusercontent.com/eugeniughelbur/obsidian-second-brain/main/scripts/quick-install.sh | bash
# Or manual:
python scripts/bootstrap_vault.py --path ~/path/to/vault --name "Your Name"
# With a preset:
python scripts/bootstrap_vault.py --path ~/my-vault --name "Your Name" --preset executive
python scripts/bootstrap_vault.py --path ~/my-vault --name "Your Name" --preset builder
python scripts/bootstrap_vault.py --path ~/my-vault --name "Your Name" --preset creator
python scripts/bootstrap_vault.py --path ~/my-vault --name "Your Name" --preset researcher
# With style override:
python scripts/bootstrap_vault.py --path ~/my-vault --name "Your Name" --style obsidian
# With assistant mode (maintaining vault for someone else):
python scripts/bootstrap_vault.py --path ~/my-vault --name "Your Name" --mode assistant --subject "Boss Name"
Then configure mcp-obsidian to point at the new vault path and restart Claude.
Presets customize the vault for different use cases:
executive — Decisions, people, meetings, strategic planning. Kanban: OKRs, Quarterly, Weekly.builder — Projects, dev logs, architecture decisions, debugging. Kanban: Backlog, Sprint, Done.creator — Content calendar, ideas pipeline, audience notes, publishing. Kanban: Ideas, Drafts, Published.researcher — Sources, literature notes, hypotheses, methodology. Kanban: Reading, Processing, Synthesized.Default (no preset) gives a general-purpose vault. All presets use wiki-style by default.
Assistant mode creates a _CLAUDE.md configured for operating a vault on behalf of someone else. See references/claude-md-assistant-template.md.
See references/vault-schema.md for full structural details.
Every write operation must ask: where else does this belong?
| You create/update... | Also update... |
|---|---|
| A new project note | Kanban board (add to Backlog), today's daily note (link it) |
| A task completed | Kanban board (move to Done), project note (log it), daily note |
| A person note | Daily note (mention interaction), People index if it exists |
| A dev log | Daily note (link it), project note (Recent Activity) |
| A deal update | Side Biz / Deals kanban, Dashboard totals |
| A decision made | Project note (Key Decisions), daily note |
| A mention/shoutout | Mentions Log, person's note, daily note |
| Any vault write | log.md (append timestamped entry), index.md (update if new note created) |
Always propagate. Never create a single orphaned note.
When a fact changes (role, company, status, location, tool), NEVER delete the old value. Add a new entry to the timeline: frontmatter array with both event time AND transaction time:
timeline:
- fact: "CTO at Single Grain"
from: 2024-01-01 # event time: when it was true
until: 2026-04-07
learned: 2026-02-23 # transaction time: when the vault learned it
source: "[[2026-02-23]]" # where from
- fact: "Architect at Single Grain"
from: 2026-04-07
until: present
learned: 2026-04-07
source: "[[2026-04-07]]"
Top-level fields (role:, status:, company:) always reflect the CURRENT state. The timeline: preserves the full history with provenance.
This enables:
A tiny file (~120 tokens) loaded alongside SOUL.md at L0 in every session. Contains facts needed in every conversation:
Update this file whenever a critical fact changes. Keep it under 150 tokens.
In wiki-style vaults, the raw/ folder contains original sources (articles, transcripts, PDFs). Claude reads these but NEVER modifies them. They are the source of truth. If a wiki page gets corrupted, re-derive it from the raw source. When ingesting, always save the original to raw/ and the derived pages to wiki/.
index.md and log.mdTwo structural files that keep the vault navigable and auditable:
index.md — A catalog of all vault pages organized by category. Claude reads this FIRST when navigating the vault instead of searching — faster and cheaper on tokens. Update it whenever a new note is created or deleted. Format: - [[Note Name]] — brief description grouped under folder headings.
log.md — An append-only chronological log of every vault operation. Every save, ingest, health check, and structural change gets a timestamped entry. Never delete or rewrite entries — only append. Format: ## [YYYY-MM-DD] action | Description
The vault is not a filing cabinet. It is a living knowledge base that rewrites itself with every input. When new information enters:
The vault after an ingest should be DIFFERENT — not just bigger. If pages that existed before aren't smarter, more connected, and more current, the ingest wasn't deep enough.
Every interaction that produces insight must generate two outputs:
This applies to all thinking tools and any query where Claude synthesizes information from the vault.
When Claude notices a pattern during any operation (ingest, query, challenge, emerge), it should automatically create a synthesis page in wiki/concepts/. Patterns include:
Synthesis pages are the vault thinking for itself — connecting dots the user hasn't connected yet.
The vault should never contain two pages that disagree without knowing they disagree. When contradictions are found (during ingest, health checks, or queries), either:
Use /obsidian-reconcile for vault-wide truth maintenance.
Unsaved conversations are lost knowledge. Claude should proactively remind the user to save:
Before creating any new note, search for an existing one:
search(query="keyword from title")
Duplicate notes are vault rot. Merge or update instead of creating new.
Read existing notes in the same folder before writing new ones. Match: frontmatter schema, heading style, list formatting, tone, emoji usage (or lack of it). Never introduce new conventions — extend what's already there.
Every note gets frontmatter. At minimum:
---
date: 2026-03-24
tags:
- <note-type>
---
See references/vault-schema.md for full frontmatter specs by note type.
See references/write-rules.md for the complete guide. Summary:
[[Note Name]] for internal links. Always link to people, projects, and jobs mentioned in a note.YYYY-MM-DD) in frontmatter. Human format (March 24) in body text.YYYY-MM-DD — Title.md for dated notes. Title.md for evergreen notes. No special characters except — (em dash).active / planning / completed / archived / on-hold for projects. in-progress / done / waiting for tasks.- [ ] 🔴 **Title** · @{YYYY-MM-DD}\n\tDescription [[Link]]_CLAUDE.md FileThis is the most important concept in this skill.
_CLAUDE.md lives at the vault root and persists Claude's operating rules across every session and every surface (Claude Desktop, Claude Code, VS Code, terminal). Without it, Claude has to re-learn your vault conventions every conversation.
Precedence rule: _CLAUDE.md wins on all vault-specific rules (folder names, naming conventions, frontmatter fields, auto-save behavior, private folders). The defaults in this skill file apply only where _CLAUDE.md is silent. Never let skill defaults override an explicit _CLAUDE.md rule.
What it contains:
To generate a _CLAUDE.md for an existing vault, run vault discovery then use the template in references/claude-md-template.md.
To install it: write the file to the vault root. Every Claude session that starts in that vault should read it first.
When a conversation produces something vault-worthy:
date = today in YYYY-MM-DD format
path = Daily/{date}.md
Read Templates/Daily Note.md, fill in the date fields, create the file.
Then scan recent conversation for anything worth logging in today's sections.
Read Templates/Dev Log.md. Fill: date, project name, what was worked on, problems solved, decisions made, next steps.
Save to Dev Logs/YYYY-MM-DD — Project Name.md.
Link from project note's Recent Activity section and today's daily note.
Boards use the kanban-plugin: board frontmatter.
Columns are ## Column Name headers.
Items are - [ ] **Title** · @{due-date}\n\tDescription [[Links]]
Completed items move to the ## ✅ Done column with a strikethrough: - [x] ~~**Title**~~ ✅ Date
python scripts/vault_health.py --path ~/path/to/vault
Reports: duplicate notes, orphaned files (no incoming links), stale tasks (overdue), empty folders, broken links, notes missing frontmatter.
Proactively suggest running this when the user says the vault feels messy, notes are hard to find, they mention duplicates, or they haven't mentioned a health check in a long time. Offer: "Want me to run a vault health check?"
These slash commands can be used in any Claude surface. Each one is smart — it reads context, searches before writing, and propagates everywhere changes belong.
Name matching: If a name argument has a typo or is approximate, search the vault for the closest match, show what was found, and confirm with the user before proceeding. Never silently create a note with a misspelled name.
/obsidian-saveThe master save command. Reads the entire conversation and extracts everything worth preserving.
Steps:
Do not ask for guidance on where to save things — infer it. Only ask if something is genuinely ambiguous (e.g. a person mentioned with no context on who they are).
/obsidian-dailyCreates or updates today's daily note.
Steps:
Daily/YYYY-MM-DD.md exists for todayTemplates/Daily Note.md, fill in date fields, create the fileReturn the path of the daily note when done.
/obsidian-logLogs a work or dev session to the vault.
Steps:
Templates/Dev Log.md (or Templates/Work Log.md if it exists)Dev Logs/YYYY-MM-DD — Project Name.md/obsidian-task [description]Adds a task to the vault and the right kanban board.
Steps:
_CLAUDE.md board list or search Boards/📋 This Week or 📥 Backlog depending on due date)Tasks/ if the task is substantial (more than a one-liner)/obsidian-person [name]Creates or updates a person note.
Steps:
People/Full Name.md with full frontmatter schema/obsidian-decide [optional: topic]Extracts and logs decisions from the conversation.
Steps:
## Key Decisions section with date/obsidian-capture [optional: idea text]Quick idea capture with zero friction.
Steps:
Ideas/ for a related existing note — if found, append to itIdeas/Title.md with minimal frontmatter (date, tags: [idea])/obsidian-find [query]Smart vault search.
Steps:
search(query="...") with the provided queryDo not just return filenames — return enough context for the user to act.
/obsidian-recap [today|week|month]Summarizes a time period from the vault.
Steps:
week if not specified)list_files_in_dir("Daily/")/obsidian-reviewGenerates a structured weekly or monthly review note.
Steps:
Templates/Review.md if it exists, otherwise use a standard structure:
Reviews/YYYY-MM-DD — Weekly Review.md (or Monthly)/obsidian-board [optional: board name]Shows or updates a kanban board.
Steps:
Boards/ for it (fuzzy match)@{date})/obsidian-project [name]Creates or updates a project note.
Steps:
Projects/Project Name.md with full frontmatter schema (date, tags: [project], status: active, job)📥 Backlog or 🔨 In Progress column/obsidian-healthRuns a vault health check and summarizes findings.
Steps:
python scripts/vault_health.py --path ~/path/to/vault --jsonlog.md with severity counts/obsidian-reconcileFinds and resolves contradictions across the vault.
Steps:
index.md to understand the full vault landscapewiki/concepts/ and wiki/projects/ for conflicting factual claimswiki/entities/ for outdated roles, companies, or descriptionswiki/decisions/ for reversed or superseded decisions never updatedraw/ dates against wiki/ pages for stale referenceswiki/decisions/Conflict — Topic.md with both sides, mark status: openindex.md sections, append to log.md, update daily note/obsidian-synthesizeAutomatic synthesis — the vault thinks for itself.
Can run manually or as a scheduled agent. Scans the vault for patterns nobody asked about.
Steps:
index.md and log.md (last 20 entries) for recent activitywiki/concepts/Synthesis — Title.md with evidence, interpretation, and suggested actionindex.md, log.md, and today's daily note/obsidian-exportExport a clean snapshot any agent or tool can consume.
Steps:
wiki/ and extract: path, title, type, date, status, summary, links, tags, frontmatter_export/vault-snapshot.json or markdown to _export/vault-snapshot.mdlog.md/obsidian-initBootstraps _CLAUDE.md for the vault — the operating manual.
Steps:
list_files_in_vault() to map the full structureHome.md or equivalent dashboardTemplates/Boards/_CLAUDE.md using the template in references/claude-md-template.md, filled with real values from the vault_CLAUDE.md at the vault root via append_content("_CLAUDE.md", content)If _CLAUDE.md already exists: show a diff of what would change and ask before overwriting.
/obsidian-ingestIngests a source into the vault — one source touches many pages.
Steps:
Knowledge/YYYY-MM-DD — Source Title.md with full summary and source linkindex.md with all newly created noteslog.md: ## [YYYY-MM-DD] ingest | Source Title (type) — X created, Y updatedA single ingest should touch 5-15 files. Compile knowledge once, distribute everywhere.
These commands use the vault as a thinking partner — not just storage. They surface insights, challenge assumptions, and generate connections that the user cannot see on their own.
/obsidian-challengeRed-teams your current idea against your own vault history.
Steps:
Do not be agreeable. The entire point is to pressure-test. Cite specific vault files.
/obsidian-emergeSurfaces unnamed patterns from recent notes — recurring themes and conclusions you haven't explicitly stated.
Steps:
Ideas/ or a relevant project noteThe goal is insight the user cannot see themselves. Surface what they haven't named yet.
/obsidian-connect [topic A] [topic B]Bridges two unrelated domains using the vault's link graph to spark new ideas.
Steps:
/obsidian-connect "distributed systems" "cooking")Ideas/ with links to both source domainsThe value is in unexpected links. If the connection is obvious, dig deeper.
/obsidian-graduatePromotes an idea fragment into a full project spec with tasks, board entries, and structure.
Steps:
Ideas/, daily notes, and captures for a matching idea (fuzzy)Projects/ with complete frontmatter (status: planning, linked idea)status: graduated and link to the new projectThe idea doesn't die — it evolves. The original note stays as the origin story.
/obsidian-worldLoads your identity, values, priorities, and current state in one shot — with progressive context levels.
Uses token budgets to avoid loading the entire vault. Start light, go deeper only as needed.
Steps:
SOUL.md/About Me.md and CORE_VALUES.md/Values.mdindex.md (vault catalog) and log.md (last 10 entries)Home.md/Dashboard.md, today's daily note, last 3 daily notes, active kanban boards, previous session digestsPresent a brief status after L0-L2 (do NOT load L3 unless needed):
Keep output concise — this is a boot-up sequence, not a report.
If identity files don't exist, offer to create them by asking 5-7 quick questions about the user's role, values, and preferences.
If index.md doesn't exist, offer to run /obsidian-init to generate it.
/obsidian-adrGenerates a decision record when the vault structure changes.
Steps:
Knowledge/ADR-YYYY-MM-DD — Title.md with:
index.md and append to log.mdThe vault knows why it's structured the way it is. When a future session asks "why?" — the ADR has the answer.
Can also be triggered automatically by /obsidian-graduate, /obsidian-health structural fixes, or folder reorganizations. In those cases, offer to create an ADR — don't force it.
Four autonomous agents designed to run on a schedule with no user intervention. Each runs a focused vault operation at a set time, then stops. They are conservative by default — they never delete or archive anything autonomously, and they never ask the user questions mid-run.
Set these up once using the /schedule skill in Claude Code.
obsidian-morning — Daily at 8:00 AMCreates today's daily note and surfaces what needs attention.
Prompt to schedule:
Read _CLAUDE.md. Create today's daily note in Daily/ using the Daily Note template.
Pull in any tasks from kanban boards that are due today or overdue.
List any projects with status active that have no recent activity in the last 7 days.
Do not ask questions — infer everything from the vault. Save and stop.
Setup:
/schedule obsidian-morning — daily 8:00 AM
obsidian-nightly — Daily at 10:00 PMSleeptime consolidation — the vault gets smarter overnight.
This agent does more than close the day. It actively consolidates and improves the vault while you sleep.
Prompt to schedule:
Read _CLAUDE.md. This is a sleeptime consolidation pass — the vault should be smarter when the user wakes up.
Phase 1 — Close the day:
- Read today's daily note. Append a ## End of Day section with a 3-5 bullet summary.
- Move any completed kanban tasks to Done.
Phase 2 — Reconcile:
- Scan wiki/entities/ for outdated roles, companies, or descriptions that conflict with newer daily notes.
- Scan wiki/concepts/ for claims contradicted by recently ingested sources.
- Auto-resolve clear winners. Flag ambiguous ones in wiki/decisions/.
Phase 3 — Synthesize:
- Scan sources ingested today and yesterday. Find concepts that appear in 2+ unrelated sources.
- If patterns found: create wiki/concepts/Synthesis — Title.md with evidence and interpretation.
Phase 4 — Heal:
- Find notes created today with no incoming links. Add links from relevant existing pages.
- Check if any entity pages reference old timeline entries without an "until" date that should be closed.
- Rebuild index.md to reflect today's changes.
Phase 5 — Log:
- Append to log.md: ## [YYYY-MM-DD] nightly | End of day + X reconciled, Y synthesized, Z orphans linked
Do not ask questions. Do not fix anything destructive — only add, update, link. Save and stop.
Setup:
/schedule obsidian-nightly — daily 10:00 PM
obsidian-weekly — Every Friday at 6:00 PMGenerates a weekly review note from the vault.
Prompt to schedule:
Read _CLAUDE.md. Run /obsidian-recap week to gather this week's activity.
Generate a weekly review note using the Review template (or standard structure if none exists).
Save to Reviews/YYYY-MM-DD — Weekly Review.md.
Link it from this week's last daily note.
Do not ask questions. Save and stop.
Setup:
/schedule obsidian-weekly — every Friday 6:00 PM
obsidian-health-check — Every Sunday at 9:00 PMRuns the vault health check and logs a report.
Prompt to schedule:
Read _CLAUDE.md. Run: python scripts/vault_health.py --path ~/path/to/vault --json
Parse the output. Write a health report to Knowledge/Vault Health YYYY-MM-DD.md
summarizing findings by severity (critical, warning, info).
Do not fix anything autonomously — only report.
Do not ask questions. Save and stop.
Setup:
/schedule obsidian-health-check — every Sunday 9:00 PM
All four can be configured at once:
/schedule
Then tell Claude which agents you want and at what times. Claude Code's scheduling system will handle the rest — agents run autonomously in the background on the defined cron schedule.
To list or remove scheduled agents:
/schedule list
/schedule remove obsidian-morning
A background agent that fires automatically whenever Claude compacts the conversation context. It reads the session summary and propagates everything worth preserving to the vault — no user action required.
What it does: After each compaction, a headless claude -p subprocess wakes up, reads _CLAUDE.md, scans the summary for vault-worthy items (people, projects, decisions, tasks, dev work, ideas), and writes updates everywhere they belong — people notes, project notes, dev logs, kanban boards, and today's daily note.
How it works:
PostCompact hook fires in Claude Code after context compactionclaude --dangerously-skip-permissions -p subprocess in the vault directorySetup:
Make the hook script executable (one-time):
chmod +x ~/.claude/skills/obsidian-second-brain/hooks/obsidian-bg-agent.sh
Set OBSIDIAN_VAULT_PATH in ~/.claude/settings.json:
{
"env": {
"OBSIDIAN_VAULT_PATH": "/path/to/your/vault"
}
}
Add the PostCompact hook to ~/.claude/settings.json:
{
"hooks": {
"PostCompact": [
{
"matcher": "",
"hooks": [
{
"type": "command",
"command": "/Users/you/.claude/skills/obsidian-second-brain/hooks/obsidian-bg-agent.sh",
"timeout": 10,
"async": true
}
]
}
]
}
}
Debugging: The agent logs to /tmp/obsidian-bg-agent.log. Check there if updates aren't appearing.
Safety: The agent never deletes, archives, or merges anything. It only adds or updates. If the summary has nothing vault-worthy, it exits without touching the vault.
references/vault-schema.md — Complete folder structure + frontmatter specs for all note typesreferences/write-rules.md — Detailed writing, linking, and formatting rulesreferences/claude-md-template.md — Template for generating a vault's _CLAUDE.mdscripts/setup.sh — One-command installer (wires hook + env var + MCP)scripts/bootstrap_vault.py — Bootstrap a complete vault from scratchscripts/vault_health.py — Audit a vault for structural issuesYou use Claude every day. Every session starts from scratch. You re-explain everything. The conversation ends. Everything disappears.
You take notes in Obsidian. Hundreds of files. They just sit there. You make the same decision twice because you forgot you made it six months ago. Ideas rot in daily notes. Nobody connects the dots.
Two powerful tools. Completely disconnected.
After a meeting: /obsidian-save
Claude pulls out every decision, person, task, and idea and saves each one to the right note. You do nothing.
You recorded a voice memo: /obsidian-ingest meeting.m4a
Claude transcribes it with Whisper, identifies speakers, extracts every promise and action item, and distributes across entity pages, task boards, and the daily note.
You screenshot a whiteboard: /obsidian-ingest photo.png
Claude reads the image, extracts text and structure, creates concept notes, links to related projects. A photo becomes knowledge.
You find a great video: /obsidian-ingest https://youtube.com/...
Claude doesn't summarize into one note. It REWRITES your existing pages. People get updated. Contradictions get resolved. Patterns trigger new synthesis pages. One URL in. The vault is smarter.
Before a big decision: /obsidian-challenge
Claude searches your vault for past failures and reversed decisions on the same topic. Pushes back with your own words. Your vault holds you accountable.
You want to see the big picture: /obsidian-visualize
Claude generates a visual canvas of your entire vault. Hub nodes centered, color-coded by type, orphans highlighted. Open it in Obsidian and see the shape of your knowledge.
You go to sleep: The nightly agent runs 5 phases — closes the day, reconciles contradictions, synthesizes cross-source patterns, heals orphan notes, and rebuilds the index. You wake up to a smarter vault.
You start a new day: /obsidian-daily
Claude pulls your calendar events, overdue tasks, and overnight changes into today's note. Your morning starts informed.
You never open Obsidian. Everything happens through Claude.
| | Without this skill | With this skill |
|---|---|---|
| Saving decisions | Copy-paste or lose them | Auto-saved to the right project note |
| Daily notes | Write it yourself, forget half the time | Created automatically |
| Finding patterns | Re-read dozens of notes | /emerge finds them for you |
| Challenging yourself | Nobody pushes back | /challenge uses your own history against you |
| Session continuity | Re-explain every time | /world loads full context in 10 seconds |
| Ingesting content | Read it, forget it | /ingest rewrites 5-15 vault pages from 1 source (URLs, PDFs, audio, screenshots) |
| Contradictions | You don't know they exist | /reconcile resolves them automatically |
| Synthesis | You connect dots manually | /synthesize finds patterns across sources on its own |
| Sharing vault data | Only Claude can read it | /export gives any AI tool a clean snapshot |
| Facts change over time | Old info gets overwritten | Bi-temporal facts track when it was true AND when the vault learned it |
| Starting a new session | Re-explain who you are | CRITICAL_FACTS.md loads your identity in ~120 tokens |
+------------------------------------------+
| |
| LAYER 1: Operations (20 commands) |
| Claude remembers everything |
| |
+------------------------------------------+
| |
| LAYER 2: Thinking Tools (4 commands) |
| Claude thinks with you |
| |
+------------------------------------------+
| |
| LAYER 3: Context Engine (1 command) |
| Claude knows who you are |
| |
+------------------------------------------+
| |
| ALWAYS ON |
| Background agent + 4 scheduled agents |
| Auto-synthesis + save reminders |
| |
+------------------------------------------+
Layer 1 saves, organizes, ingests, reconciles, exports, and maintains your vault. Layer 2 challenges your ideas, surfaces hidden patterns, bridges unrelated domains, and graduates ideas into projects. Layer 3 loads your identity and current state so every session picks up where the last one ended. Always On keeps the vault alive without you lifting a finger.
| Command | What it does |
|---|---|
| /obsidian-save | Saves everything from the conversation -- decisions, tasks, people, ideas |
| /obsidian-ingest | Drop a URL, PDF, audio file, or screenshot. The vault REWRITES itself. 5-15 pages touched per source. |
| /obsidian-synthesize | Auto-finds patterns across sources and writes synthesis pages |
| /obsidian-reconcile | Finds contradictions and resolves them. The vault maintains its own truth. |
| /obsidian-export | Clean JSON/markdown snapshot any AI tool can read |
| /obsidian-daily | Creates or updates today's daily note |
| /obsidian-log | Logs a work session, links it everywhere |
| /obsidian-task | Adds task to the right board with priority and due date |
| /obsidian-person | Creates or updates a person note |
| /obsidian-decide | Logs decisions to the right project note |
| /obsidian-capture | Zero-friction idea capture |
| /obsidian-find | Smart search with context |
| /obsidian-recap | Summary of a day, week, or month |
| /obsidian-review | Structured weekly or monthly review |
| /obsidian-board | Kanban board view and updates |
| /obsidian-project | Project note with board and daily links |
| /obsidian-health | Vault audit -- contradictions, gaps, stale claims, orphans |
| /obsidian-adr | Decision records -- the vault knows why it's structured this way |
| /obsidian-visualize | Generates a visual canvas map — see the shape of your second brain |
| /obsidian-init | Generates _CLAUDE.md, index.md, log.md |
| Command | What it does |
|---|---|
| /obsidian-challenge | Your vault argues against your idea using your own history |
| /obsidian-emerge | Surfaces patterns from 30 days of notes you never named |
| /obsidian-connect [A] [B] | Bridges two unrelated domains to spark new ideas |
| /obsidian-graduate | Turns an idea fragment into a full project with tasks |
| Command | What it does |
|---|---|
| /obsidian-world | Loads identity + state with progressive token budgets (L0-L3) |
/obsidian-challenge
You: "I want to rewrite the API in Rust."
Claude finds your 2025 post-mortem where the Rust rewrite failed. Finds your decision log committing to TypeScript for 2 years. Says: "Your own notes say this failed. Still want to proceed?"
/obsidian-emerge
Claude scans 30 daily notes. You mentioned "onboarding friction" in 4 unrelated projects.
"Onboarding is your bottleneck across projects. You never named it."
/obsidian-connect "distributed systems" "cooking"
Traces both clusters in your link graph. Finds shared concepts: preparation and load distribution. Generates 3 actionable ideas at the intersection.
/obsidian-graduate
An idea from 3 weeks ago. Claude reads it, finds related projects and people, generates a full spec with goals, phases, tasks, and board entries. The idea gets tagged graduated.
/obsidian-ingest https://youtube.com/watch?v=example
raw/videos/ (immutable)index.md, log.md, daily noteOne URL in. The vault rewrites itself.
Traditional vaults are filing cabinets. You put things in. They sit there.
This vault rewrites itself with every input:
No comments yet. Be the first to share your thoughts!