← ClaudeAtlas

research-intelligencelisted

Use when the user wants a research question investigated with a verifiable, cited evidence trail — "research X", "deep research on Y", "investigate Z and show sources", "give me a report with citations", or wants a synthesized answer with confidence levels rather than a raw search dump. For a single named source only ("just search the web", "just check GitHub", "just check Reddit"), let that specific source skill trigger directly instead — don't route those through this orchestrator.
ali-demirbas/research · ★ 0 · Code & Development · score 70
Install: claude install-skill ali-demirbas/research
# research-intelligence ## Overview Three stages: **Planner → Router → Synthesizer.** This file stays thin on purpose — sub-skills load only when actually dispatched, so a quick single-source request never pulls in the whole pipeline's token cost. See ../../ARCHITECTURE.md for the 13 locked rules everything below implements; this file doesn't restate them. ## Stage 1 — Planner Invoke `research-planner`. It decomposes the question into sub-questions, matches each to source skills, sets a search budget, and sets the stopping condition. **For anything beyond `quick-research`, it confirms the drafted scope with the user before dispatch** — a full pipeline can touch most of the 8 source skills and take a long time, and that's the cheap point to narrow it. Its output is a user-confirmed plan, written to the run's ledger — not evidence. ## Stage 2 — Router Dispatch the source skills the plan calls for: `web-research`, `github-research`, `reddit-research`, `blog-research`, `news-research`, `academic-research`, `official-source-research`, `social-research`. Invoke by name — never inline a source skill's procedure here; each loads only when actually needed for this run. Each source skill writes `evidence.jsonl` records with `verification_status: pending`. When the plan's stopping condition is met (constitution rule 11: every sub-question meets its bar, or 2 consecutive rounds with no new evidence), collection ends for that run. Then invoke `source-verify` on the full pending se