Skip to main content
ClaudeWave
Skill486 estrellas del repoactualizado yesterday

obsidian-vault

This Claude Code skill enables searching, creating, and managing notes within an Obsidian vault located at `/mnt/d/Obsidian Vault/AI Research/`. It uses wikilinks for interconnecting notes and index notes for aggregating related topics in a flat file structure. Use this skill when the user needs to find existing notes by filename or content, create new notes following title case conventions, discover related notes through backlinks, or locate index notes that organize topics.

Instalar en Claude Code
Copiar
git clone --depth 1 https://github.com/stevesolun/ctx /tmp/obsidian-vault && cp -r /tmp/obsidian-vault/imported-skills/mattpocock/obsidian-vault ~/.claude/skills/obsidian-vault
Después abre una sesión nueva de Claude Code; el skill carga automáticamente.

SKILL.md

# 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 filename
find "/mnt/d/Obsidian Vault/AI Research/" -name "*.md" | grep -i "keyword"

# Search by content
grep -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 filename
2. Write content as a unit of learning (per vault rules)
3. Add `[[wikilinks]]` to related notes at the bottom
4. If part of a numbered sequence, use the hierarchical numbering scheme

### Find related notes

Search for `[[Note Title]]` across the vault to find backlinks:

```bash
grep -rl "\\[\\[Note Title\\]\\]" "/mnt/d/Obsidian Vault/AI Research/"
```

### Find index notes

```bash
find "/mnt/d/Obsidian Vault/AI Research/" -name "*Index*"
```