/gemini-deep-research
Perform deep, multi-source research using Google Gemini's Deep Research Agent. Use this skill whenever the user asks for comprehensive research, literature reviews, competitive analysis, market research, technology surveys, or any investigation that requires synthesizing
$ npx -y skills add OpenLAIR/dr-claw --skill gemini-deep-research --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
- Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
- You can call itInvoke it directly when you want it.
- Slash command
/gemini-deep-research
Context preview
The summary Claude sees to decide when to auto-load this skill.
Perform deep, multi-source research using Google Gemini's Deep Research Agent. Use this skill whenever the user asks for comprehensive research, literature reviews, competitive analysis, market research, technology surveys, or any investigation that requires synthesizing
SKILL.md
gemini-deep-research.SKILL.mdname: gemini-deep-research
description: |
Perform deep, multi-source research using Google Gemini's Deep Research Agent.
Use this skill whenever the user asks for comprehensive research, literature reviews,
competitive analysis, market research, technology surveys, or any investigation that
requires synthesizing information from many web sources. Also trigger when the user
says "deep research", "research this thoroughly", "do a comprehensive study on",
or wants a structured report with evidence gathered from across the web —
even if they don't mention Gemini by name.
license: MIT
metadata:
author: clawdbot
version: "1.1.0"
requires:
env:
- GEMINI_API_KEYGemini Deep Research
Google Gemini's Deep Research Agent autonomously breaks down complex queries, searches the web systematically, and produces structured markdown reports with citations. It handles the kind of multi-source synthesis that would take a human hours of browsing.
Prerequisites
- `GEMINI_API_KEY` environment variable must be set (obtain from [Google AI Studio](https://aistudio.google.com/apikey))
- Python 3.8+ with the `requests` library installed
- Requires a direct Gemini API key — OAuth tokens are not supported
How to Run the Script
The script is at `scripts/deep_research.py` **relative to this skill's directory** (i.e., the directory containing this SKILL.md). Resolve the full path from the skill's location before running.
python3 <this-skill-directory>/scripts/deep_research.py \
--query "<research query>" \
--stream \
--output-dir ./reports
Key flags
| Flag | Purpose | Default | |------|---------|---------| | `--query` | **(required)** The research question | — | | `--stream` | Print progress updates while waiting | off | | `--output-dir` | Where to save the report files | current dir | | `--format` | Custom output structure (see example below) | free-form | | `--file-search-store` | Gemini file-search store name | none | | `--api-key` | Override `GEMINI_API_KEY` env var | env var |
Before running
1. **Check for `GEMINI_API_KEY`**: Run `echo $GEMINI_API_KEY` to see if it's set. If empty, **ask the user** whether they'd like to provide a Gemini API key (they can get one from https://aistudio.google.com/apikey). If the user provides one, pass it via `--api-key`. If the user declines, **do not use this skill** — fall back to other research approaches and let the user know why. 2. Ensure `requests` is installed: `python3 -c "import requests"`. If missing, install it: `pip3 install requests`.
Example commands
**Basic research:**
python3 <this-skill-directory>/scripts/deep_research.py \
--query "Current state of quantum error correction techniques" \
--stream --output-dir ./reports
**Custom output format:**
python3 <this-skill-directory>/scripts/deep_research.py \
--query "Competitive landscape of EV batteries" \
--format "1. Executive Summary\n2. Key Players (data table)\n3. Technology Comparison\n4. Supply Chain Risks" \
--stream --output-dir ./reports
Output
The script produces two timestamped files in the output directory:
- `deep-research-YYYY-MM-DD-HH-MM-SS.md` — the final markdown report
- `deep-research-YYYY-MM-DD-HH-MM-SS.json` — full interaction metadata
The report is also printed to stdout so you can capture it directly.
Execution Notes
- This is a **long-running** task — it typically takes 2–10 minutes depending on query complexity. Use `--stream` so the user can see progress.
- Always run with a reasonable timeout (at least 600000ms / 10 minutes) when using the Bash tool.
- After the script finishes, read and present the generated `.md` report to the user. Summarize key findings and point them to the full report file.
API Details
- **Endpoint**: `https://generativelanguage.googleapis.com/v1beta/interactions`
- **Agent model**: `deep-research-pro-preview-12-2025`
- **Auth**: `x-goog-api-key` header
Read more
name: gemini-deep-research
description: |
Perform deep, multi-source research using Google Gemini's Deep Research Agent.
Use this skill whenever the user asks for comprehensive research, literature reviews,
competitive analysis, market research, technology surveys, or any investigation that
requires synthesizing information from many web sources. Also trigger when the user
says "deep research", "research this thoroughly", "do a comprehensive study on",
or wants a structured report with evidence gathered from across the web —
even if they don't mention Gemini by name.
license: MIT
metadata:
author: clawdbot
version: "1.1.0"
requires:
env:
- GEMINI_API_KEYGemini Deep Research
Google Gemini's Deep Research Agent autonomously breaks down complex queries, searches the web systematically, and produces structured markdown reports with citations. It handles the kind of multi-source synthesis that would take a human hours of browsing.
Prerequisites
- `GEMINI_API_KEY` environment variable must be set (obtain from [Google AI Studio](https://aistudio.google.com/apikey))
- Python 3.8+ with the `requests` library installed
- Requires a direct Gemini API key — OAuth tokens are not supported
How to Run the Script
The script is at `scripts/deep_research.py` **relative to this skill's directory** (i.e., the directory containing this SKILL.md). Resolve the full path from the skill's location before running.
python3 <this-skill-directory>/scripts/deep_research.py \ --query "<research query>" \ --stream \ --output-dir ./reports
Key flags
| Flag | Purpose | Default | |------|---------|---------| | `--query` | **(required)** The research question | — | | `--stream` | Print progress updates while waiting | off | | `--output-dir` | Where to save the report files | current dir | | `--format` | Custom output structure (see example below) | free-form | | `--file-search-store` | Gemini file-search store name | none | | `--api-key` | Override `GEMINI_API_KEY` env var | env var |
Before running
1. **Check for `GEMINI_API_KEY`**: Run `echo $GEMINI_API_KEY` to see if it's set. If empty, **ask the user** whether they'd like to provide a Gemini API key (they can get one from https://aistudio.google.com/apikey). If the user provides one, pass it via `--api-key`. If the user declines, **do not use this skill** — fall back to other research approaches and let the user know why. 2. Ensure `requests` is installed: `python3 -c "import requests"`. If missing, install it: `pip3 install requests`.
Example commands
**Basic research:**
python3 <this-skill-directory>/scripts/deep_research.py \ --query "Current state of quantum error correction techniques" \ --stream --output-dir ./reports
**Custom output format:**
python3 <this-skill-directory>/scripts/deep_research.py \ --query "Competitive landscape of EV batteries" \ --format "1. Executive Summary\n2. Key Players (data table)\n3. Technology Comparison\n4. Supply Chain Risks" \ --stream --output-dir ./reports
Output
The script produces two timestamped files in the output directory:
- `deep-research-YYYY-MM-DD-HH-MM-SS.md` — the final markdown report
- `deep-research-YYYY-MM-DD-HH-MM-SS.json` — full interaction metadata
The report is also printed to stdout so you can capture it directly.
Execution Notes
- This is a **long-running** task — it typically takes 2–10 minutes depending on query complexity. Use `--stream` so the user can see progress.
- Always run with a reasonable timeout (at least 600000ms / 10 minutes) when using the Bash tool.
- After the script finishes, read and present the generated `.md` report to the user. Summarize key findings and point them to the full report file.
API Details
- **Endpoint**: `https://generativelanguage.googleapis.com/v1beta/interactions`
- **Agent model**: `deep-research-pro-preview-12-2025`
- **Auth**: `x-goog-api-key` header
A Super AI Lab with massive AI Doctors as Assistants. Best IDE for Research via AI Power.
Repo: OpenLAIR/dr-claw
Other skills on dr-claw.
- /dr-claw
Dr. Claw skill for OpenClaw project discovery, idea intake, waiting-session triage, structured session control, event-driven notifications, and mobile reporting through the local drclaw CLI.
Open skill - /academic-researcher
Academic research assistant for literature reviews, paper analysis, and scholarly writing. Use when: reviewing academic papers, conducting literature reviews, writing research summaries, analyzing methodologies, formatting citations, or when user mentions academic research,
Open skill - /autogpt
Autonomous AI agent platform for building and deploying continuous agents. Use when creating visual workflow agents, deploying persistent autonomous agents, or building complex multi-step AI automation systems.
Open skill - /crewai
Multi-agent orchestration framework for autonomous AI collaboration. Use when building teams of specialized agents working together on complex tasks, when you need role-based agent collaboration with memory, or for production workflows requiring sequential/hierarchical
Open skill - /langchain
Framework for building LLM-powered applications with agents, chains, and RAG. Supports multiple providers (OpenAI, Anthropic, Google), 500+ integrations, ReAct agents, tool calling, memory management, and vector store retrieval. Use for building chatbots, question-answering
Open skill - /llamaindex
Data framework for building LLM applications with RAG. Specializes in document ingestion (300+ connectors), indexing, and querying. Features vector indices, query engines, agents, and multi-modal support. Use for document Q&A, chatbots, knowledge retrieval, or building RAG
Open skill

