plugins/obsidian-and-notes/skills/vault-search/SKILL.md
Advanced Obsidian vault search by tag, text, backlinks, orphans, or dead ends. Use when the user says "find notes tagged", "search by property", "what links to", "show backlinks", or "vault search".
npx skillsauth add arosenkranz/claude-code-config vault-searchInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Refer to ~/.claude/skills/obsidian-core/SKILL.md for CLI patterns, preflight checks, and error handling.
Parse the user's request and route to the appropriate CLI command:
Triggers: "find notes tagged X", "notes with tag X", "#X notes"
obsidian tag name="<tag>" verbose 2>/dev/null
Triggers: "search for X", "find notes about X", "where do I have notes on X"
obsidian search:context query="<text>" format=json limit=20 2>/dev/null
Triggers: "search for X in Sessions", "find X in Datadog folder"
obsidian search:context query="<text>" path="<folder>" format=json limit=20 2>/dev/null
Triggers: "what links to X", "show backlinks for X", "which notes reference X"
Use path= when the user provides a file path:
obsidian backlinks path="<note-path>" counts 2>/dev/null
Use file= when the user provides a note name (fuzzy match):
obsidian backlinks file="<note name>" counts 2>/dev/null
Triggers: "show orphans", "notes with no links", "disconnected notes"
obsidian orphans 2>/dev/null
Triggers: "show dead ends", "notes that link nowhere", "notes with no outgoing links"
obsidian deadends 2>/dev/null
tools
Lightweight orchestrator for spec-before-plan workflow. Use when starting a feature with ambiguous requirements. Walks SPEC.md → PLAN.md → execute, delegating to /superpowers:writing-plans and /superpowers:executing-plans. Invoke when asked to "spec this out", "spec-first", "spec and plan for X", or when feature requirements are vague.
tools
Problem Statement Co-Authoring Skill
development
Structure and maintain professional brag documents with clear templates for accomplishments, projects, and growth tracking. Use when documenting achievements, creating brag document entries, formatting accomplishments, or tracking career progress.
development
Analyze technical documentation for clarity, conciseness, and effectiveness using Google Technical Writing principles. Use when reviewing documentation, checking writing quality, improving docs, or providing writing feedback.