research-assistant
Research assistant using ReAct + Plan-and-Solve for web research, information synthesis, and report generation with citations.
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/banxian87/ai-research-proResearch Assistant
AI-powered research assistant that combines tool use (ReAct) with structured planning (Plan-and-Solve) to conduct thorough research and generate comprehensive reports.
Features
🔍 Web Research
- Search Queries: Intelligent search strategy
- Source Evaluation: Credibility assessment
- Information Extraction: Key facts and data
📊 Analysis & Synthesis
- Multi-perspective: Compare different sources
- Fact-checking: Verify claims across sources
- Trend Analysis: Identify patterns
📝 Report Generation
- Structured Reports: Clear organization
- Citations: Proper source attribution
- Executive Summary: Key findings upfront
Usage
const researcher = new ResearchAssistant();
const report = await researcher.research({
topic: 'Impact of AI on Software Development Jobs',
depth: 'comprehensive', // quick, standard, comprehensive
sources: 10, // minimum sources
includeStats: true
});
console.log(report.summary);
console.log(report.citations);
Architecture
User Request
↓
Plan-and-Solve Agent
├─ Phase 1: Define research questions
├─ Phase 2: Search strategy
├─ Phase 3: Source collection
├─ Phase 4: Analysis
└─ Phase 5: Report writing
↓
ReAct Agent (for each phase)
├─ Search web
├─ Fetch pages
├─ Extract info
└─ Verify facts
↓
Final Report with Citations
Installation
clawhub install research-assistant
License
MIT
Version
1.0.0
Created
2026-04-02
Metadata
Not sure this is the right skill?
Describe what you want to build — we'll match you to the best skill from 16,000+ options.
Find the right skillPaste this into your clawhub.json to enable this plugin.
{
"plugins": {
"official-banxian87-ai-research-pro": {
"enabled": true,
"auto_update": true
}
}
}Related Skills
agent-architecture-patterns
AI Agent architecture patterns library with 10 patterns for single and multi-agent systems
ai-code-generator
AI code generator using Plan-and-Solve + ReAct for generating complete, runnable code from requirements and specifications.
ai-email-master
Professional email writing assistant with tone adjustment, template library, grammar checking, and response suggestions. Supports formal, casual, persuasive, and empathetic tones for business communication.
content-creator-assistant
AI writing assistant using Reflection + Tree of Thoughts for high-quality content creation. Generates articles, blogs, and documentation with iterative refinement.
code-review-expert
Multi-agent code review system using Manager-Worker pattern. Provides comprehensive code analysis from syntax, logic, security, and performance perspectives.