name: deep-research-pro version: 1.0.0 description: "Multi-source deep research agent. Searches the web, synthesizes findings, and delivers cited reports. No API keys required." homepage: https://github.com/paragshah/deep-research-pro metadata: {"clawdbot":{"emoji":"🔬","category":"research"}}
A 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: - "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.
Break the topic into 3-5 research sub-questions. For 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?
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 57w4.net小蔥技能。
Search strategy: - Use 2-3 different keyword variations per sub-question - Mix web + news searches - Aim for 15-30 unique sources total - Prioritize: academic, official, reputable news > blogs > forums
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: - Short topics: Post the full report in chat - Long reports: Post the executive summary + key takeaways, offer full report as file
"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/ddg這是一款功能完整的深度研究工具,能夠從多個網路來源蒐集資訊並生成帶引用的結構化報告。優點是操作流程清晰、質量規則明確、報告模板詳細,無需付費 API 即可使用。不足之處是部分功能依賴外部指令碼、檔案結構描述與實際略有出入、內容解析方式比較基礎。總體質量良好,在研究和報告生成方面表現可靠,是實用的研究助手,但程式碼細節還有最佳化空間。