research
Research Skill
Conduct comprehensive research on any topic with automatic source gathering, analysis, and response generation with citations.
Authentication
This skill only supports API key authentication.
- Create an account at inspiro.top
- Generate your API key
- Add it to
~/.claude/settings.json:
{
"env": {
"INSPIRO_API_KEY": "inspiro-your-api-key-here"
}
}
Only API key authentication is supported.
Quick Start
Tip: Research can take 30-120 seconds. Press Ctrl+B to run in the background.
Using the Script
./scripts/research.sh '<json>' [output_file]
Examples:
# Basic research
./scripts/research.sh '{"input": "quantum computing trends"}'
# With pro model for comprehensive analysis
./scripts/research.sh '{"input": "AI agents comparison", "model": "pro"}'
# Save to file
./scripts/research.sh '{"input": "market analysis for EVs", "model": "pro"}' ./ev-report.md
# Quick targeted research
./scripts/research.sh '{"input": "climate change impacts", "model": "mini"}'
Parameters
| Field | Type | Default | Description |
|---|---|---|---|
input |
string | Required | Research topic or question |
model |
string | "mini" |
Model: mini, pro, auto |
Model Selection
Rule of thumb: "what does X do?" -> mini. "X vs Y vs Z" or "best way to..." -> pro.
| Model | Use Case | Speed |
|---|---|---|
mini |
Single topic, targeted research | ~30s |
pro |
Comprehensive multi-angle analysis | ~60-120s |
auto |
API chooses based on complexity | Varies |
Examples
Quick Overview
./scripts/research.sh '{"input": "What is retrieval augmented generation?", "model": "mini"}'
Technical Comparison
./scripts/research.sh '{"input": "LangGraph vs CrewAI for multi-agent systems", "model": "pro"}'
Market Research
./scripts/research.sh '{"input": "Fintech startup landscape 2025", "model": "pro"}' fintech-report.md
More from ryneivy/skills
search
Search the web using Inspiro's LLM-optimized search API. Returns relevant results with content snippets, scores, and metadata. Use when you need to find web content on any topic without writing code.
10extract
Extract content from specific URLs using Inspiro's extraction API. Returns clean markdown/text from web pages. Use when you have specific URLs and need their content without writing code.
10inspiro-best-practices
Bash-first best practices for production Inspiro usage with zero SDK dependency. Use when you need stable, scriptable API workflows for search, extract, crawl, and research using curl and INSPIRO_API_KEY.
10crawl
Crawl any website and save pages as local markdown files. Use when you need to download documentation, knowledge bases, or web content for offline access or analysis. No code required - just provide a URL.
9