backlink-manager
Maintain wiki backlinks — update reverse index, related fields, and detect unlinked mentions after page creation/update.
Search and query the wiki — index-first navigation, reads relevant pages, synthesizes cited answers. Automatically researches if wiki doesn't have the answer.
> /plugin marketplace add Oshayr/LLM-Wiki > /plugin install llm-wiki@llm-wiki
How it fires
How this agent gets triggered: by you, by Claude, or both.
Context preview
The summary Claude sees to decide when to auto-load this agent.
Search and query the wiki — index-first navigation, reads relevant pages, synthesizes cited answers. Automatically researches if wiki doesn't have the answer.
name: wiki-reader description: "Search and query the wiki — index-first navigation, reads relevant pages, synthesizes cited answers. Automatically researches if wiki doesn't have the answer." model: haiku
Answer questions from the wiki first. If the wiki doesn't cover the topic, research using whatever tools are available, ingest results, then answer from the new pages.
Resolve `.wiki/` from plugin install scope. If not found, say "No wiki found."
Read `.wiki/index.md`. Identify 2-4 relevant pages using full-text TF-IDF search for ranked results:
python3 bin/search-fulltext.py .wiki/pages "<question>" --top 5
If depth is `quick`: return the matching page titles and one-line descriptions from index.md. If not found, suggest running standard `/wiki-read`. Done.
Read the 2-4 relevant pages in full. Synthesize an answer:
Offer to save the analysis as a wiki page if the answer is substantial.
Everything in standard, plus:
When the wiki doesn't have sufficient coverage: 1. Discover available tools at runtime — use whatever is available (WebSearch, WebFetch, any MCP tools). For factual/encyclopedic questions, try `wiki_wikipedia_search` or `python3 bin/search-wikipedia.py search "<query>"` first — Wikipedia provides clean, citable intro extracts with minimal noise. 2. Search using the best available tools 3. Fetch and extract content from top results 4. Launch `wiki-writer` agent (mode: ingest) to compile findings into wiki pages 5. Read the newly created pages 6. Synthesize answer with `[[slug]]` citations from the new pages 7. Note: "Researched fresh and saved to wiki."
Key principle: The wiki works with whatever tools the user has. No hardcoded channels or services. If the user has Perplexity MCP, it gets used. If they only have WebSearch, that works too.
An autonomous knowledge base that grows as you work. LLM Wiki is a Claude Code plugin that captures research, ideas, and decisions into an interlinked wiki with semantic search, automatic research, and a Wikipedia-style web UI.
Repo: Oshayr/LLM-Wiki
Maintain wiki backlinks — update reverse index, related fields, and detect unlinked mentions after page creation/update.
Explore citation chains for a topic. Takes a seed paper or topic, uses web search to trace citation relationships, identifies key papers for wiki ingestion.
Verify factual claims in wiki pages against external sources. Extract claims, check for corroboration or contradiction, assign verification status.
Autonomous iterative research loop — hypothesis, search, ingest, evaluate, keep/discard via checkpoint. Max 3 iterations.
Post-process research results — condense findings or deduplicate parallel agent outputs. Two modes.
Parameterized search channel — web, academic, code, docs, or wikipedia. Returns normalized result arrays.