Agent Skills
› Remocn/remocn
› obsidian-vault
obsidian-vault
GitHub用于在 Obsidian 知识库中搜索、创建和管理笔记。支持按文件名或内容查找,创建符合命名规范的笔记并添加 wikilinks,以及通过反向链接和索引笔记发现相关内容。
Trigger Scenarios
用户需要在 Obsidian 中搜索特定笔记
用户想要创建新的知识笔记
用户希望整理或组织现有的笔记结构
Install
npx skills add Remocn/remocn --skill obsidian-vault -g -y
SKILL.md
Frontmatter
{
"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
# 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
- Use Title Case for filename
- Write content as a unit of learning (per vault rules)
- Add
[[wikilinks]]to related notes at the bottom - If part of a numbered sequence, use the hierarchical numbering scheme
Find related notes
Search for [[Note Title]] across the vault to find backlinks:
grep -rl "\\[\\[Note Title\\]\\]" "/mnt/d/Obsidian Vault/AI Research/"
Find index notes
find "/mnt/d/Obsidian Vault/AI Research/" -name "*Index*"
Version History
- f77e19e Current 2026-07-19 22:35


