Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add kellykampen/agent-skills --skill antigravity-cligit clone --depth 1 https://github.com/kellykampen/agent-skillsWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/kellykampen/agent-skills/antigravity-cli)<a href="https://agentmods.dev/skills/kellykampen/agent-skills/antigravity-cli"><img src="https://agentmods.dev/badge/skills/kellykampen/agent-skills/antigravity-cli.svg" alt="Measured on agentmods" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00219 | $0.02926 |
| Opus 5 | $0.00110 | $0.01463 |
| Sonnet 5 | $0.00044 | $0.00585 |
| Haiku 4.5 | $0.00022 | $0.00293 |
Grade B, and why
antigravity-cli scanned grade B with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 8d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Unrestricted tool accessmediumExcessive agency
A wildcard tool grant or "run any command" leaves no least-privilege boundary at all.
agent can run arbitrary commands and edit anything in the workspace. Use it for trusted repos How it starts
The opening of the file, as written. The whole thing — 203 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Antigravity CLI (agy)
agy is Google's terminal coding agent (Antigravity; the successor to Gemini CLI). It runs
Gemini, Claude, and open models behind one harness with tools for reading/editing files and
running commands. Binary lives at ~/.local/bin/agy.
Why you reach for it: it is a different harness from the Claude session you're in. That makes it valuable for two things you can't do well from inside Claude:
- Cost/speed arbitrage — push mechanical or high-volume work onto a cheaper, faster model (Gemini 3.5 Flash) instead of spending premium tokens.
- Genuinely independent review — a Gemini- or GPT-OSS-backed reviewer is a real second opinion, not the same model grading its own homework. This is the "different-harness QC" pattern: the author is Claude, the reviewer is Antigravity.
Before doing anything, confirm it's installed and current: agy --version (expect 1.0.x).
If the command is missing, tell the user to install it — don't try to install it yourself.
Defaults — start here
When you just need to hand work to agy and the user hasn't specified details, this is the safe default shape. Adjust from here; don't reason it out from scratch each time.
cd <repo-or-worktree> # scope the workspace
agy -p "<goal + an explicit verification step>" \
--model "Gemini 3.1 Pro (High)" \ # capable default; drop to Flash for grunt work
--dangerously-skip-permissions \ # or --sandbox; a headless run hangs without one
--print-timeout 20m # bump above the 5m default for anything non-trivial
Then pick deliberately: model by task difficulty (table below), timeout by expected runtime, permission flag by how much you trust the workspace, and — for review/handoff — tell agy in the prompt to write its result to a file you can poll.
Gotchas that will bite you
- A wrong
--modelstring does not error — it silently runs the default model. Copy strings verbatim fromagy models. A typo means you paid for the wrong tier and never knew. - The default
--print-timeoutis 5m, and if it fires mid-run you lose all output. Size it to the task; a real refactor or full-repo review needs 15–20m+. - Without
--dangerously-skip-permissionsor--sandbox, a-prun hangs waiting for interactive tool approval that never comes. - "Independent" review on a Claude model isn't independent if you (the caller) are Claude. Route QC to Gemini or GPT-OSS. See the harness-diversity rule below.
- Some commands in blog posts don't exist in the installed CLI (e.g.
agy run,agy inspect,-m,/context,config.toml). Worse, an unknown subcommand doesn't error —agyprints its usage banner and exits 0, so a bogusagy inspectlooks like it worked while doing nothing. Trustagy --help/agy helpover anything you half-remember.
What ships with it
1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 8d ago First seen · 203 lines · 219 tokens per session scan B e4333a9940da
antigravity-cli is a skill published in the GitHub repository kellykampen/agent-skills (2 stars, last pushed 1mo ago), licensed MIT. It adds 219 tokens to every session and 2,926 once invoked, about $0.0011 per session on Opus 5. A static security scan graded it B with 1 finding (unrestricted tool access). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
systematic-debugging
Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes.
local-ai-agents
Build local-first AI agents that run entirely on a developer workstation with Microsoft Foundry Local and Qwen function-calling models. Covers Small Language Models (SLMs), the OpenAI-compatible local endpoint, sandboxed local tools, local RAG with Chroma, local MCP servers, hybrid cloud/local routing, and the…
next-cache-components-adoption
Turn on Cache Components in a Next.js app and resolve the blocking routes it surfaces. Use when the user wants to enable, adopt, or migrate to Cache Components, flip the cacheComponents flag, work through a flood of blocking-prerender / instant validation errors, run the cache-components-instant-false codemod, or…
next-cache-components-optimizer
Drive a Next.js route to instant navigation by setting up an agentic loop, under Cache Components / PPR, on initial load (hard navigation) and client-side navigation (soft navigation). Encode the goal as a failing @next/playwright instant() e2e and work it to green, one verified route at a time; the shipped test then…
next-partial-prefetching-adoption
Turn on Partial Prefetching in a Next.js app and work through the insights it surfaces. Use when the user wants to enable or adopt Partial Prefetching, flip the partialPrefetching flag, opt routes in with export const prefetch = 'partial', audit Link prefetch={true} behavior, preserve existing prefetched UI with…
chronicle
Analyze Copilot session history for standup reports, usage tips, session search, and session reindexing. Use when the user asks for a standup, daily summary, usage tips, workflow recommendations, wants to search or find past sessions by keyword/file/PR, wants to reindex their session store, or asks about deleting…