agents/openai.yaml
interface: display_name: "Obsidian Vault" short_description: "Manage linked notes in Obsidian"
mattpocock/skills · GitHub
위키 링크와 색인 노트를 사용하여 Obsidian 볼트에서 노트를 검색, 생성 및 관리할 수 있습니다. 사용자가 Obsidian에서 노트를 찾거나, 생성하거나, 정리하고자 할 때 이 기능을 사용하세요.
프로젝트 폴더에서 아래 명령어를 실행하고, 설치할 에이전트를 선택하세요.
npx skills add mattpocock/skills --skill obsidian-vault설치 명령을 직접 실행해야 적용됩니다. 지원 에이전트와 필요한 권한·라이선스는 제작자의 안내를 확인하세요.
agents/openai.yamlinterface: display_name: "Obsidian Vault" short_description: "Manage linked notes in Obsidian"
SKILL.md--- name: obsidian-vault description: 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 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*" ```