AgentSkillsCN

obsidian

当您需要访问Obsidian Vault中的笔记——阅读、搜索、列出或整理笔记时,这一工具能为您提供便捷的服务。涵盖Obsidian、笔记、Vault、想法、日记与备忘录。注意:此工具不适用于Vault之外的一般文件操作。

SKILL.md
--- frontmatter
name: obsidian
description: Use when accessing Obsidian vault notes - reading, searching, listing, or organizing notes. Covers obsidian, notes, vault, ideas, diary, memos. NOT for: general file operations outside the vault.

Obsidian Vault Access

Direct filesystem access to Obsidian vault. Use this when the Obsidian MCP is unavailable or unreliable.

Vault Location

code
/Users/etanheyman/Library/Mobile Documents/iCloud~md~obsidian/Documents/personal

Note: This is the iCloud-synced vault. Changes sync across devices.


Quick Actions

What you want to doHow
List recent notesworkflows/recent.md
Search notesworkflows/search.md
Read a noteworkflows/read.md
Create/update noteworkflows/write.md

Vault Structure

code
personal/
├── Diary/              # Daily entries (MM-DD-YYYY.md)
├── Ralph/              # Ralph-related ideas and notes
├── Domica notes.md     # Project notes
├── מזכרות.md           # Memos (Hebrew)
└── *.md                # Other notes

Common Commands

List Recent Notes (last 7 days)

bash
VAULT="/Users/etanheyman/Library/Mobile Documents/iCloud~md~obsidian/Documents/personal"
find "$VAULT" -name "*.md" -mtime -7 -type f

Search Note Content

bash
VAULT="/Users/etanheyman/Library/Mobile Documents/iCloud~md~obsidian/Documents/personal"
grep -r -l "search term" "$VAULT" --include="*.md"

List All Notes

bash
VAULT="/Users/etanheyman/Library/Mobile Documents/iCloud~md~obsidian/Documents/personal"
find "$VAULT" -name "*.md" -type f | head -30

Read a Note

bash
cat "/Users/etanheyman/Library/Mobile Documents/iCloud~md~obsidian/Documents/personal/Ralph/Ralph Ideas.md"

Key Notes Reference

NotePurpose
Ralph/Ralph Ideas.mdIdeas for Ralph improvements
Diary/MM-DD-YYYY.mdDaily diary entries
Domica notes.mdDomica project notes
מזכרות.mdGeneral memos

Safety Rules

  1. Don't delete notes - Only create or update
  2. Preserve formatting - Keep existing markdown structure
  3. Respect Hebrew content - Some notes are in Hebrew, preserve encoding
  4. Backup before bulk changes - iCloud syncs, but be careful with mass edits