From antigravity
Runs a deep-research query on Google Gemini's deep-research managed agent and returns a cited report. This skill should be used when the user asks to "deep research with Gemini", "run Gemini deep research", "have Antigravity research X", or wants a thorough, multi-source web research report produced by a remote Gemini agent. Invoked via "/antigravity:research". Supports a higher-effort max mode via "--max".
How this command is triggered — by the user, by Claude, or both
Slash command
/antigravity:SKILL <research question> [--max]research/This command is limited to the following tools:
The summary Claude sees in its command listing — used to decide when to auto-load this command
# Antigravity Deep Research
Run `$ARGUMENTS` as a deep-research query on Gemini's deep-research managed agent,
wait for it to finish, and report the cited result. Two models are available:
`deep-research-preview-04-2026` (default) and `deep-research-max-preview-04-2026`
(max mode — slower, higher effort), selected with `--max`.
The script is at `${CLAUDE_PLUGIN_ROOT}/scripts/antigravity.py`. It is self-daemonizing:
`research` returns immediately with a `run_id`, a detached worker runs the research,
and a `status` file flips to `completed` / `failed` when done. Requires `GEMINI_API_KEY`
in...Run $ARGUMENTS as a deep-research query on Gemini's deep-research managed agent,
wait for it to finish, and report the cited result. Two models are available:
deep-research-preview-04-2026 (default) and deep-research-max-preview-04-2026
(max mode — slower, higher effort), selected with --max.
The script is at ${CLAUDE_PLUGIN_ROOT}/scripts/antigravity.py. It is self-daemonizing:
research returns immediately with a run_id, a detached worker runs the research,
and a status file flips to completed / failed when done. Requires GEMINI_API_KEY
in the environment and uv on PATH. Deep research can take several minutes.
Goal: Turn $ARGUMENTS into a clear research question.
Actions:
$ARGUMENTS text (minus a --max flag) as the research question.
Pass --max through to the script when the user wants max mode (deeper, slower).Goal: Start the detached research worker.
Actions:
uv run "${CLAUDE_PLUGIN_ROOT}/scripts/antigravity.py" research --query "<question>" [--max]
run_id, output_file, and wait_command from stdout.GEMINI_API_KEY), surface it and stop.Goal: Block until the research finishes without busy-looping the model.
Actions:
wait_command. It emits one line —
antigravity run <id>: completed / failed / timeout — then exits:
uv run "${CLAUDE_PLUGIN_ROOT}/scripts/antigravity.py" wait --run <run_id>
Deep research is slow: set the Monitor timeout_ms to 1800000 (30 min) and pass
--timeout 1800 to the wait command. Use a clear description like
"antigravity research <run_id>".completed or failed → proceed to Phase 4.timeout → the research is still running (the worker keeps polling up to ~2h).
Start the Monitor on the same wait_command again to keep waiting. After a second
consecutive timeout, tell the user it is still running and give them
... status --run <run_id> --full to fetch it later, then stop.
Never present a timeout / still-running state as the report.Goal: Present the research report.
Actions:
uv run "${CLAUDE_PLUGIN_ROOT}/scripts/antigravity.py" status --run <run_id> --full
Or read the rendered output_file directly.failed, report the recorded error and likely cause.../delegate/references/usage.md for the shared API surface and limits.npx claudepluginhub daisycatts/dotclaude --plugin antigravity/SKILLEnables work verification for a task. Claude completes the work, verifies it, and appends a verified tag before session exit.
/SKILLResolves a GitHub issue by creating an isolated worktree, implementing a TDD fix, and opening a PR with auto-closing keywords.
/SKILLSurfaces the current session task from a state file and evaluates its clarity and completeness. Reports completion status or identifies remaining steps.