/obsidian
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.
$ golems-cli skills install obsidianUpdated 2 weeks ago
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
Full SKILL.md source — includes LLM directives, anti-patterns, and technical instructions stripped from the Overview tab.
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 fSearch 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 -30Read 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
Best Pass Rate
100%
Opus 4.6
Assertions
9
6 models tested
Avg Cost / Run
$0.1645
across models
Fastest (p50)
2.1s
Kiro
Behavior Evals
Phase 2 baseline — skill quality on ClaudeBehavior Baseline
Adapter Evals
Phase 2C — cross-AI portabilityAdapter Portability
| Assertion | Opus 4.6 | Sonnet 4.6 | Haiku 4.5 | Gemini 2.5 | Cursor | Kiro | Consensus |
|---|---|---|---|---|---|---|---|
| uses-icloud-vault-path | 4/6 | ||||||
| targets-diary-subfolder | 5/6 | ||||||
| uses-date-format-MM-DD-YYYY | 5/6 | ||||||
| writes-to-golems-subfolder | 6/6 | ||||||
| uses-exact-icloud-vault-path | 4/6 | ||||||
| does-not-delete-existing-notes | 5/6 | ||||||
| searches-vault-not-filesystem | 3/6 | ||||||
| searches-md-files-only | 6/6 | ||||||
| returns-file-paths-with-context | 4/6 |
Token Usage
Cost per Run
| Model | Input Tokens | Output Tokens | Cost / Run | Cost / 1K Runs |
|---|---|---|---|---|
| Opus 4.6 | 10,073 | 7,326 | $0.7005 | $700.50 |
| Sonnet 4.6 | 3,403 | 3,987 | $0.0700 | $70.00 |
| Haiku 4.5 | 1,995 | 2,043 | $0.0031 | $3.10 |
| Gemini 2.5 | 3,793 | 4,223 | $0.0517 | $51.70 |
| Cursor | 5,726 | 7,731 | $0.1466 | $146.60 |
| Kiro | 1,194 | 970 | $0.0152 | $15.20 |
Response Time (p50)
Response Time (p95)
| Model | p50 | p95 | Overhead |
|---|---|---|---|
| Opus 4.6 | 5.5s | 9.9s | +80% |
| Sonnet 4.6 | 2.2s | 3.4s | +54% |
| Haiku 4.5 | 4.2s | 7.5s | +79% |
| Gemini 2.5 | 2.7s | 4.3s | +59% |
| Cursor | 3.3s | 5.5s | +64% |
| Kiro | 2.1s | 3.0s | +42% |
Last evaluated: 2026-03-12 · Data is generated from skill assertions (real cross-model benchmarks coming soon)
Changelog entries are derived from eval runs and skill version updates. Full cascading changelog (Phase 4D) coming soon.
Best Pass Rate
100%
Assertions
9
Models Tested
6
Evals Run
3
- +Initial release to Golems skill library
- +9 assertions across 3 eval scenarios
- +4 workflows included: search, recent, read, write