Deep Research Report Generator
Conducts multi-source research on any topic via Brave Search, synthesizes findings into a structured report with citations, key takeaways, and confidence ratings per claim. Prerequisites: brave-search MCP, python3.
MCP get_skill({ skillId: "deep-research-report-generator-43de8955" })Use this skill with your agent
Create a free account and connect via MCP
# Deep Research Report Generator
Conduct thorough multi-source research on any topic and synthesize findings into a structured, cited report.
## When to Use
- "Research {topic} and give me a comprehensive report"
- "What's the current state of {topic}?"
- "I need to understand {topic} deeply ā research it for me"
## Requirements
- **Brave Search MCP** for multi-source research
- **python3** for citation management and word count
## Workflow
### Step 1 ā Research Brief
- **Topic / research question**
- **Depth** (overview, detailed, comprehensive)
- **Audience** (executive summary, technical, general)
- **Specific angles** to cover
- **What you'll use this for** (decision, presentation, article)
### Step 2 ā Multi-Source Research
```
brave_web_search: "{TOPIC} overview {YEAR}"
brave_web_search: "{TOPIC} statistics data {YEAR}"
brave_web_search: "{TOPIC} pros cons analysis"
brave_web_search: "{TOPIC} expert opinion thought leaders"
brave_web_search: "{TOPIC} trends future outlook {YEAR}"
brave_web_search: "{TOPIC} criticism challenges"
brave_news_search: "{TOPIC} latest developments"
```
For each source: note URL, key claims, date, credibility.
### Step 3 ā Synthesize Report
```markdown
# Research Report: {TOPIC}
š
Date: {DATE} | š Depth: {LEVEL} | š Sources: {N}
## Executive Summary
{3-5 sentence overview of key findings}
## Background
{Context the reader needs to understand the topic}
## Key Findings
### 1. {Finding Title}
{Detailed explanation with specific data points}
- {Statistic or fact} [Source 1]
- {Supporting evidence} [Source 2]
**Confidence:** š¢ High / š” Medium / š“ Low
### 2. {Finding Title}
{Explanation}
**Confidence:** {level}
### 3. {Finding Title}
...
## Analysis
### Arguments For
- {Point 1} [Source]
- {Point 2} [Source]
### Arguments Against
- {Point 1} [Source]
- {Point 2} [Source]
### Trends & Outlook
{What the data suggests about the future}
## Key Takeaways
1. {Most important finding}
2. {Second most important}
3. {Third}
## Sources
1. [{Title}]({URL}) ā {Publication}, {Date}
2. [{Title}]({URL}) ā {Publication}, {Date}
...
## Methodology Note
This report synthesizes information from {N} sources found via web search on {DATE}.
Confidence ratings reflect source agreement and data quality.
```
### Step 4 ā Stats Summary
```bash
python3 << 'PYEOF'
report = """{REPORT_TEXT}"""
words = len(report.split())
sources = report.count('[Source')
read_time = words / 200
print(f"Report stats:")
print(f" Words: {words}")
print(f" Sources cited: {sources}")
print(f" Reading time: ~{read_time:.0f} minutes")
PYEOF
```
### Step 5 ā Save Report
```bash
mkdir -p outputs/research
cat > "outputs/research/{TOPIC_SLUG}-{DATE}.md" << 'EOF'
{REPORT}
EOF
```
## Important Rules
- Cite every factual claim ā no unsourced assertions
- Rate confidence per finding (how many sources agree)
- Present both sides of controversial topics
- Date-stamp the research ā information ages quickly
- Distinguish facts from opinions clearly
- If sources conflict, note the disagreement
## Example Prompts
- "Research the current state of AI regulation in the EU"
- "Give me a deep dive on the electric vehicle market in 2024"
- "Research remote work productivity ā what does the data actually say?"Related Skills
More skills in Research & Analysis
Company Due Diligence Researcher
Conducts comprehensive research on a company via Brave Search covering financials, leadership, culture, news, and competitive landscape. Generates a diligence brief for job seekers, investors, or partners. Prerequisites: brave-search MCP, python3.
Fact Checker & Claim Verifier
Verifies claims, statistics, and quotes by cross-referencing multiple sources via Brave Search. Rates each claim's accuracy with evidence and flags misinformation patterns. Prerequisites: brave-search MCP.
News Digest & Trend Analyzer
Searches current news via Brave Search for a given topic or industry, summarizes top stories, identifies trends, and generates a formatted digest with analysis. Prerequisites: brave-search MCP, python3.
Product Comparison Matrix
Researches and compares products, tools, or services side-by-side via Brave Search with feature matrices, pricing analysis, and a recommendation based on your specific needs. Prerequisites: brave-search MCP, python3.
Explore Other Categories
Skills from other categories with shared topics
/understand-chat
Use when you need to ask questions about a codebase or understand code using a knowledge graph
/understand-dashboard
Launch the interactive web dashboard to visualize a codebase's knowledge graph
Competitors Analysis
Analyze competitor repositories with evidence-based approach. Use when tracking competitors, creating competitor profiles, or generating competitive analysis. CRITICAL - all analysis must be based on actual cloned code, never assumptions. Triggers include "analyze competitor", "add competitor", "competitive analysis", or "ē«ååę".