From llm-wiki
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>"
How this command is triggered — by the user, by Claude, or both
Slash command
/llm-wiki:wiki-queryThe summary Claude sees in its command listing — used to decide when to auto-load this command
# /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 ## What happens 1. **Index-first read** — reads `wiki/index.md` to find relevant pages 2. **Drill-in** — reads 3-10 pages in full (synthesis + concepts + sources + entities) 3. **Follow links** — opportunistically follows wikilinks between pages 4. **Fallback search** — if the index isn't enough, runs `scripts/wiki_search.py` (BM25) 5. **Synthes...
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.
/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"
wiki/index.md to find relevant pagesscripts/wiki_search.py (BM25)[[sources/xxx]] citations + "Related pages" sectioncomparisons/ or synthesis/)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 → /wiki-marp to render |
| "Chart the trend in X" | Python script + saved chart in wiki/assets/charts/ |
This command dispatches the wiki-librarian sub-agent. See agents/wiki-librarian.md.
engineering/llm-wiki/scripts/wiki_search.py — BM25 fallback searchengineering/llm-wiki/scripts/append_log.py — log filed answers[[wikilink]].→ engineering/llm-wiki/SKILL.md
→ engineering/llm-wiki/references/query-workflow.md
npx claudepluginhub pavlov-pablo/ali-rezavani-claude-skills --plugin llm-wiki/wiki-querySearches the compiled wiki to answer questions with citations from topic articles. Can also file synthesized answers back into the wiki.
/wiki-queryAnswers a question by searching wiki index, reading 1-3 relevant pages, and synthesizing a response with citations. Logs query and offers to save as new page.