/setup
Check whether the Antigravity CLI (agy) is installed, on PATH, and responding to a ping
$ npx -y skills add MarcosNahuel/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) is installed, on PATH, and responding to a ping
Command definition
setup.mddescription: Check whether the Antigravity CLI (agy) is installed, on PATH, and responding to a ping
argument-hint: ""
allowed-tools: Bash
Phase 0 — Stack check (ONE Bash call, no agy)
First report the whole agent stack — what's installed, what's missing, how to fix each — so the user knows which `/agy:*` capabilities are ready:
python "${CLAUDE_PLUGIN_ROOT:-$PWD}/plugins/antigravity/scripts/stack_check.py"It checks: **agy CLI** (required), **PyMuPDF/fitz** (required for `/agy:notebook` PDFs), **sqlite-vec** (optional — `/agy:notebook --semantic`), **ffmpeg** (optional — long media for `/agy:transcribe`), and **graphify** (optional — `/agy:graph`). Present the table and the fix line for anything missing. Prints `STACK n/5 present`.
Phase 1 — agy health ping
Route this to the `antigravity:agy-rescue` subagent in MODE: setup.
Pass this header block to the subagent:
MODE: setup
INTENSITY:
MODEL:
RESUME: false
WRITE_FILE:
USER_TEXT:
The subagent will:
1. Resolve the `agy` binary (PATH, then `AGY_BIN`, then per-OS fallback paths). 2. Try `agy changelog` to read the current version. 3. Run a 30s ping: a minimal `--print` call expecting "pong" back. 4. Report binary path, version, and ping status.
Output rules:
- Present the final setup output to the user as-is.
- If the binary is missing, tell the user to install Antigravity:
- **Windows (PowerShell):** `irm https://antigravity.google/cli/install.ps1 | iex`
- **macOS / Linux (bash):** `curl -fsSL https://antigravity.google/cli/install.sh | bash`
After install, restart the shell so the binary lands on PATH.
- If the binary exists but ping times out (empty stdout + exit 0), the symptom is ambiguous in agy 1.0.x:
1. **Tool-call loop** (most common in v0.1.1+): the model entered an agentic loop and consumed the timeout before flushing. Re-run with a higher `--print-timeout` or a stricter "do not use tools" prompt. 2. **OAuth missing**: verify with `ls ~/.gemini/antigravity-cli/installation_id`. If absent or empty, run `agy` once interactively in a regular terminal to complete the Google OAuth login.
Read more
description: Check whether the Antigravity CLI (agy) is installed, on PATH, and responding to a ping argument-hint: "" allowed-tools: Bash
Phase 0 — Stack check (ONE Bash call, no agy)
First report the whole agent stack — what's installed, what's missing, how to fix each — so the user knows which `/agy:*` capabilities are ready:
python "${CLAUDE_PLUGIN_ROOT:-$PWD}/plugins/antigravity/scripts/stack_check.py"It checks: **agy CLI** (required), **PyMuPDF/fitz** (required for `/agy:notebook` PDFs), **sqlite-vec** (optional — `/agy:notebook --semantic`), **ffmpeg** (optional — long media for `/agy:transcribe`), and **graphify** (optional — `/agy:graph`). Present the table and the fix line for anything missing. Prints `STACK n/5 present`.
Phase 1 — agy health ping
Route this to the `antigravity:agy-rescue` subagent in MODE: setup.
Pass this header block to the subagent:
MODE: setup INTENSITY: MODEL: RESUME: false WRITE_FILE: USER_TEXT:
The subagent will:
1. Resolve the `agy` binary (PATH, then `AGY_BIN`, then per-OS fallback paths). 2. Try `agy changelog` to read the current version. 3. Run a 30s ping: a minimal `--print` call expecting "pong" back. 4. Report binary path, version, and ping status.
Output rules:
- Present the final setup output to the user as-is.
- If the binary is missing, tell the user to install Antigravity:
- **Windows (PowerShell):** `irm https://antigravity.google/cli/install.ps1 | iex`
- **macOS / Linux (bash):** `curl -fsSL https://antigravity.google/cli/install.sh | bash`
After install, restart the shell so the binary lands on PATH.
- If the binary exists but ping times out (empty stdout + exit 0), the symptom is ambiguous in agy 1.0.x:
1. **Tool-call loop** (most common in v0.1.1+): the model entered an agentic loop and consumed the timeout before flushing. Re-run with a higher `--print-timeout` or a stricter "do not use tools" prompt. 2. **OAuth missing**: verify with `ls ~/.gemini/antigravity-cli/installation_id`. If absent or empty, run `agy` once interactively in a regular terminal to complete the Google OAuth login.
A local NotebookLM, multi-agent deep research, and 21 more commands — for Claude Code, powered by Google Antigravity (agy / Gemini 3.x), the official CLI that replaces the now-deprecated gemini-cli.
Repo: MarcosNahuel/antigravity-plugin-cc
Other commands on marcosnahuel-antigravity-plugin-cc.
- /ask
One-shot prompt to Antigravity (agy) — quick question, returns response verbatim. No file persistence to docs/.
Open command - /deep-research
Deep, multi-source, fact-checked web research with agy — reach for it when a decision or design depends on getting it right and a single-shot answer is not enough (architecture / tool / vendor choices, thorough landscape scans, anything you will act on). Builds an evidence
Open command - /design-review
Run a UX/visual design audit of a URL using Antigravity (agy). Captures desktop + mobile screenshots, scores 10 dimensions (hierarchy, typography, color, spacing, a11y, etc.), benchmarks against industry. Saves to docs/agy/design-reviews/.
Open command - /doc-to-md
Convert a PDF, docx, image, or other document to clean Markdown using Antigravity (agy) multimodal Gemini. Saves to docs/agy/converted/.
Open command - /graph
Build a knowledge GRAPH of a folder (code + docs) with Graphify — tree-sitter ASTs + NetworkX + Leiden communities + an interactive graph.html. The code graph is built LOCALLY and costs zero tokens on any assistant; Gemini via agy only names the communities. Then Claude reads
Open command - /media
Ask a question about an AUDIO, VIDEO or IMAGE file (or a YouTube/remote URL) with Antigravity (agy / Gemini 3.x multimodal). Beyond transcription — "what decisions were made in this meeting?", "what happens at 2:30 in the video?", "what's the tone of this voice note?". Claude
Open command

