← ClaudeAtlas

deep-researchlisted

Deep research harness — fan-out web searches, fetch sources, adversarially verify claims, synthesize a cited report. When the user wants a deep, multi-source, fact-checked research report on any topic. BEFORE invoking, check if the question is specific enough to research directly — if underspecified (e.g., "what car to buy" without budget/use-case/region), ask 2-3 clarifying questions to narrow scope. Then pass the refined question as args, weaving the answers in.
ek33450505/claude-agent-team · ★ 8 · AI & Automation · score 81
Install: claude install-skill ek33450505/claude-agent-team
# Deep Research Skill A multi-agent research harness: it decomposes a question into search angles, fans out parallel web searches, fetches and extracts falsifiable claims from sources, **adversarially verifies** every claim with a 3-vote skeptic panel, and synthesizes a cited report. The workflow lives in [`deep-research.workflow.js`](deep-research.workflow.js) next to this file. It is the **single source of truth** for the harness — edit it there, then (if you keep a repo copy) run `bash install.sh` to redeploy. ## Usage ``` /deep-research <your research question> ``` ## How to run it 1. **Scope-check first.** If the question is underspecified (missing budget, region, use-case, timeframe, etc.), ask the user **2-3 clarifying questions** before running. Then fold the answers into a single refined question string. 2. **Invoke the workflow** via the Workflow tool, pointing `scriptPath` at the workflow file in this skill's directory and passing the refined question as `args`: ``` Workflow({ scriptPath: "~/.claude/skills/deep-research/deep-research.workflow.js", // expand ~ to $HOME args: "<the refined research question>" }) ``` Pass the question as a plain string in `args` (not JSON-encoded). The workflow reads it via the global `args`. This skill's instruction to call Workflow is itself the explicit opt-in for multi-agent orchestration. 3. **Relay the result.** The workflow returns `{ summary, findings, refuted, unverified, so