agy

agy is a skill for Claude Code from sparklingneuronics/sparkling-skills. It costs 263 tokens per session (4,189 once invoked), scanned A, original, MIT.

A routing guide for sending tasks to Google's Antigravity command-line tool, which can use several AI models.

In plain words
What is it for?
For asking Antigravity or Gemini to review code, validate plans, handle non-coding tasks, continue a prior delegated conversation, or generate images when requested.
Why use it?
It gives developers a way to request another model's opinion or delegate a task while keeping their main coding session open.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: mentions Claude Code; mentions Codex; mentions Gemini CLI.

Part of the dispatch plugin — 2 skills, 3 commands shipped together

Good fit For asking Antigravity or Gemini to review code, validate plans, handle non-coding tasks, continue a prior delegated conversation, or generate images when requested.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/sparklingneuronics/sparkling-skills/agy
Install

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.

Any agent
npx skills add sparklingneuronics/sparkling-skills --skill agy
Clone the repo
git clone --depth 1 https://github.com/sparklingneuronics/sparkling-skills

Made for: Claude Code.

Or install dispatch, the plugin that ships this one along with the rest of its 2 skills, 3 commands.

Wrote 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.

agentmods badge for agy

README.md
[![agentmods](https://agentmods.dev/badge/skills/sparklingneuronics/sparkling-skills/agy/github.svg)](https://agentmods.dev/skills/sparklingneuronics/sparkling-skills/agy)
Your own site
<a href="https://agentmods.dev/skills/sparklingneuronics/sparkling-skills/agy"><img src="https://agentmods.dev/badge/skills/sparklingneuronics/sparkling-skills/agy/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for agy

Your own site · 80×15
<a href="https://agentmods.dev/skills/sparklingneuronics/sparkling-skills/agy"><img src="https://agentmods.dev/badge/skills/sparklingneuronics/sparkling-skills/agy.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 263 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 4,189 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5.1 $0.00263 $0.04189
Opus 5 $0.00131 $0.02094
Sonnet 5 $0.00053 $0.00838
Haiku 4.5 $0.00026 $0.00419

Measured 11d ago against content hash 2d7d9364fd7e, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

agy scanned grade A with 0 findings 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 11d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (evals/lint_agy_commands.py), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

plugins/dispatch/skills/agy/SKILL.md · 172 lines

How it starts

The opening of the file, as written. The whole thing — 172 lines — stays where its author put it; the contents beside it link to each section on GitHub.

agy — delegate to Google Antigravity (multi-model)

Delegate a prompt to Antigravity's agy CLI and bring the result back. agy is Google's agentic CLI and the sanctioned successor to gemini-cli's individual tier (which Google deprecated) — it authenticates with a free Google account and routes to multiple models: Gemini 3.x, Claude Sonnet/Opus 4.6, and GPT-OSS. The user keeps Claude Code open while another model handles the side task.

When to use

Trigger on:

  • /agy <prompt> or /gemini <prompt> — explicit invocation
  • "ask agy …", "ask gemini …", "run agy …", "have antigravity …", "get agy's take on …"
  • "check with agy", "validate with gemini", "see what agy thinks" — generic delegation; you infer the topic (the user won't name it)
  • second opinions / parallel checks on anything — code, and non-coding: "have agy review this email", "see what gemini thinks of this plan"
  • "continue with agy", "resume with gemini", "/agy resume" — resume the matching conversation (see Topic-aware sessions)
  • "use agy to create an image / illustration of X", "have gemini illustrate this" — image generation, only when agy/gemini is named (see Images)

Naming the tool picks the model (see Parameters):

  • "gemini" → a Gemini model (this is the gemini-cli replacement path)
  • "agy" / "antigravity" → agy's default (Gemini 3.5 Flash), or a model you name
  • "with Claude Opus / Sonnet", "a Claude take via agy" → that Claude model
  • "with GPT" → GPT-OSS

Do NOT trigger for:

  • Anything where the user wants Claude itself to do the work ("you write it", "don't delegate this")
  • delegation aimed only at Codex (/codex — "ask codex …"). A request naming both codex and agy/gemini triggers both skills; handle the agy portion here.
  • A bare request with no tool named — "review my PR", "create an image" — naming the tool is how the user chooses one
  • The homonyms — "my partner's a Gemini" (the zodiac sign), "does anti-gravity exist in physics" — these name no tool
  • Questions about agy or its setup, not delegations to it — "explain antigravity's permission model", "help me install / sign in to agy", "how do I run agy interactively"

Read the full file on GitHub · 172 lines

Files

What ships with it

4 files 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.

Changes

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.

  1. 11d ago First seen · 172 lines · 263 tokens per session scan A 2d7d9364fd7e

Subscribe to this mod's changes

agy is a skill published in the GitHub repository sparklingneuronics/sparkling-skills (6 stars, last pushed 3d ago), licensed MIT. It adds 263 tokens to every session and 4,189 once invoked, about $0.0013 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

improve-code-quality

Guided journey from a working-but-untested vibe-coded prototype to a production-ready product with tests, clean structure, a business-rules boundary, and resilience at scale. Orchestrates nine skills phase by phase - working-with-legacy-code, clean-code, refactoring-patterns, software-design-philosophy…

wondelai/skills · 227 tokens

refactoring-patterns

Apply named refactoring transformations to improve code structure without changing behavior. Use when the user mentions "refactor this", "code smells", "extract method", "replace conditional", "technical debt", "move method", "inline variable", "decompose conditional", or "clean up this messy code". Also trigger when…

wondelai/skills · 125 tokens

team-review

Review changed code for reuse, quality, and efficiency using a team of persistent named reviewers. This skill should be used when the user says "team review", "review with team", or wants parallel code review with persistent team members for follow-up questions. Similar to /subagent-review but reviewers persist after…

NikiforovAll/claude-code-rules · 65 tokens

roslyn-query

Query .NET/C# codebases using Roslyn AST analysis via dotnet run file. Use for tracing data flow, auditing API usage, finding pattern violations, or ad-hoc codebase queries.

NikiforovAll/claude-code-rules · 44 tokens

reviewer

Get a second-opinion review from Google's Antigravity CLI (agy staffer, fast Gemini) - of code (a diff, PR, working tree) or of a decision, plan, or design. Use when the user says /agy:reviewer, "have agy review this", "second opinion on my diff/PR/plan", or after finishing work and wanting an independent verifier…

keli-wen/agy-staff · 94 tokens

review-responder

Use when receiving feedback on code you implemented, responding to reviewer comments, deciding which review suggestions to implement, or pushing back on incorrect review feedback.

Joncik91/ucai · 33 tokens