/setup
Check whether the Antigravity CLI (agy, Gemini 3.5) is installed and signed in, and install it if it's missing.
$ npx -y skills add Idun-Group/antigravity-plugin-cc --agent claude-codeHow it fires
How this command gets triggered: by you, by Claude, or both.
- Fires itselfClaude auto-loads it when your prompt matches the work.
- You can call itInvoke it directly when you want it.
- Slash command
/setup
Context preview
What this command does when you run it.
Check whether the Antigravity CLI (agy, Gemini 3.5) is installed and signed in, and install it if it's missing.
Command definition
setup.mddescription: Check whether the Antigravity CLI (agy, Gemini 3.5) is installed and signed in, and install it if it's missing.
argument-hint: '[--json]'
allowed-tools: Bash(node:*), Bash(curl:*), Bash(bash:*), AskUserQuestion
Detect the state of the Antigravity CLI. Run exactly this:
node "${CLAUDE_PLUGIN_ROOT}/scripts/antigravity.mjs" setup --json $ARGUMENTSRead the JSON: `{ ready, installed, binaryPath, version, authedGuess, configDir }`.
**If `installed` is `false`** — the `agy` binary wasn't found:
- Use `AskUserQuestion` exactly once to offer installing it. Two options, install first:
- `Install Antigravity CLI (Recommended)`
- `Skip for now`
- If the user picks install, run:
curl -fsSL https://antigravity.google/cli/install.sh | bash
- Then rerun the detection:
node "${CLAUDE_PLUGIN_ROOT}/scripts/antigravity.mjs" setup --json $ARGUMENTS- If the user picks skip, don't install. Move on to the output step with the original result.
**If `installed` is `true`** — don't ask about installation.
**If `installed` is `true` but `authedGuess` is `false`** — `agy` is here but you're probably not signed in. Sign-in is browser OAuth with your Google account; there's no API key for the preview tier, and this command never authenticates for you. Tell the user to run `agy` once interactively to finish the browser sign-in — in Claude Code, type `! agy` and complete the Google flow, then come back and run `/antigravity:setup` again.
**Final output** — present the human-readable setup by running the same command without `--json`:
node "${CLAUDE_PLUGIN_ROOT}/scripts/antigravity.mjs" setup $ARGUMENTSShow that output to the user. If installation was skipped, show the original detection result instead. Don't invent flags or claim a sign-in you didn't verify.
Read more
description: Check whether the Antigravity CLI (agy, Gemini 3.5) is installed and signed in, and install it if it's missing. argument-hint: '[--json]' allowed-tools: Bash(node:*), Bash(curl:*), Bash(bash:*), AskUserQuestion
Detect the state of the Antigravity CLI. Run exactly this:
node "${CLAUDE_PLUGIN_ROOT}/scripts/antigravity.mjs" setup --json $ARGUMENTSRead the JSON: `{ ready, installed, binaryPath, version, authedGuess, configDir }`.
**If `installed` is `false`** — the `agy` binary wasn't found:
- Use `AskUserQuestion` exactly once to offer installing it. Two options, install first:
- `Install Antigravity CLI (Recommended)`
- `Skip for now`
- If the user picks install, run:
curl -fsSL https://antigravity.google/cli/install.sh | bash
- Then rerun the detection:
node "${CLAUDE_PLUGIN_ROOT}/scripts/antigravity.mjs" setup --json $ARGUMENTS- If the user picks skip, don't install. Move on to the output step with the original result.
**If `installed` is `true`** — don't ask about installation.
**If `installed` is `true` but `authedGuess` is `false`** — `agy` is here but you're probably not signed in. Sign-in is browser OAuth with your Google account; there's no API key for the preview tier, and this command never authenticates for you. Tell the user to run `agy` once interactively to finish the browser sign-in — in Claude Code, type `! agy` and complete the Google flow, then come back and run `/antigravity:setup` again.
**Final output** — present the human-readable setup by running the same command without `--json`:
node "${CLAUDE_PLUGIN_ROOT}/scripts/antigravity.mjs" setup $ARGUMENTSShow that output to the user. If installation was skipped, show the original detection result instead. Don't invent flags or claim a sign-in you didn't verify.
Drive Google's Antigravity CLI (agy, powered by Gemini 3.5) without leaving Claude Code. A Claude Code plugin that hands work to agy — Google's Antigravity CLI — and brings the result back into your session.
Repo: Idun-Group/antigravity-plugin-cc
Other commands on idun-group-antigravity-plugin-cc.
- /cancel
Cancel a running background Antigravity job.
Open command - /delegate
Hand a task to Antigravity (Gemini 3.5) and get the result back inside Claude Code.
Open command - /result
Show the final output (and conversation id) of a finished Antigravity job.
Open command - /resume
Continue the most recent Antigravity (Gemini 3.5) conversation with a follow-up.
Open command - /review
Cross-model code review of your changes by Gemini 3.5 (read-only, contained).
Open command - /status
Show running and recent Antigravity jobs for this repo.
Open command

