Claude-skills wiki-query
Query the LLM Wiki — reads index.md first, drills into 3-10 relevant pages, synthesizes an answer with inline [[wikilink]] citations, and offers to file the answer back as a new comparison or synthesis page. Usage /wiki-query "<question>"
install
source · Clone the upstream repo
git clone https://github.com/alirezarezvani/claude-skills
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/alirezarezvani/claude-skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/.gemini/skills/wiki-query" ~/.claude/skills/alirezarezvani-claude-skills-wiki-query && rm -rf "$T"
manifest:
.gemini/skills/wiki-query/SKILL.mdsource content
/wiki-query
Ask the wiki a question. The librarian reads
index.md first, picks relevant pages across categories, synthesizes an answer with citations, and offers to file the answer back into the wiki so your explorations compound.
Usage
/wiki-query "<your question>" /wiki-query "what does the wiki say about sparse autoencoders?" /wiki-query "compare monosemanticity and polysemanticity across my sources" /wiki-query "which sources disagree on scaling laws?" /wiki-query "give me a comparison table of SAE vs linear probing"
What happens
- Index-first read — reads
to find relevant pageswiki/index.md - Drill-in — reads 3-10 pages in full (synthesis + concepts + sources + entities)
- Follow links — opportunistically follows wikilinks between pages
- Fallback search — if the index isn't enough, runs
(BM25)scripts/wiki_search.py - Synthesize — composes a direct answer + supporting detail + inline
citations + "Related pages" section[[sources/xxx]] - Offer to file back — asks whether to save this as a new wiki page (usually in
orcomparisons/
)synthesis/
Output formats
The answer's format follows the question:
| Question shape | Output |
|---|---|
| "What is X?" | Markdown explanation with citations |
| "A vs B" | Comparison table |
| "Give me a slide deck on X" | Markdown synthesis → to render |
| "Chart the trend in X" | Python script + saved chart in |
Sub-agent
This command dispatches the
wiki-librarian sub-agent. See agents/wiki-librarian.md.
Scripts
— BM25 fallback searchengineering/llm-wiki/scripts/wiki_search.py
— log filed answersengineering/llm-wiki/scripts/append_log.py
Rules
- Read the index first. No grep-everything.
- Every claim cites a page with a
.[[wikilink]] - Offer to file the answer back — but only for substantive answers worth keeping.
Skill Reference
→
engineering/llm-wiki/SKILL.md
→ engineering/llm-wiki/references/query-workflow.md