What problem does it solve?
Conduct comprehensive, citation-backed research directly from the terminal, reducing manual sourcing and enabling repeatable, auditable workflows.
Core Features & Use Cases
- Automated source gathering: collect, analyze, and cite sources for any topic.
- Structured outputs: returns JSON-ready results suitable for pipelines and dashboards.
- CLI-first workflow: run research tasks from the scripts/research.sh script in your shell or CI.
- Use Case: market intelligence, technology trends, literature reviews, and competitive analyses.
Quick Start
Use the research script to run queries without writing code. Examples below show how to invoke the script, generate a pro-level analysis, or save results to a file.
Using the Script
.claude/skills/research/scripts/research.sh '{"input": "quantum computing trends"}'
Examples:
-
Basic research
.claude/skills/research/scripts/research.sh '{"input": "quantum computing trends"}'
-
With pro model for comprehensive analysis
.claude/skills/research/scripts/research.sh '{"input": "AI agents comparison", "model": "pro"}'
-
Save to file
.claude/skills/research/scripts/research.sh '{"input": "market analysis for EVs", "model": "pro"}' ./ev-report.md
-
With custom citation format
.claude/skills/research/scripts/research.sh '{"input": "climate change impacts", "model": "mini", "citation_format": "apa"}'
-
With structured output schema
.claude/skills/research/scripts/research.sh '{"input": "fintech startups 2025", "model": "pro", "output_schema": {"properties": {"summary": {"type": "string"}, "companies": {"type": "array", "items": {"type": "string"}}}, "required": ["summary"]}}'