Deep Research — Iterative Research Engine

SkillSearch

Autonomous multi-step deep research engine implementing an iterative Think → Search → Extract → Synthesize → Stop loop. The LLM drives every decision: what to search, what's relevant, what's missing, and when to stop. Produces a cited, magazine-quality report with inline citations, category- specific formatting, and research stats. Trigger when the user asks for "deep research", "research report on", "comprehensive analysis of", "look into X in depth", "write a report on X", or any question needing multi-source synthesis beyond a single search. For entity vetting/dossiers use entity-research; for news digests use news-monitoring; for source-grounded Q&A use notebooklm-mode.

Available today. Use it from your connected AI after setup.

Connect ahel once, and every AI you use reads what you have installed.

Then ask your AI: use the Deep Research — Iterative Research Engine skill

What this skill tells your AI

The instructions your AI receives, as published by moonlight-lupin/agent-skills in research/deep-research/SKILL.md and read by ahel’s review.

An autonomous, multi-step research engine that performs exhaustive information gathering and synthesis. Unlike a single web_search, this skill implements an iterative loop where the agent plans, searches, extracts, synthesizes, and decides when to stop — producing a cited report with structured evidence, source quality tiers, and explicit gaps/contradictions sections.

Inspired by PewDiePie's Odysseus project, Alibaba/Tongyi's IterResearch approach, and the sn-deep-research evidence-structuring architecture (OpenSenseNova/SenseNova-Skills, MIT). The full 9-role sn pipeline was evaluated and intentionally NOT adopted — only the evidence.json layer and refute-polarity requirement were ported, based on empirical side-by-side testing (July 2026). See references/structured-evidence-format.md.

v1.2.0 changes (July 2026): overview-first report structure (comparison table right after executive summary), language anchoring (BCP 47), structured evidence step (3e), refute polarity requirement, source quality classification, explicit contradictions + gaps sections. Architecture diagram corrected.

v1.3.0 changes (July 2026): source quality ranking and weighting — primary (3×) > secondary (2×) > tertiary (1×). Conflict resolution by quality tier. Quality distribution check (healthy/acceptable/weak) before writing. Tertiary source overreliance pitfall. Source table now shows quality distribution summary. Prompted by user noting too many tertiary sources in the self-hosting vs API report.

v1.5.0 changes (July 2026): adaptive depth (complexity-based round caps), optional clarification phase (Step 0), token budget awareness, numbered citations, progressive empty-search refinement, explicit synthesis prompt structure. Concepts adapted from DocsGPT's ResearchAgent (arc53/DocsGPT, MIT). See references/docsgpt-concepts.md for the concept mapping.

When to use

  • User asks for "deep research", "research report", "comprehensive analysis"
  • User wants a written report on a topic (not just a quick answer)
  • Question requires multi-source synthesis with citations
  • User says "look into X in depth" or "write a report on X"

When NOT to use

  • Entity vetting/dossiers → use entity-research (has sanctions screening, structured lenses)
  • Recurring news digests → use news-monitoring (has cron, dedup, multi-language)
  • Source-grounded Q&A from collected sources → use notebooklm-mode (has vault + RAG)
  • Quick factual question → just use web_search directly
  • Single-source extraction → use web_search + web_extract

Architecture

User question
  → Step 0: Clarification (optional — assess if question is too vague)
  → Step 1: Plan (sub-questions, key topics, success criteria, category, language, complexity)
  → Step 2: Date grounding + language anchor
  → Step 3: Iterative loop (max rounds = complexity cap: simple=2, moderate=3, complex=5)
      ├─ 3a: Generate gap-driven queries (incl. refute queries from round 2+, empty-search refinement)
      ├─ 3b: Search (web_search) + fetch (web_extract)
      ├─ 3c: Quality filter + extraction + source quality classification + numbered citations
      ├─ 3d: Synthesize into cumulative research state (with token budget check)
      ├─ 3e: Structured evidence (optional: evidence.json for 5+ sources)
      └─ 3f: Stopping check (LLM evaluates coverage + token budget)
  → Step 4: Final report (overview-first structure, see template)
  → Step 5: Stats summary

Report output order (overview-first): Executive Summary → comparison/overview table → detailed analysis per sub-question → contradictions → gaps → conclusion → source table. Readers get the answer and the at-a-glance comparison before the detailed reasoning.

Step 0 — Clarification (optional)

Before planning, assess whether the question is specific enough to research productively. This step prevents wasting rounds on a question that's too vague.

When to clarify:

  • The question is 1-5 words with no scope ("research AI", "tell me about quantum computing")
  • The question could mean very different things depending on intent ("is X good?" — good for what? for whom?)
  • The question lacks a clear angle ("look into climate change" — scientific? policy? economic?)

When NOT to clarify:

  • The question already has sub-questions or specific parameters
  • The user explicitly says "just research it" or "don't ask, just go"
  • The question is specific enough to generate productive search queries immediately
  • The question is a simple factual lookup ("what is the latest version of X?", "when did Y happen?") — even if short, if the intent is clear, proceed
  • The user is responding to a prior clarification (don't loop)

How: Present 1-3 short questions to the user that would narrow the scope. Keep it brief — this is a scope check, not an interview:

"Before I start researching, I'd like to clarify:

  1. [narrowing question 1]
  2. [narrowing question 2]

Please provide these details and I'll begin."

If the question is already specific, skip this step entirely and proceed to Step 1.

Step 1 — Research Plan

Before searching, break the question into a research plan. Output:

## Research Plan
Question: [user's question]
Date: [current date]
Language: [BCP 47 tag — e.g. en, zh-Hans, ja. Detect from query; user's explicit language preference overrides. Use consistently throughout the report.]

Sub-questions:
1. [specific sub-question 1]
2. [specific sub-question 2]
3. [specific sub-question 3]
4. [up to 6 total]

Key topics:
- [topic 1]
- [topic 2]

Success criteria:
- [what would comprehensive coverage look like?]
- [minimum: each sub-question has ≥1 source]

Report category: [factual | comparison | product | how-to | fact-check | explainer]

Complexity: [simple | moderate | complex]

Complexity assessment and adaptive depth: Classify the question's complexity to determine the maximum number of research rounds. This prevents over-searching simple questions and under-searching complex ones.

ComplexityMax roundsWhen to use
simple2Single-factual question, narrow scope, 1-2 sub-questions. Example: "What is the latest version of Python?"
moderate3Multi-faceted question, 3-4 sub-questions, comparison or how-to. Example: "Compare Qdrant vs pgvector for RAG"
complex5Broad scope, 5-6 sub-questions, requires deep synthesis across domains. Example: "Comprehensive analysis of the self-hosting vs managed API tradeoff for AI infrastructure"

The complexity cap is a maximum, not a target. The stopping check (Step 3f) still governs early termination. A simple question that finds comprehensive answers in 1 round should stop at 1 — the cap of 2 means it can go to 2 if needed, not that it must.

Language anchoring: Detect the output language from the query and normalize to a BCP 47 tag (e.g. en, zh-Hans, zh-Hant, ja). Use it consistently throughout — executive summary, analysis, contradictions, gaps, conclusion. Source titles, URLs, proper nouns, and code may stay in their original language; search queries may use any language that helps evidence gathering. If the user explicitly switches language mid-research, update the anchor and use the new language for all subsequent output.

Report category detection:

  • "vs", "compare", "better than" → comparison
  • "best", "top", "recommend", "buy" → product
  • "how to", "guide", "steps" → how-to
  • "is it true", "verify", "fact check" → fact-check
  • "what is", "explain", "overview" → explainer
  • default → factual

Step 2 — Date Grounding

Inject the current date before any search. This is mandatory — LLMs default to training-cutoff years, producing stale queries.

Today's date is {current date as "DD Month YYYY"}. When a search query needs a year or refers to "latest"/"current"/"this year", use {current year} or relative wording — never a year inferred from training data.

Step 3 — Iterative Loop

Round structure

Each round follows: Query → Search → Extract → Synthesize → Check Stop

Run max N rounds where N = complexity cap from Step 1 (simple=2, moderate=3, complex=5). Most topics converge in 2-3 rounds. The cap is a ceiling, not a target.

3a — Query Generation (gap-driven)

Generate 2-4 search queries per round. Round 1 targets the sub-questions from the plan. Round 2+ targets gaps identified in the previous synthesis.

Before generating queries, review:

  • Original question and research plan
  • Current research state (what's already found)
  • Round number
  • What's still missing

Generate queries that target the gaps, not repeat what's already found.

Refute polarity requirement: Round 2+ must include at least one query targeting counter-evidence, opposing viewpoints, or criticisms of the leading hypothesis. If no counter-evidence is found after searching, note it explicitly in the synthesis — refute count = 0 usually means you didn't search well, not that no counter-evidence exists. This prevents confirmation-biased research.

Progressive empty-search refinement: When a search returns no useful results, escalate the refinement strategy across consecutive empty results:

  1. First empty result: Try a broader query or different keywords (synonyms, related terms, different phrasing)
  2. Second consecutive empty: Try a fundamentally different angle — different domain, different language, or reframe the sub-question entirely. Inject: "Previous search also returned no results. Try a very different query with different keywords, or broaden your search terms."
  3. Third consecutive empty: Move on. This sub-question may not have publicly searchable answers. Document it as a gap in the synthesis rather than burning more rounds on dead-end queries.

3b — Search and Fetch

web_search(query="...", limit=10)

Run one web_search per query. From the results, pick 3-5 URLs per round to fetch in full:

web_extract(urls=["url1", "url2", "url3"])

Track URLs already fetched — do not re-fetch the same URL across rounds. Maintain a mental list of analyzed URLs.

3c — Quality Filter and Extraction

Before extracting content, discard low-quality results:

  • Thin content: landing pages, aggregator stubs, <100 words of substantive text
  • Irrelevant: keyword overlap without topical relevance. Use word-boundary matching for topic terms — "port" should not match "transport" or "support"
  • Duplicate URLs: already fetched in a previous round
  • Non-text: video-only pages, image boards, login walls with no preview

For each quality source, extract goal-relevant facts:

  • What facts in this source address a sub-question from the research plan?
  • Ignore noise, navigation, ads, boilerplate
  • Prefer specific data, statistics, named sources, dates over vague claims
  • Record the source URL and title with each extracted fact. Assign each unique source a numbered citation [1], [2], etc. on first encounter — reuse the same number for subsequent facts from the same source. This produces cleaner inline citations than full URLs (especially on mobile/messaging platforms) and matches academic/magazine citation style. Deduplicate by URL: the same URL seen twice gets the same number.
  • Classify source quality for each source: primary (official docs, model cards, SEC filings, original papers), secondary (tech journalism, analyst reports, reviews), tertiary (Wikipedia, aggregators, forum posts). This tier appears in the final source table and signals evidence strength to the reader.
  • Grade each fact's evidence basis as you extract (see below) — you can't tag a report you didn't grade while reading

Evidence basis — the four-label discipline

Tag every material fact with the basis on which you're asserting it. A material fact is any substantive claim a reader would act on or challenge: a statistic, date, named entity or relationship, causal claim, or direct quote. This is deep-research's adaptation of pere-toolkit's canonical evidence discipline — the same four labels, applied to facts rather than financial figures.

LabelA fact is [LABEL] when it is…
[VERIFIED]corroborated across ≥2 independent, cited, dated sources
[SOURCED]stated by one named / cited source, not independently corroborated
[REASONED]your own analytical judgement or inference — not stated by any source
[ESTIMATED]a calculation or stated assumption (e.g. a figure you derived from source data)

Rules:

  • Lead on [VERIFIED] / [SOURCED]. Present [REASONED] / [ESTIMATED] claims as indicative ("likely", "suggests", "on these figures") — never as hard fact.
  • Use these four exact labels — never an improvised synonym ([Official], [Expert], [Consensus] → these are [SOURCED], or [VERIFIED] only if independently corroborated).
  • Don't restate precision you don't have — a source's "about half" is ~50% [SOURCED], not 50.0%.
  • Never fabricate to fill a gap — an unanswerable sub-question is a documented gap, not a [REASONED] guess dressed as fact.

Relationship to source-quality tiers: the primary/secondary/tertiary tier (above) classifies the source; the [VERIFIED]/[SOURCED]/[REASONED]/[ESTIMATED] label classifies the fact. They are orthogonal: a fact from a single primary source is [SOURCED] (strong source, but uncorroborated); the same fact from two independent primary sources becomes [VERIFIED]. Use both: tier in the source table, label inline on each claim.

3d — Synthesis

After extracting from all sources in the round, integrate findings into the cumulative research state:

Token budget awareness: Track approximate context consumption across rounds. If the cumulative research state + extracted content is approaching the model's context window or a self-imposed budget (suggested: ~50K tokens for moderate, ~100K for complex), prioritize synthesis and stopping over gathering more sources. When the budget is tight, summarize earlier rounds' findings more aggressively rather than carrying full extracts forward.

Rough estimation heuristic: You can't count tokens precisely, but you can estimate: each web_extract returning ~5K characters contributes ~1.5K tokens; the research state after N rounds with 3-5 sources per round is roughly N × 8-12K tokens. If you're on round 3+ of a complex topic and the last web_extract returned >10K characters, you're likely past 50K — summarize aggressively and head toward synthesis. When in doubt, treat any round-3+ complex research as budget-tight.

## Research State (after Round N)
[evolving synthesis of all findings so far]

### Sub-question 1: [question]
Status: [answered / partially answered / unanswered]
Findings: [synthesized facts, each with a numbered inline citation [N] matching the source table, and an evidence-basis tag, e.g. "adoption grew 40% in 2025 [1] [VERIFIED]"]

### Sub-question 2: [question]
Status: [...]
Findings: [...]

### Gaps identified:
- [what's still missing for round N+1 to target]

Synthesis rules:

  • Deduplicate — if multiple sources say the same thing, cite the best one (or cite both for corroboration)
  • Resolve contradictions — if sources disagree, present both with attribution. Do not arbitrate silently.
  • Inline citations — every factual claim references its source using the numbered citation [N] assigned in §3c, matching the source table
  • Evidence basis — tag each material fact [VERIFIED] / [SOURCED] / [REASONED] / [ESTIMATED] (see §3c). A fact becomes [VERIFIED] only once ≥2 independent sources corroborate it; a single source is [SOURCED]. Corroboration during dedup is what promotes [SOURCED][VERIFIED].
  • Update gap list — what sub-questions are still unanswered or thin?

3e — Structured Evidence (recommended for reports with 5+ sources)

Before writing the final report, structure the extracted evidence into a lightweight evidence.json intermediate. This separates evidence gathering from report writing and makes fabrication detectable. See references/structured-evidence-format.md for the schema, source quality ranking/weighting rules, and worked example.

When to use: reports with 5+ sources, comparison/fact-check categories, or when the user may want to verify claims. Skip for quick 2-3 source reports.

Benefits validated in side-by-side testing (July 2026):

  • Forced claim precision (every assertion gets a kind + polarity + snippet)
  • Refute polarity requirement surfaced counter-evidence the iterative loop missed
  • Source quality tiers revealed evidence-strength gaps (too many tertiary sources)
  • Explicit gaps + contradictions sections in the final report
  • Full traceability: claim ID → snippet → source URL

Source quality ranking and weighting (see references/structured-evidence-format.md for full rules):

  • primary (3× weight): official docs, model cards, SEC filings, API pricing pages, original papers
  • secondary (2× weight): tech journalism, analyst reports, benchmark aggregators
  • tertiary (1× weight): Reddit, forums, Wikipedia, blog aggregators — useful for refute polarity and real-world anecdotes, but never the sole support for a factual claim if a primary/secondary source exists

Quality distribution check before writing the report:

  • Healthy: ≥30% primary, ≤30% tertiary → proceed
  • Acceptable: ≥1 primary for key claims, <50% tertiary → note thin primary coverage as a gap
  • Weak: 0 primary, >50% tertiary → flag in Gaps section and attempt to fetch primary sources (official docs, model cards, pricing pages) before finalizing. If primary sources are unavailable, qualify tertiary-sourced claims explicitly ("community reports suggest..." not "X is true")

Conflict resolution by quality: When sources disagree, primary > secondary > tertiary. 2 independent secondary sources ≈ 1 primary. Tertiary cannot override secondary/primary — it becomes refute counter-evidence or writing_context instead.

3f — Stopping Check

After synthesis (and optional evidence structuring), evaluate whether the report is comprehensive enough:

Given the research plan's success criteria:

  • Are all key sub-questions addressed with at least one source?
  • Are there significant gaps or unanswered aspects?
  • Is the evidence sufficient and corroborated?
  • Am I approaching the token budget? (tight context = prioritize synthesis)

Reply YES (stop) or NO (continue) + one-sentence reason.

Stop if:

  • All sub-questions have ≥1 source → YES
  • Most of the complexity cap used (e.g. round 2 of 2 for simple, round 3 of 3 for moderate) and remaining gaps are minor → YES
  • Complexity cap reached (simple=2, moderate=3, complex=5) → YES
  • Token budget approaching limit → YES (synthesize with what you have)
  • Web search returning diminishing returns (same URLs, no new info) → YES

Continue if:

  • Major sub-questions unanswered → NO
  • Contradictions unresolved → NO
  • Only 1-2 rounds done and topic is broad → NO

Step 4 — Final Report

Produce the final report. Minimum 800 words (scale with topic complexity).

Output order is overview-first: the reader gets the answer and the at-a-glance comparison before the detailed reasoning. Do not bury the comparison table after the per-topic analysis.

Carry each material fact's evidence-basis tag inline (§3c), lead on [VERIFIED] / [SOURCED], keep [REASONED] / [ESTIMATED] claims framed as indicative, and paste the Evidence key legend below the Sources table so the tags decode.

Synthesis prompt structure: When writing the final report, explicitly consult: (1) the original question, (2) the research plan (sub-questions, success criteria), (3) the cumulative research state from all rounds, (4) the evidence.json if produced, and (5) the numbered source list. Do not rely on the cumulative state alone if it has been compressed across many rounds — go back to the per-round findings to verify key claims. This prevents detail loss when the research state was aggressively summarized due to token budget pressure.

Structure

# [Report Title]

> **Research date:** [date] · **Rounds:** [N] · **Sources:** [N] · **Category:** [type]

## Executive Summary
[2-3 paragraph overview of key findings — the answer up front. If using structured evidence, note claim count and refute count here so the reader knows the evidence base.]

## [Comparison Table | Overview | Key Findings at a Glance]
[For comparison reports: a markdown table comparing options/entities across criteria. For factual/explainer reports: a numbered list of key findings with claim references. This section gives the reader the complete picture in one screen — the detailed analysis below is the supporting reasoning, not the main event. If using structured evidence, cite claim IDs like [c1], [c3] in table cells or list items.]

## [## Section per sub-question]
[Detailed analysis with inline citations — this is the supporting reasoning for the overview above. Each section traces back to the overview claims.]

### [### Subsections as needed]
[...]

## Contradictions
[If sources disagree, present both sides with attribution. Do not silently arbitrate. If no contradictions found, state "No direct contradictions between sources." This section is REQUIRED — its absence is a quality signal that counter-evidence wasn't searched.]

## Gaps
[What couldn't be determined from available sources. Each gap should note: what's unknown, why it matters, and whether it could be resolved with more research. If using structured evidence, reference the writing_context items. If no gaps, state "No significant gaps identified."]

## Conclusion
[Synthesis of findings, implications, remaining uncertainties — ties back to the executive summary and overview. The conclusion confirms or qualifies the overview, it doesn't introduce new analysis.]

---
## Sources

**Quality distribution:** [N] primary · [N] secondary · [N] tertiary — [healthy/acceptable/weak]

| # | Title | URL | Quality | Accessed |
|---|-------|-----|---------|----------|
| 1 | [title] | [url] | primary/secondary/tertiary | [date] |

**Citation format:** Inline citations use `[N]` matching the source table above. On first mention of a source, include `[N]` — subsequent mentions may use `[N]` alone. For claims from the same source, cite the number once per paragraph unless the source is paginated.

**Evidence key** — `[VERIFIED]` corroborated across ≥2 independent, cited, dated sources · `[SOURCED]` from one named source, not independently corroborated · `[REASONED]` analytical judgement / inference · `[ESTIMATED]` calculation or stated assumption.

Category-specific overview sections

CategoryOverview section format
comparisonMarkdown table comparing options across criteria, with a verdict row or column. The detailed sections below provide the reasoning per option.
productRanked list with pros/cons, price range, and a "top pick" callout. Detailed sections cover each product.
how-toNumbered overview of the steps. Detailed sections cover prerequisites, execution, and troubleshooting per step.
fact-checkEvidence for/against the claim in a two-column table, with a preliminary verdict. Detailed sections assess source credibility and reasoning.
explainerNumbered key findings or a "progressive depth" overview (simple → deep). Detailed sections go deeper per concept. Glossary if technical.
factualNumbered key findings with claim references. Detailed sections provide the supporting evidence per finding.

Fallback report

Shortened here. Read the whole file on GitHub.

Signals

GitHub stars
65
Forks
11
Last commit
Sep 2026
Hacker News mentions
1
Advanced
Catalog kind
skill
Gateway key
deep-research-moonlight-lupin
Source
github.com/moonlight-lupin/agent-skills