npx skills add https://github.com/anthropics/skills --skill pdfHow 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.
Pre-configured AI company — 18 agents, 18 skills, one-time purchase.
SKILL.md59 linesExpandCollapse
---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*"```Design An Interface
When you need to design a module interface, this skill prevents you from settling on your first idea by spawning multiple parallel sub-agents that each produce
Git Guardrails Claude Code
Install Git Guardrails Claude Code skill for Claude Code from mattpocock/skills.
Improve Codebase Architecture
This tool explores your codebase the way an AI would, identifying where shallow modules create friction and proposing deeper, more testable boundaries. It spawn