invoking-antigravity

Solid

Install and drive Google's Antigravity CLI (`agy`) as a non-interactive sub-agent. Use when orchestrating agy, running Antigravity agents from a script or sandbox, delegating a task to Google's agent harness, or wanting a Gemini-backed peer agent alongside Claude.

AI & Automation 148 stars 5 forks Updated today MIT

Install

View on GitHub

Quality Score: 84/100

Stars 20%
72
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Invoking Antigravity Run Google's Antigravity CLI (`agy`) headless, then call `agy -p "<task>"` as an orchestrated sub-agent on Google's harness (Gemini 3.5 Flash). Install, authenticate once, orchestrate. For the *why* behind any step — the 30 s timeout, the keyring fallback, the token format, network hosts, troubleshooting — read [references/auth-internals.md](references/auth-internals.md). ## When to use - Orchestrating `agy` as a sub-agent: shell out, capture stdout, fold back. - Running Antigravity agents from a script, CI, or sandboxed container. - Wanting a second opinion from Google's harness alongside Claude. For interactive local use, skip this — run `agy` directly and it opens a browser. ## 1. Install ```bash curl -fsSL https://antigravity.google/cli/install.sh | bash ``` Idempotent, ~3 s, installs `~/.local/bin/agy`. ## 2. Authenticate — once, human-in-the-loop Export these in every shell that runs `agy`, so it stores the token in a file rather than an OS keyring: ```bash export SSH_CONNECTION="203.0.113.1 50000 203.0.113.2 22" export SSH_CLIENT="203.0.113.1 50000 22" export SSH_TTY="/dev/pts/0" ``` Run the broker, then relay the login to a human: ```bash python3 scripts/agy_auth_broker.py & # spawns agy, captures the OAuth URL sleep 15 && cat /tmp/agybroker/url # a human opens this and consents printf '<code>' > /tmp/agybroker/code # paste the authorization code back ``` `agy` writes the token to `~/.gemini/antigravity-cli/antigr...

Details

Author
oaustegard
Repository
oaustegard/claude-skills
Created
10 months ago
Last Updated
today
Language
Python
License
MIT

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Solid

antigravity-agents

Delegate coding, code review, analysis, and research jobs to Google Antigravity CLI (agy) sub-agents that run alongside your own work. Use this whenever the user asks to spin off, offload, or delegate a task to Antigravity, agy, Gemini, or an "external agent"; wants a second opinion or independent review from a different model; wants intensive repo work (audits, large refactors, research sweeps) run in the background while you keep working; or says things like "have Antigravity do it", "spin up a sub-agent for this", or "get more done in parallel". Also use it proactively when a task is a good fit for parallel delegation and the user has expressed a preference for using Antigravity workers.

120 Updated 1 months ago
markfulton
AI & Automation Listed

antigravity-cli-bridge

Delegate work to Google's Antigravity CLI (`agy`) — the successor to Gemini CLI — to reach Gemini, Claude, and GPT-OSS models under a Google AI Pro/Ultra subscription from the terminal. Use when the user wants to run a headless `agy` prompt, hand a focused task or second-opinion review to `agy`, install or authenticate Antigravity CLI, check or economise its quota/models, bridge project context into `agy`, set up a second delegated-execution backend beside Codex, or troubleshoot `agy` flags, models, auth, conversations, or its headless behaviour.

0 Updated today
sabaiway
AI & Automation Listed

agy-sdk

Orchestrate multi-agent executions with the google-antigravity Python SDK: subagents, policies, token budgets, hooks, and MCP over Gemini. Use when building an Antigravity SDK agent.

4 Updated today
fmind