Claude Agent Skill · by Mattpocock

Obsidian Vault

Install Obsidian Vault skill for Claude Code from mattpocock/skills.

Install
Terminal · npx
$npx skills add https://github.com/anthropics/skills --skill pdf
Works with Paperclip

How Obsidian Vault fits into a Paperclip company.

Obsidian Vault drops into any Paperclip agent that handles this kind of work. Assign it to a specialist inside a pre-configured PaperclipOrg company and the skill becomes available on every heartbeat — no prompt engineering, no tool wiring.

S
SaaS FactoryPaired

Pre-configured AI company — 18 agents, 18 skills, one-time purchase.

$27$59
Explore pack
Source file
SKILL.md59 lines
Expand
---name: obsidian-vaultdescription: Search, create, and manage notes in the Obsidian vault with wikilinks and index notes. Use when user wants to find, create, or organize notes in Obsidian.--- # Obsidian Vault ## Vault location `/mnt/d/Obsidian Vault/AI Research/` Mostly flat at root level. ## Naming conventions - **Index notes**: aggregate related topics (e.g., `Ralph Wiggum Index.md`, `Skills Index.md`, `RAG Index.md`)- **Title case** for all note names- No folders for organization - use links and index notes instead ## Linking - Use Obsidian `[[wikilinks]]` syntax: `[[Note Title]]`- Notes link to dependencies/related notes at the bottom- Index notes are just lists of `[[wikilinks]]` ## Workflows ### Search for notes ```bash# Search by filenamefind "/mnt/d/Obsidian Vault/AI Research/" -name "*.md" | grep -i "keyword" # Search by contentgrep -rl "keyword" "/mnt/d/Obsidian Vault/AI Research/" --include="*.md"``` Or use Grep/Glob tools directly on the vault path. ### Create a new note 1. Use **Title Case** for filename2. Write content as a unit of learning (per vault rules)3. Add `[[wikilinks]]` to related notes at the bottom4. If part of a numbered sequence, use the hierarchical numbering scheme ### Find related notes Search for `[[Note Title]]` across the vault to find backlinks: ```bashgrep -rl "\\[\\[Note Title\\]\\]" "/mnt/d/Obsidian Vault/AI Research/"``` ### Find index notes ```bashfind "/mnt/d/Obsidian Vault/AI Research/" -name "*Index*"```