From aradotso-trending-skills-37
Builds and maintains persistent Obsidian wiki vaults using AI for source ingestion, knowledge querying, note linting, and autonomous research.
npx claudepluginhub joshuarweaver/cascade-ai-ml-agents-misc-1 --plugin aradotso-trending-skills-37This skill uses the workspace's default tool permissions.
```markdown
Guides Next.js Cache Components and Partial Prerendering (PPR) with cacheComponents enabled. Implements 'use cache', cacheLife(), cacheTag(), revalidateTag(), static/dynamic optimization, and cache debugging.
Guides building MCP servers enabling LLMs to interact with external services via tools. Covers best practices, TypeScript/Node (MCP SDK), Python (FastMCP).
Generates original PNG/PDF visual art via design philosophy manifestos for posters, graphics, and static designs on user request.
---
name: claude-obsidian-wiki
description: Claude Code skill for building and maintaining a persistent, compounding Obsidian wiki vault using AI-powered ingestion, querying, linting, and autonomous research.
triggers:
- "set up claude obsidian wiki"
- "build a second brain with obsidian"
- "ingest sources into my wiki vault"
- "query my obsidian knowledge base"
- "lint my obsidian wiki"
- "run autoresearch on a topic"
- "save this conversation to my wiki"
- "set up persistent knowledge base with claude"
---
# claude-obsidian-wiki
> Skill by [ara.so](https://ara.so) — Daily 2026 Skills collection.
claude-obsidian is a Claude Code skill that turns Obsidian into a self-organizing AI knowledge engine. Drop sources, ask questions, run autonomous research — Claude handles ingestion, cross-referencing, contradiction flagging, session memory, and vault health. Knowledge compounds with every ingest.
Based on [Andrej Karpathy's LLM Wiki pattern](https://gist.github.com/karpathy/442a6bf555914893e9891c11519de94f). 10 skills. Zero manual filing. Multi-agent support.
---
## Installation
### Option 1: Clone as vault (recommended)
```bash
git clone https://github.com/AgriciDaniel/claude-obsidian
cd claude-obsidian
bash bin/setup-vault.sh
Open the folder in Obsidian: Manage Vaults → Open folder as vault → select claude-obsidian/
Open Claude Code in the same folder. Type /wiki to begin.
setup-vault.sh configures graph.json, app.json, and appearance.json. Run it once before first Obsidian open.
# Add the marketplace catalog
claude plugin marketplace add AgriciDaniel/claude-obsidian
# Install the plugin
claude plugin install claude-obsidian@claude-obsidian-marketplace
# Verify
claude plugin list
Then in any Claude Code session: /wiki
# Copy WIKI.md into your vault root, then paste into Claude:
Read WIKI.md in this project. Then:
1. Check if Obsidian is installed. If not, install it.
2. Check if the Local REST API plugin is running on port 27124.
3. Configure the MCP server.
4. Ask me ONE question: "What is this vault for?"
Then scaffold the full wiki structure.
MCP lets Claude read and write vault notes directly without copy-paste.
claude mcp add-json obsidian-vault '{
"type": "stdio",
"command": "uvx",
"args": ["mcp-obsidian"],
"env": {
"OBSIDIAN_API_KEY": "$OBSIDIAN_API_KEY",
"OBSIDIAN_HOST": "127.0.0.1",
"OBSIDIAN_PORT": "27124",
"NODE_TLS_REJECT_UNAUTHORIZED": "0"
}
}' --scope user
Set the env var before running:
export OBSIDIAN_API_KEY=your-key-from-plugin-settings
claude mcp add-json obsidian-vault '{
"type": "stdio",
"command": "npx",
"args": ["-y", "@bitbonsai/mcpvault@latest", "/path/to/your/vault"]
}' --scope user
| Command | What Claude does |
|---|---|
/wiki | Setup check, scaffold structure, or resume last session |
ingest [file or URL] | Read source, create 8–15 wiki pages, update index and log |
ingest all of these | Batch process multiple sources, then cross-reference |
what do you know about X? | Read index → relevant pages → synthesize answer with citations |
/save | File current conversation as a wiki note (prompts for name) |
/save [name] | Save with a specific title, skips naming question |
/autoresearch [topic] | 3-round autonomous research: search, fetch, synthesize, file |
/canvas | Open or create visual canvas, list zones and nodes |
lint the wiki | Health check: orphans, dead links, gaps, missing cross-refs |
update hot cache | Refresh wiki/hot.md with latest context summary |
After /wiki scaffolds your vault:
your-vault/
├── wiki/
│ ├── index.md # Master catalog of all wiki pages
│ ├── log.md # Append-only operation log
│ ├── hot.md # Recent context cache (session memory)
│ ├── overview.md # Executive summary
│ └── meta/
│ ├── dashboard.base # Native Obsidian Bases dashboard
│ └── dashboard.md # Legacy Dataview dashboard (fallback)
├── _templates/ # Templater templates for each note type
├── .obsidian/
│ └── snippets/
│ └── vault-colors.css # Color-coded file explorer
└── CLAUDE.md # Auto-loaded project instructions
Select one or combine during /wiki setup:
| Mode | Use case |
|---|---|
| A: Website | Sitemap, content audit, SEO wiki |
| B: GitHub | Codebase map, architecture wiki |
| C: Business | Project wiki, competitive intelligence |
| D: Personal | Second brain, goals, journal synthesis |
| E: Research | Papers, concepts, thesis |
| F: Book/Course | Chapter tracker, course notes |
ingest research-paper.pdf
Claude will:
wiki/index.md with new entrieswiki/log.md[!contradiction] calloutsingest all of these:
- paper1.pdf
- paper2.pdf
- https://example.com/article
- notes.md
Claude spawns parallel agents per source, then runs a cross-reference pass.
Install the Obsidian Web Clipper browser extension. Pages saved via clipper land in .raw/. Then:
ingest everything in .raw/
what do you know about transformer attention mechanisms?
Claude's resolution order:
wiki/hot.md (recent context cache)wiki/index.md for relevant pages/autoresearch "retrieval augmented generation"
Claude runs 3 rounds:
Configure research objectives in:
skills/autoresearch/references/program.md
wiki/hot.md persists recent context between sessions. At session end:
update hot cache
At session start, Claude automatically reads hot.md — no recap needed.
lint the wiki
Claude checks 8 categories:
wiki/index.mdPoint any Claude Code project at this vault. Add to that project's CLAUDE.md:
## Wiki Knowledge Base
Path: ~/path/to/claude-obsidian
When you need context not already in this project:
1. Read wiki/hot.md first (recent context cache)
2. If not enough, read wiki/index.md
3. If you need domain details, read the relevant domain sub-index
4. Only then drill into specific wiki pages
Do NOT read the wiki for general coding questions unrelated to [your domain].
/canvas # Open or create the visual canvas
/canvas add image [path-or-url] # Add image with auto-layout
/canvas add text [content] # Add markdown text card
/canvas add pdf [path] # Add PDF as rendered preview node
/canvas add note [wiki-page] # Pin a wiki page as linked card
/canvas zone [name] # Add labeled zone for organization
/canvas from banana # Capture recently generated images
Pairs with claude-canvas for 12 templates, 6 layout algorithms, and AI image generation.
All ingested pages use this frontmatter schema:
---
title: "Attention Is All You Need"
type: source # source | concept | entity | hub | log
tags: [transformers, attention, nlp]
created: 2026-04-11
updated: 2026-04-11
status: current # current | stale | stub
source: "https://arxiv.org/abs/1706.03762"
related:
- "[[Transformer Architecture]]"
- "[[Self-Attention Mechanism]]"
banner: "_attachments/images/transformer.png"
banner_icon: "🤖"
---
When Claude detects conflicting information across sources:
> [!contradiction]
> **Source A** (2024) claims X. **Source B** (2025) claims Y.
> Last verified: 2026-04-11. Needs resolution.
| Plugin | Purpose |
|---|---|
| Calendar | Right-sidebar calendar with word count + task dots |
| Thino | Quick memo capture panel |
| Excalidraw | Freehand drawing (downloaded by setup-vault.sh) |
| Banners | Notion-style header images via banner: frontmatter |
| Plugin | Purpose |
|---|---|
| Templater | Auto-fills frontmatter from _templates/ |
| Obsidian Git | Auto-commits vault every 15 minutes |
| Local REST API | Required for MCP Option A |
dashboard.base (requires Obsidian v1.9.10+)| Snippet | Effect |
|---|---|
vault-colors | Color-codes wiki/ folders: blue=concepts, green=sources, purple=entities |
ITS-Dataview-Cards | Turns Dataview TABLE queries into visual card grids |
ITS-Image-Adjustments | Fine-grained image sizing: append |100 to any image embed |
/wiki doesn't respond
# Confirm plugin is installed
claude plugin list
# Reinstall if missing
claude plugin install claude-obsidian@claude-obsidian-marketplace
MCP connection refused
# Check Local REST API plugin is running in Obsidian
# Verify port
curl http://127.0.0.1:27124/vault/ -H "Authorization: Bearer $OBSIDIAN_API_KEY"
# Check env var is set
echo $OBSIDIAN_API_KEY
setup-vault.sh fails on Excalidraw download
# Run manually
bash bin/setup-vault.sh
# Or skip Excalidraw — enable it later from Community Plugins
Graph view looks empty
# Re-run setup to apply graph.json filter + colors
bash bin/setup-vault.sh
# Then restart Obsidian
Hot cache is stale
update hot cache
Run this at the end of every significant session.
Dataview dashboard shows errors
The primary dashboard now uses Bases (Obsidian v1.9.10+). The legacy dashboard.md requires the Dataview community plugin. Install it if you need the fallback view.
claude-obsidian/
├── .claude-plugin/
│ ├── plugin.json # Plugin manifest
│ └── marketplace.json # Distribution metadata
├── skills/
│ ├── wiki/ # Orchestrator + 7 reference files
│ ├── wiki-ingest/ # INGEST operation skill
│ ├── wiki-query/ # QUERY operation skill
│ ├── wiki-lint/ # LINT operation skill
│ ├── save/ # /save skill
│ ├── autoresearch/ # /autoresearch skill
│ │ └── references/
│ │ └── program.md # Configurable research objectives
│ └── canvas/ # /canvas visual layer skill
│ └── references/
├── bin/
│ └── setup-vault.sh # One-time vault configuration
├── wiki/ # Your actual knowledge base
│ ├── index.md
│ ├── log.md
│ ├── hot.md
│ └── meta/
└── WIKI.md # Standalone install instructions