deep-research-proMulti-source deep research agent. Searches the web, synthesizes findings, and delivers cited reports. No API keys required.
Install via ClawdBot CLI:
clawdbot install parags/deep-research-proA powerful, self-contained deep research skill that produces thorough, cited reports from multiple web sources. No paid APIs required — uses DuckDuckGo search.
When the user asks for research on any topic, follow this workflow:
Ask 1-2 quick clarifying questions:
If the user says "just research it" — skip ahead with reasonable defaults.
Break the topic into 3-5 research sub-questions. For example:
For EACH sub-question, run the DDG search script:
# Web search
/home/clawdbot/clawd/skills/ddg-search/scripts/ddg "<sub-question keywords>" --max 8
# News search (for current events)
/home/clawdbot/clawd/skills/ddg-search/scripts/ddg news "<topic>" --max 5
Search strategy:
For the most promising URLs, fetch full content:
curl -sL "<url>" | python3 -c "
import sys, re
html = sys.stdin.read()
# Strip tags, get text
text = re.sub('<[^>]+>', ' ', html)
text = re.sub(r'\s+', ' ', text).strip()
print(text[:5000])
"
Read 3-5 key sources in full for depth. Don't just rely on search snippets.
Structure the report as:
# [Topic]: Deep 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]
Save the full report:
mkdir -p ~/clawd/research/[slug]
# Write report to ~/clawd/research/[slug]/report.md
Then deliver:
"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?"
When spawning as a sub-agent, include the full research request and context:
sessions_spawn(
task: "Run deep research on [TOPIC]. Follow the deep-research-pro SKILL.md workflow.
Read /home/clawdbot/clawd/skills/deep-research-pro/SKILL.md first.
Goal: [user's goal]
Specific angles: [any specifics]
Save report to ~/clawd/research/[slug]/report.md
When done, wake the main session with key findings.",
label: "research-[slug]",
model: "opus"
)
/home/clawdbot/clawd/skills/ddg-search/scripts/ddgGenerated Mar 1, 2026
A venture capital firm uses Deep Research Pro to analyze emerging markets for investment opportunities. The agent researches market size, growth trends, key players, and regulatory landscapes to produce a comprehensive report, helping the firm make data-driven investment decisions.
A technology company employs Deep Research Pro to monitor competitors' product launches, pricing strategies, and customer reviews. The agent synthesizes findings from multiple web sources, enabling the company to adjust its business strategy and stay ahead in the market.
A university researcher utilizes Deep Research Pro to gather and synthesize academic papers, news articles, and reports on a specific scientific topic. The agent produces a cited report with key themes and gaps, streamlining the literature review process for publications or grant proposals.
A healthcare organization uses Deep Research Pro to investigate the impact of new regulations or treatments. The agent searches for clinical outcomes, regulatory challenges, and patient data, delivering a detailed report to inform policy decisions and operational planning.
A marketing agency leverages Deep Research Pro to research trending topics, audience interests, and competitor content. The agent generates insights on popular themes and sources, helping the agency create targeted content strategies for client campaigns.
Offer Deep Research Pro as a monthly subscription service for businesses needing regular market intelligence. Users pay a fee to access automated research reports on specified topics, with tiered plans based on report frequency and depth.
Provide basic research capabilities for free to attract users, then charge for advanced features like deeper analysis, more sources, or priority report delivery. This model encourages adoption while monetizing heavy users and enterprises.
License Deep Research Pro to marketing, consulting, or research agencies as a white-label tool. Agencies can brand and integrate the skill into their own services, offering research reports to clients without developing the technology in-house.
💬 Integration Tip
Ensure the DDG search script is properly installed and accessible, and test curl commands for fetching full page content to avoid errors during research execution.
Summarize URLs or files with the summarize CLI (web, PDFs, images, audio, YouTube).
AI-optimized web search via Tavily API. Returns concise, relevant results for AI agents.
This skill should be used when users need to search the web for information, find current content, look up news articles, search for images, or find videos. It uses DuckDuckGo's search API to return results in clean, formatted output (text, markdown, or JSON). Use for research, fact-checking, finding recent information, or gathering web resources.
Web search and content extraction via Brave Search API. Use for searching documentation, facts, or any web content. Lightweight, no browser required.
Search indexed Discord community discussions via Answer Overflow. Find solutions to coding problems, library issues, and community Q&A that only exist in Discord conversations.
Multi search engine integration with 17 engines (8 CN + 9 Global). Supports advanced search operators, time filters, site search, privacy engines, and WolframAlpha knowledge queries. No API keys required.