Install
openclaw skills install autosolutions-deep-researchConduct deep multi-phase research using parallel subagents and iterative search. Use for deep research requests, comprehensive analysis, competitive intelligence, market research, or thorough investigation of complex topics.
openclaw skills install autosolutions-deep-researchThis skill conducts thorough, multi-phase research using parallel subagents and iterative search methodology. It simulates ChatGPT Deep Research and Anthropic Deep Search by breaking complex topics into sub-questions, distributing work across 6-10 parallel research agents, and synthesizing findings into a structured report.
Use this skill when the user requests:
For deep research, spawn 6-10 subagents to explore different angles simultaneously:
Research Lead (you)
├── Agent 1: Background & definitions
├── Agent 2: Market/industry landscape
├── Agent 3: Key players/competitors
├── Agent 4: Technology/trends
├── Agent 5: Challenges/risks
├── Agent 6: Opportunities/future outlook
├── Agent 7: Case studies/examples
├── Agent 8: Data/statistics
└── Agent 9-10: Specialized deep-dives (as needed)
Use web_search with different modes per phase:
| Mode | Use Case |
|---|---|
deep-reasoning | Initial exploration, complex queries |
deep | Broad topic coverage, 20-30 results |
neural | Semantic matching, finding relevant pages |
fast | Quick fact-checks, specific lookups |
instant | Verifying names, dates, basic facts |
Use web_fetch to:
Example sub-question breakdown for "AI agent platforms":
Spawn subagents with sessions_spawn for each research angle:
# Example subagent spawn
sessions_spawn(
task="Research [specific angle]. Use web_search with mode=deep-reasoning, 20-30 results. Fetch full content from 5-10 key sources. Return: key findings, statistics, quotes with sources, contradictions spotted.",
runtime="subagent",
mode="run"
)
Each subagent should:
web_search mode for their angleweb_fetchAs research lead, consolidate findings:
Structure the final report as follows:
# [Research Topic]
## Executive Brief
[150-250 words: The 3-5 most important takeaways. Lead with the answer. What should the reader know after finishing this report?]
---
## 1. Background & Context
[Foundational information, definitions, why this matters]
## 2. [Key Theme 1]
[Deep dive with supporting evidence]
## 3. [Key Theme 2]
[Deep dive with supporting evidence]
## 4. [Key Theme 3]
[Deep dive with supporting evidence]
## 5. Challenges & Risks
[What could go wrong, limitations, open questions]
## 6. Opportunities & Outlook
[Future trends, emerging developments, what to watch]
## Key Takeaways
- [Bulleted summary of 5-7 most important points]
---
## Sources
[Numbered list with full URLs, titles, and 1-line context for each source]
1. [Title](URL) — [Brief context: what this source contributed]
2. [Title](URL) — [Brief context]
...
# Broad exploration
web_search query="[topic]" type="deep-reasoning" count=30 freshness="year"
# Targeted lookup
web_search query="[specific fact]" type="fast" count=10
# Recent developments
web_search query="[topic]" type="neural" count=20 freshness="month"
# Extract full content
web_fetch url="https://example.com/article" extractMode="markdown" maxChars=5000
# Spawn research subagent
sessions_spawn(
task="Research [specific angle]. Search with mode=deep-reasoning, 25 results. Fetch 8-10 full articles. Return structured findings with citations.",
runtime="subagent",
mode="run"
)
Before delivering the report, verify:
sessions_yield to wait for completionrunTimeoutSeconds on subagents to prevent runaway research