Help us improve
Share bugs, ideas, or general feedback.
From mattpocock-skills
Search, create, and manage notes in an Obsidian vault using wikilinks, shell commands, and index notes for organization.
npx claudepluginhub vinvcn/mattpocock-skills-zh-cnHow this skill is triggered — by the user, by Claude, or both
Slash command
/mattpocock-skills:obsidian-vaultThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
`/mnt/d/Obsidian Vault/AI Research/`
Search, create, and organize Obsidian notes using wikilinks and index notes. Useful for managing a flat vault with linked notes.
Search, create, and manage notes in Obsidian vault with wikilinks and index notes. Useful for finding, creating, or organizing notes via grep/find commands.
Inspects, edits, organizes, and analyzes local Obsidian vault notes, YAML frontmatter, wikilinks, graph structure, and schema. Useful for vault maintenance and bulk edits.
Share bugs, ideas, or general feedback.
/mnt/d/Obsidian Vault/AI Research/
root level 基本保持扁平。
Ralph Wiggum Index.md、Skills Index.md、RAG Index.md)[[wikilinks]] syntax:[[Note Title]][[wikilinks]] 列表# 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"
或直接在 vault path 上使用 Grep/Glob tools。
[[wikilinks]]在 vault 中搜索 [[Note Title]] 来找 backlinks:
grep -rl "\\[\\[Note Title\\]\\]" "/mnt/d/Obsidian Vault/AI Research/"
find "/mnt/d/Obsidian Vault/AI Research/" -name "*Index*"