obsidian-vault-location

Locates the Obsidian app, vault paths, and note files on macOS.

60|11|Updated Jun 15, 2026
One-click install
npx skills add https://github.com/matyasstoch/david-skills --skill obsidian-vault-location-matyasstoch
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: obsidian-vault-location
Source: https://github.com/matyasstoch/david-skills/tree/main/skills/obsidian-vault-location
Command: npx skills add https://github.com/matyasstoch/david-skills --skill obsidian-vault-location-matyasstoch

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? It answers where Obsidian is installed and where David's notes, journal, and private writing live, so notes can be found, read, or edited without guessing paths. ## Core Features & Use Cases - Vault Path Reference: Points to the main vault at ~/Documents/notes/private_writing and the Obsidian config file listing active vaults. - Vault Structure Map: Documents monthly journal folders, timeless notes, private notes, prompts, and keyboard shortcut notes. - Note Search Command: Provides a find command that searches notes by keyword while excluding the .obsidian config directory. - Use Case: When asked "where did I write about plane topics", use the documented structure and find command to locate PLANE TOPICS.md inside the timeless folder. ## Quick Start Find my Obsidian note about original thoughts and show me its contents.

Frequently Asked Questions about obsidian-vault-location

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I find where my Obsidian vault is located on macOS?▼

Obsidian stores active vault paths in ~/Library/Application Support/obsidian/obsidian.json. The main vault here lives at ~/Documents/notes/private_writing, containing journal and writing notes as Markdown files.

How to search Obsidian notes by keyword from the command line?▼

Run find "$HOME/Documents/notes/private_writing" -iname "*keyword*" -not -path "*/.obsidian/*" to match note filenames by keyword. Quote paths because note titles contain spaces, and exclude the .obsidian config directory.

Where is the Obsidian app installed on macOS?▼

The Obsidian application is installed at /Applications/Obsidian.app. Its configuration, including the list of active vault paths, is stored in ~/Library/Application Support/obsidian/obsidian.json.

What folders exist inside this Obsidian vault?▼

The vault contains monthly journal folders like 01-2026, a timeless folder for permanent notes, a private folder for sensitive notes, a prompts folder, and a keyboard_shortcuts folder. All notes are Markdown files.

Why does my note search return .obsidian config files?▼

The .obsidian directory inside the vault stores workspace settings, not notes. Add -not -path "*/.obsidian/*" to the find command to exclude it and return only actual Markdown notes.