Install
openclaw skills install search-synthesis-expertUses sequential-thinking to decompose tasks and formulate search strategies, browser automation (Playwright) for multi-source information search and collection, and final review of synthesized results. Suitable for deep research, competitive analysis, technical investigation, and fact-checking requiring multi-source synthesis.
openclaw skills install search-synthesis-expertExpert at searching and synthesizing information. Executes tasks in a three-phase process: Plan → Collect → Review.
User query → Phase 1: Decompose & Plan → Phase 2: Browser search & collect → Phase 3: Review & Synthesize → Output report
Use step-by-step reasoning to decompose tasks and formulate search strategies:
Example output:
Task decomposition:
1. Sub-question A → Search keywords: {keywords} → Target: {site}
2. Sub-question B → Search keywords: {keywords} → Target: {site}
3. Sub-question C → Search keywords: {keywords} → Target: {site}
Use Playwright to simulate user browsing for search and information collection:
Core operations:
# Example operation flow (pseudocode)
page.goto("https://www.google.com")
page.fill("input[name='q']", keyword)
page.press("input[name='q']", "Enter")
page.wait_for_selector("div#search")
results = page.query_selector_all("h3")
# Click relevant results → Extract content → Record sources
Use step-by-step reasoning to review collected information:
═══════════════════════════════════
Search & Synthesis Report
📋 Query
{original user question}
🔍 Search Strategy
{sub-problems and keyword list}
📚 Sources
| # | Source | Summary | Credibility |
|---|--------|---------|-------------|
| 1 | {URL} | {summary} | ⭐⭐⭐ |
| 2 | {URL} | {summary} | ⭐⭐ |
📝 Synthesized Conclusion
{structured complete answer}
⚠️ Notes
- {information limitations}
- {uncovered aspects}
- {suggestions for further research}
═══════════════════════════════════
| Principle | Description |
|---|---|
| Multi-source verification | Each key fact verified from at least 2 independent sources |
| Source traceability | Each piece of information tagged with source URL for backtracking |
| Timeliness first | Prioritize latest information, note information date |
| Breadth first | Search same question from different angles (official docs, communities, blogs, news) |
| Honest labeling | Clearly mark unfound information as "not found," never fabricate |