Runs autonomous multi-step research via Google's Gemini Deep Research Agent: starts queries, polls progress, and collects cited reports for market analysis or literature reviews.
How this skill is triggered — by the user, by Claude, or both
Slash command
/agentic-awesome-skills:gemini-deep-researchThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
- Use when a question needs autonomous multi-step research with cited sources (market analysis, literature reviews, competitive scans)
Run autonomous research tasks that plan, search, read, and synthesize information into comprehensive reports.
pip install -r requirements.txtexport GEMINI_API_KEY=your-api-key-here
Or create a .env file in the skill directory.Before starting a research job, show the user the exact query, the fact that it will be sent to Google's Gemini service, the expected cost range, and the output destination. Start a job only after explicit approval. Do not include private workspace material, credentials, personal data, or confidential customer information in a query.
python3 scripts/research.py --query "Research the history of Kubernetes"
python3 scripts/research.py --query "Compare Python web frameworks" \
--format "1. Executive Summary\n2. Comparison Table\n3. Recommendations"
python3 scripts/research.py --query "Analyze EV battery market" --stream
python3 scripts/research.py --query "Research topic" --no-wait
python3 scripts/research.py --status <interaction_id>
python3 scripts/research.py --wait <interaction_id>
python3 scripts/research.py --query "Elaborate on point 2" --continue <interaction_id>
python3 scripts/research.py --list
--json): Structured data for programmatic use--raw): Unprocessed API response| Metric | Value |
|---|---|
| Time | 2-10 minutes per task |
| Cost | $2-5 per task (varies by complexity) |
| Token usage | ~250k-900k input, ~60k-80k output |
--query "..."--stream or poll with --status--continue for follow-up questionsnpx claudepluginhub francostino/antigravity-awesome-skills --plugin agentic-bundle-aas-oss-maintainer2plugins reuse this skill
First indexed Jul 10, 2026
Executes autonomous multi-step research with Google Gemini agent, producing cited reports for market analysis, competitive landscaping, technical reviews, and due diligence. Takes 2-10 min; costs $2-5.
Runs autonomous research tasks that plan, search, read, and synthesize information into comprehensive reports using Gemini. Supports streaming, structured output, and follow-up queries.
Performs multi-source research using Gemini's Deep Research Agent: breaks down queries, searches web systematically, and synthesizes findings into comprehensive reports.