From antigravity
Delegates a self-contained task to a Google Gemini Managed Agent (Antigravity) running in a remote sandbox with code execution, web search, and URL reading. This skill should be used when the user asks to "delegate to Gemini", "offload to Antigravity", "run this in a remote sandbox", or wants a task executed in an isolated Linux sandbox with Google Search and code execution, then the result read back. Invoked via "/antigravity:delegate".
How this skill is triggered — by the user, by Claude, or both
Slash command
/antigravity:delegate <task prompt> [--tools code_execution,google_search,url_context] [--network default|none] [--repo URL]<task prompt> [--tools code_execution,google_search,url_context] [--network default|none] [--repo URL]This skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Delegate `$ARGUMENTS` to the `antigravity-preview-05-2026` managed agent in a remote
Delegate $ARGUMENTS to the antigravity-preview-05-2026 managed agent in a remote
Gemini sandbox, wait for it to finish, and report the result.
The script is at ${CLAUDE_PLUGIN_ROOT}/scripts/antigravity.py. It is self-daemonizing:
delegate returns immediately with a run_id, a detached worker performs the
interaction, and a status file flips to completed / failed when done.
Requires GEMINI_API_KEY in the environment and uv on PATH.
Goal: Separate the task prompt from flags.
Actions:
$ARGUMENTS (before any --flag) as the task prompt.--tools — comma list of code_execution, google_search, url_context (default: all three)--network — default (open outbound, the default) or none (sandbox code cannot reach the internet; Google Search and URL reading still work)--repo URL — mount a GitHub repository at /workspace/repoGoal: Start the detached worker and capture its handles.
Actions:
uv run "${CLAUDE_PLUGIN_ROOT}/scripts/antigravity.py" delegate --prompt "<task>" [flags]
run_id, output_file, and wait_command from stdout.GEMINI_API_KEY), surface it and stop.Goal: Block until the run reaches a terminal state without busy-looping the model.
Actions:
wait_command. It emits exactly one line —
antigravity run <id>: completed or ... failed (or ... timeout) — then exits:
uv run "${CLAUDE_PLUGIN_ROOT}/scripts/antigravity.py" wait --run <run_id>
Set the Monitor timeout_ms to 900000 (15 min) and a clear description such as
"antigravity delegate <run_id>".completed or failed → proceed to Phase 4.timeout (the line reads ... : timeout (still ...)) → the run is NOT done; the
detached worker is still going. 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 result. Do not poll manually in a loop.Goal: Present the agent's output and what it did.
Actions:
uv run "${CLAUDE_PLUGIN_ROOT}/scripts/antigravity.py" status --run <run_id> --full
Or read the rendered output_file directly.interaction_id and environment_id (useful for follow-up), and token usage.failed, report the recorded error and likely cause
(missing API key, unsupported tool, network policy).code_execution, google_search, url_context are supported.
Function calling, MCP servers, and structured output are not available.environment_id for follow-up turns.references/usage.md for the API surface, environment options, and examples.Guides reception of code review feedback: verify before implementing, avoid performative agreement, push back with technical reasoning when needed.
Design banners for social media, ads, website heroes, and print with multiple art direction options and AI-generated visuals.
npx claudepluginhub daisycatts/dotclaude --plugin antigravity