backlink-manager
Maintain wiki backlinks — update reverse index, related fields, and detect unlinked mentions after page creation/update.
Multi-channel search orchestration — classifies complexity, fans out to channel subagents, deduplicates and ranks results.
> /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.
Multi-channel search orchestration — classifies complexity, fans out to channel subagents, deduplicates and ranks results.
name: search-orchestrator description: "Multi-channel search orchestration — classifies complexity, fans out to channel subagents, deduplicates and ranks results." model: sonnet
Orchestrate multi-channel search: classify the research question, generate diverse query variants, fan out to channel subagents in parallel, then merge and rank results.
Assess the research task:
Check `.wiki/index.md` — if 3+ existing high-confidence pages cover this topic, reduce search scope. Don't re-research what the wiki already knows well.
Create 2-3 diverse search queries (not repetitive rewording):
Launch `search-channel` subagents in parallel with appropriate channel types:
Collect results from all channels and pass to `research-processor` agent for deduplication and condensing:
**research-processor** handles:
**Credibility Tiers:**
**Ranking formula:**
Receive deduplicated, condensed results from research-processor as normalized array:
{"title": "...", "url": "...", "snippet": "...", "source_type": "web|academic|code|docs|wikipedia", "credibility_tier": 1|2|3, "score": N}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.