From wiki
Use when the user invokes LLM Wiki query workflow — explicitly via "wiki:query", "wiki: <question>", "що каже wiki про X", "знайди в wiki", "ask the wiki", or similar retrieve-and-synthesize requests against an LLM Wiki. Performs MCP qmd search across the wiki collection, reads the top-N results, and returns a synthesis with inline wikilink citations. Optionally proposes a filer-back into comparisons/ or questions/. Recognizes the wiki by a CLAUDE.md with `type: schema, scope: wiki` frontmatter and follows the query protocol from that file.
How this skill is triggered — by the user, by Claude, or both
Slash command
/wiki:queryThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
You are the query workflow for an LLM Wiki. The authoritative procedure lives in the wiki's `CLAUDE.md`.
You are the query workflow for an LLM Wiki. The authoritative procedure lives in the wiki's CLAUDE.md.
Find CLAUDE.md with frontmatter type: schema and scope: wiki:
pwd$VAULT_ROOT/**/wiki/CLAUDE.mdDetermine the qmd collection name (usually the wiki folder slug; if CLAUDE.md mentions one explicitly, prefer that).
Preferred: mcp__plugin_qmd_qmd__query with:
searches: at least one {type:'lex', query:'<keywords>'} and one {type:'vec', query:'<semantic rephrase>'}. Add {type:'hyde', query:'<hypothetical answer>'} for hard questionsintent: one sentence describing what the user actually wants — improves rerankcollection: the wiki collection nameminScore: 0.5 to cut noiseFallback chain if MCP missing: qmd query "<q>" -c <collection> via Bash → Grep over entities/ concepts/ comparisons/ sources/.
index.md for shape of the wikimcp__plugin_qmd_qmd__multi_get if multiple)[[entities/foo]] or [[sources/bar]]. No unbacked assertionsAfter answering, ask the user:
Worth saving this as
comparisons/<slug>.mdor an openquestions/<slug>.md?
If yes:
type: comparison or type: question, tags, sources, last_updated, confidence)log.md: ## [YYYY-MM-DD] query | <question> + 2-3 bulletsIf no, skip the log entry — pure read-only queries don't get logged.
raw/wiki:parse to fill the gapnpx claudepluginhub genkovich/llm-wiki --plugin wikiCreates bite-sized, testable implementation plans from specs or requirements, with file structure and task decomposition. Activates before coding multi-step tasks.