.claude/skills/query/SKILL.md
--- name: query description: Ask questions against an LLM Wiki vault and get synthesized answers with citations. Optionally save answers back into the wiki. Use when user wants to query, ask, search, or explore their knowledge base. argument-hint: "<question>" [--vault <name>] [--save] disable-model-invocation: true allowed-tools: Bash(git *) Read Write Edit Glob Grep --- # Query Wiki Ask questions against a vault's wiki and get synthesized answers with citations. ## Usage ``` /query "What d
npx skillsauth add RonanCodes/llm-wiki .claude/skills/queryInstall 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.
Ask questions against a vault's wiki and get synthesized answers with citations.
/query "What deployment patterns have we seen?" --vault my-research
/query "Compare framework A vs B" --vault my-research --save
/query "Who are the key people in this space?" --vault my-research
--vault <name> — target vault (if omitted, use sole vault or ask)--save — file the answer back into the wiki as a new pageRead vaults/<vault>/wiki/index.md to get an overview of all pages in the wiki. This is the primary discovery mechanism.
cat "vaults/<vault>/wiki/index.md"
Based on the question and the index, identify which wiki pages are most likely to contain relevant information. Consider:
Read the identified pages (typically 3-10 pages depending on question complexity):
cat "vaults/<vault>/wiki/sources/<page>.md"
cat "vaults/<vault>/wiki/entities/<page>.md"
cat "vaults/<vault>/wiki/concepts/<page>.md"
Provide a comprehensive answer that:
Format the answer in clean markdown with headings and structure appropriate to the question.
If --save is set, file the answer into the wiki:
Determine page type:
wiki/comparisons/<topic>.mdwiki/<topic>-analysis.md (summary type)Create the page with proper frontmatter per wiki-templates:
page-type: comparison or summarysources lists all wiki pages cited in the answerdomain inherited from vault + any additionalrelated links to pages referencedUpdate wiki/index.md with the new entry
Append to log.md:
## [YYYY-MM-DD] query | <Question summary>
- Question: "<full question>"
- Answer saved to: [[page-name]]
- Pages referenced: [[page-1]], [[page-2]], ...
---
cd "vaults/<vault>"
git add .
git commit -m "📝 docs: query — <question summary>"
/search skill (qmd) will provide better page discovery than scanning index.mddata-ai
Extract transcript from a YouTube video as clean readable text. Use when user shares a youtube.com or youtu.be link and wants the transcript, content summary, or to read what was said.
development
Page type templates and frontmatter conventions for LLM Wiki pages. Reference skill loaded by ingest, query, and lint skills to ensure consistent wiki structure.
testing
Show status of all LLM Wiki vaults — page counts, source counts, last activity, and git status. Use when user wants to see vault status, list vaults, or check wiki health.
documentation
Import an existing Obsidian vault, markdown folder, or git repo as an llm-wiki vault. Moves content into vaults/, adds missing structure (index, log, CLAUDE.md, frontmatter). Use when user wants to import, adopt, migrate, or bring in an existing knowledge base.