Obsidian Vault Access
Direct filesystem access to Obsidian vault. Use this when the Obsidian MCP is unavailable or unreliable.
Vault Location
export OBSIDIAN_VAULT="$HOME/Library/Mobile Documents/iCloud~md~obsidian/Documents/<your-vault>"
Note: Set OBSIDIAN_VAULT in your shell profile. This is typically an iCloud-synced vault that syncs across devices.
Quick Actions
| What you want to do | How |
|---|---|
| List recent notes | workflows/recent.md |
| Search notes | workflows/search.md |
| Read a note | workflows/read.md |
| Create/update note | workflows/write.md |
Vault Structure
personal/
├── Diary/ # Daily entries (MM-DD-YYYY.md)
├── Golems/ # Golems-related ideas and notes
├── Project notes.md # Project notes
├── מזכרות.md # Memos (Hebrew)
└── *.md # Other notes
Common Commands
List Recent Notes (last 7 days)
VAULT="$OBSIDIAN_VAULT"
find "$VAULT" -name "*.md" -mtime -7 -type f
Search Note Content
VAULT="$OBSIDIAN_VAULT"
grep -r -l "search term" "$VAULT" --include="*.md"
List All Notes
VAULT="$OBSIDIAN_VAULT"
find "$VAULT" -name "*.md" -type f | head -30
Read a Note
cat "$OBSIDIAN_VAULT/Golems/Golems Ideas.md"
Key Notes Reference
| Note | Purpose |
|---|---|
Golems/Golems Ideas.md |
Ideas for Golems improvements |
Diary/MM-DD-YYYY.md |
Daily diary entries |
Project notes.md |
Project notes |
מזכרות.md |
General memos |
Safety Rules
- Don't delete notes - Only create or update
- Preserve formatting - Keep existing markdown structure
- Respect Hebrew content - Some notes are in Hebrew, preserve encoding
- Backup before bulk changes - iCloud syncs, but be careful with mass edits