Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
affaan-m avatar

Deep Research

  • 5.7k installs
  • 234k repo stars
  • Updated July 27, 2026
  • affaan-m/everything-claude-code

A structured markdown research report with executive summary, themed findings with inline citations, key takeaways, full source list, and methodology disclosure.

About

Deep Research is a Claude Code skill that orchestrates firecrawl and exa MCPs to conduct thorough web research on any topic. Developers activate it when needing competitive analysis, technology evaluation, market sizing, or due diligence with evidence trails. The workflow breaks topics into 3-5 sub-questions, executes parallel multi-source searches (aiming for 15-30 unique sources), deep-reads 3-5 key sources via scraping, then synthesizes findings into a structured markdown report with inline citations, executive summary, key takeaways, and methodology. Quality rules enforce sourcing every claim, cross-referencing single sources, prioritizing recent content, and flagging gaps or unverified assertions. --- name: deep-research description: Multi-source deep research using firecrawl and exa MCPs. Searches the web, synthesizes findings, and delivers cited reports with source attribution. Use when the user wants thorough research on any topic with evidence and citations. --- # Deep Research Produce thorough, cited research reports from multiple web sources using firecrawl and exa MCP tools.

  • Breaks complex topics into 3-5 research sub-questions before search execution
  • Searches 15-30 unique sources across firecrawl and exa, mixing general and news-focused queries
  • Deep-reads 3-5 key sources via full-content scraping, not just search snippets
  • Generates markdown reports with inline citations, executive summary, and source attribution
  • Supports parallel research via Claude Code Task tool to subdivide broad topics across agents

Deep Research by the numbers

  • 5,650 all-time installs (skills.sh)
  • +295 installs in the week ending Jul 28, 2026 (Skillselion tracking)
  • Ranked #101 of 3,301 Productivity & Planning skills by installs in the Skillselion catalog
  • Security screen: MEDIUM risk (skills.sh audit)
  • Data as of Jul 28, 2026 (Skillselion catalog sync)
At a glance

deep-research capabilities & compatibility

Depends on firecrawl and exa API usage (can be free tier for low volume)

Capabilities
multi source web search via firecrawl and exa mc · full content scraping for deep reads · parallel research via claude code task tool · markdown report generation with inline citations · source attribution and methodology disclosure
Use cases
research · web search · web scraping
Platforms
macOS · Linux · Windows
Runs
Runs locally
Pricing
Free
From the docs

What deep-research says it does

Searches the web, synthesizes findings, and delivers cited reports with source attribution.
description
npx skills add https://github.com/affaan-m/everything-claude-code --skill deep-research

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs5.7k
repo stars234k
Security audit2 / 3 scanners passed
Last updatedJuly 27, 2026
Repositoryaffaan-m/everything-claude-code

What it does

Synthesize multi-source web research into cited reports for competitive analysis, market sizing, and due diligence.

Who is it for?

Competitive analysis, technology evaluation, market sizing, due diligence on companies/investors, synthesis-heavy research requiring evidence and citations.

Skip if: Real-time monitoring, live data feeds, proprietary/paywalled content retrieval, tasks requiring no citations or single-source lookups.

When should I use this skill?

User asks to research any topic in depth, says 'research', 'deep dive', 'investigate', or 'what\'s the current state of', or needs competitive/market analysis with evidence.

What you get

Developers deliver thorough, multi-source research reports with full attribution, enabling confident competitive analysis, technology evaluation, and due diligence.

  • Markdown research report with inline citations
  • Executive summary and key takeaways
  • Full source list with one-line summaries

By the numbers

  • Targets 15-30 unique sources per research task
  • Conducts 2-3 keyword variations per sub-question
  • Deep-reads 3-5 key sources via full-content scraping

Files

SKILL.mdMarkdownGitHub ↗

Deep Research

Produce thorough, cited research reports from multiple web sources using firecrawl and exa MCP tools.

When to Activate

  • User asks to research any topic in depth
  • Competitive analysis, technology evaluation, or market sizing
  • Due diligence on companies, investors, or technologies
  • Any question requiring synthesis from multiple sources
  • User says "research", "deep dive", "investigate", or "what's the current state of"

MCP Requirements

At least one of:

  • firecrawlfirecrawl_search, firecrawl_scrape, firecrawl_crawl
  • exaweb_search_exa, web_search_advanced_exa, crawling_exa

Both together give the best coverage. Configure in ~/.claude.json or ~/.codex/config.toml.

Workflow

Step 1: Understand the Goal

Ask 1-2 quick clarifying questions:

  • "What's your goal — learning, making a decision, or writing something?"
  • "Any specific angle or depth you want?"

If the user says "just research it" — skip ahead with reasonable defaults.

Step 2: Plan the Research

Break the topic into 3-5 research sub-questions. Example:

  • Topic: "Impact of AI on healthcare"
  • What are the main AI applications in healthcare today?
  • What clinical outcomes have been measured?
  • What are the regulatory challenges?
  • What companies are leading this space?
  • What's the market size and growth trajectory?

Step 3: Execute Multi-Source Search

For EACH sub-question, search using available MCP tools:

With firecrawl:

firecrawl_search(query: "<sub-question keywords>", limit: 8)

With exa:

web_search_exa(query: "<sub-question keywords>", numResults: 8)
web_search_advanced_exa(query: "<keywords>", numResults: 5, startPublishedDate: "2025-01-01")

Search strategy:

  • Use 2-3 different keyword variations per sub-question
  • Mix general and news-focused queries
  • Aim for 15-30 unique sources total
  • Prioritize: academic, official, reputable news > blogs > forums

Step 4: Deep-Read Key Sources

For the most promising URLs, fetch full content:

With firecrawl:

firecrawl_scrape(url: "<url>")

With exa:

crawling_exa(url: "<url>", tokensNum: 5000)

Read 3-5 key sources in full for depth. Do not rely only on search snippets.

Step 5: Synthesize and Write Report

Structure the report:

# [Topic]: Research Report
*Generated: [date] | Sources: [N] | Confidence: [High/Medium/Low]*

## Executive Summary
[3-5 sentence overview of key findings]

## 1. [First Major Theme]
[Findings with inline citations]
- Key point ([Source Name](url))
- Supporting data ([Source Name](url))

## 2. [Second Major Theme]
...

## 3. [Third Major Theme]
...

## Key Takeaways
- [Actionable insight 1]
- [Actionable insight 2]
- [Actionable insight 3]

## Sources
1. [Title](url) — [one-line summary]
2. ...

## Methodology
Searched [N] queries across web and news. Analyzed [M] sources.
Sub-questions investigated: [list]

Step 6: Deliver

  • Short topics: Post the full report in chat
  • Long reports: Post the executive summary + key takeaways, save full report to a file

Parallel Research with Subagents

For broad topics, use Claude Code's Task tool to parallelize:

Launch 3 research agents in parallel:
1. Agent 1: Research sub-questions 1-2
2. Agent 2: Research sub-questions 3-4
3. Agent 3: Research sub-question 5 + cross-cutting themes

Each agent searches, reads sources, and returns findings. The main session synthesizes into the final report.

Quality Rules

1. Every claim needs a source. No unsourced assertions. 2. Cross-reference. If only one source says it, flag it as unverified. 3. Recency matters. Prefer sources from the last 12 months. 4. Acknowledge gaps. If you couldn't find good info on a sub-question, say so. 5. No hallucination. If you don't know, say "insufficient data found." 6. Separate fact from inference. Label estimates, projections, and opinions clearly.

Examples

"Research the current state of nuclear fusion energy"
"Deep dive into Rust vs Go for backend services in 2026"
"Research the best strategies for bootstrapping a SaaS business"
"What's happening with the US housing market right now?"
"Investigate the competitive landscape for AI code editors"

Related skills

Forks & variants (1)

Deep Research has 1 known copy in the catalog totaling 1.5k installs. They canonicalize to this original listing.

How it compares

Pick Deep Research over codebase-onboarding when the input is external web topics rather than a local repository.

FAQ

How many sources do you aim for?

15-30 unique sources total across all sub-questions, prioritizing academic, official, and reputable news over blogs or forums.

What if only one source mentions a claim?

Flag it as unverified and cross-reference against other sources. Never assert single-source claims as fact without disclosure.

Can this parallelize research?

Yes, use Claude Code Task tool to launch 3+ research agents in parallel on sub-question groups, then synthesize in the main session.

Is Deep Research safe to install?

skills.sh reports 2 of 3 security scanners passed. Review the Security Audits panel on this page before installing in production.

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.