---
name: Deep Research
slug: deep-research-5
category: AI Engineering
description: Deep Research answers a question with a thorough, cross-checked, cited web-research report using search and fetch tools. Use it when you need current, verifiable information from the web.
github: "https://github.com/omnigent-ai/omnigent/tree/main/examples/deep-research/skills/deep-research"
language: Python
stars: 8855
forks: 1336
install: "npx degit https://github.com/omnigent-ai/omnigent/tree/main/examples/deep-research/skills/deep-research ~/.claude/skills/deep-research"
installs_to: ~/.claude/skills/deep-research
source_path: examples/deep-research/skills/deep-research/SKILL.md
collection_size: 24
category_size: 2451
collection_url: "https://dirskills.com/collections/omnigent-ai/omnigent"
added: 2026-08-15T06:50:43.505Z
last_synced: 2026-08-15T06:50:43.505Z
canonical_url: "https://dirskills.com/skills/deep-research-5"
---

# Deep Research

Deep Research answers a question with a thorough, cross-checked, cited web-research report using search and fetch tools. Use it when you need current, verifiable information from the web.

**Install:**

```bash
npx degit https://github.com/omnigent-ai/omnigent/tree/main/examples/deep-research/skills/deep-research ~/.claude/skills/deep-research
```

## README

# deep-research — cited, cross-checked web research

Use this for any question that needs current, verifiable information from the
web. The deliverable is a synthesized answer where every load-bearing claim is
backed by a source you actually read.

## Tools
- `search_web_pages(query, [site], [published_after], [published_before], [mode])`
  — discover candidate sources. Write the `query` as a natural-language
  description of the ideal page, not keywords. Use `mode: pro` (default).
- `fetch_page_content(url, [max_chars])` — read the full page (markdown). A
  search snippet is NEVER sufficient evidence — fetch before you cite.

## Procedure
1. **Plan.** Break the question into 3-6 focused sub-queries that together
   cover it. For contested or high-stakes questions, plan at least two
   independent angles.
2. **Search.** Run `search_web_pages` per sub-query. Prefer primary sources;
   use `published_after` for anything time-sensitive.
3. **Read.** `fetch_page_content` on the 2-3 most promising results per
   sub-query. Quote/cite only what you read, not what a snippet implied.
4. **Cross-check.** Verify every load-bearing claim against ≥2 INDEPENDENT
   sources (independent = different owners, not mirrors of one another). When
   sources disagree, surface the disagreement rather than picking silently.
5. **Synthesize.** Write a structured answer. Each non-obvious claim gets an
   inline citation to the URL you fetched. Separate "well-supported" from
   "uncertain / single-source".
6. **Cite.** End with a `Sources` list of the URLs you actually fetched.

## Notes
- Don't answer from prior knowledge with a disclaimer — search and read first.
- If coverage is thin or sources conflict irreconcilably, say so explicitly;
  an honest "the evidence is mixed" beats false confidence.
- Keep each sub-query narrow enough that a couple of fetches resolve it.
