What problem does it solve? Managing an Obsidian vault from an AI agent often fails due to shell quoting issues, unexpanded environment variables, and paths containing spaces. This Skill provides a filesystem-first workflow for reliably reading, searching, creating, and editing notes without fragile shell commands. ## Core Features & Use Cases - Note Reading & Listing: Read notes with line numbers via read_file and list markdown files with search_files instead of cat, find, or ls. - Content Search: Search note contents with regex patterns restricted to markdown files using search_files with target: "content". - Note Creation & Editing: Create notes with write_file, append content with anchored patch edits, and link related notes using [[wikilink]] syntax. - Use Case: Ask the agent to find every note mentioning a project name, then create a new meeting note in the vault that wikilinks to each matching project note. ## Quick Start Resolve the vault path from the OBSIDIAN_VAULT_PATH environment variable, then use the obsidian skill to search all markdown notes for a topic and create a new linked note with the findings.