
Agy
- Updated June 7, 2026
- RambleRainbow/agy-plugin-cc
agy is a Claude Code skill in the AI & Agent Building category. Use Agy (Antigravity CLI) from Claude Code to review code or delegate tasks.
Key points
- agy
- AI & Agent Building
- AI-coding skill
Agy by the numbers
- Data as of Jul 7, 2026 (Skillselion catalog sync)
/plugin marketplace add RambleRainbow/agy-plugin-cc/plugin install agy@agy-plugin-ccAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Last updated | June 7, 2026 |
|---|---|
| Repository | RambleRainbow/agy-plugin-cc ↗ |
What it does
Use Agy (Antigravity CLI) from Claude Code to review code or delegate tasks.
README.md
Agy Plugin for Claude Code
Use Agy (Antigravity CLI) from inside Claude Code to delegate tasks or run code reviews.
This plugin is for Claude Code users who want an easy way to start using Agy from the workflow they already have.
What You Get
/agy:rescueto delegate a task to Agy/agy:reviewfor a code review via Agy/agy:adversarial-reviewfor a steerable challenge review/agy:status,/agy:result,/agy:cancelto manage background jobs/agy:setupto check whether Agy is installed- Conversational activation — just say "ask Agy to fix this" in normal conversation
Requirements
- Agy (Antigravity CLI) installed and on your PATH
- Install from antigravity.google
Install
Add the marketplace in Claude Code:
/plugin marketplace add RambleRainbow/agy-plugin-cc
Install the plugin:
/plugin install agy@agy-plugin-cc
Reload plugins:
/reload-plugins
Then run:
/agy:setup
/agy:setup will tell you whether Agy is installed and ready.
After install, you should see:
- the slash commands listed below
- the
agy:agy-rescuesubagent in/agents
Usage
/agy:rescue
Delegates a task to Agy. Use it when you want Agy to investigate a bug, try a fix, or do any coding work.
[!NOTE] Depending on the task, Agy may take a while. Press
ctrl+bduring execution to move it to the background.
Examples:
/agy:rescue investigate why the tests are failing
/agy:rescue fix the auth bug with the smallest safe patch
/agy:rescue --continue
Use --continue to resume Agy's most recent conversation.
You can also just ask for a task to be delegated to Agy in normal conversation:
Ask Agy to redesign the database connection to be more resilient.
/agy:review
Runs a code review on your current uncommitted changes via Agy.
Examples:
/agy:review
/agy:review --base main
/agy:review look for race conditions
Use --base <ref> to review your branch against a base branch. This command is read-only.
/agy:adversarial-review
Runs a steerable review that questions the chosen implementation and design.
Use it to pressure-test assumptions, tradeoffs, failure modes, and whether a different approach would have been safer or simpler.
Examples:
/agy:adversarial-review
/agy:adversarial-review --base main challenge whether this was the right caching design
/agy:adversarial-review look for race conditions and question the chosen approach
This command is read-only. It does not fix code.
/agy:status
Shows running Agy jobs.
/agy:status
/agy:result
Shows the result of a finished Agy job.
/agy:result
/agy:cancel
Cancels an active background Agy job.
/agy:cancel
/agy:setup
Checks whether Agy is installed and available on your system.
/agy:setup
Typical Flows
Review Before Shipping
/agy:review
Hand A Problem To Agy
/agy:rescue investigate why the build is failing in CI
Start Something Long-Running
/agy:rescue investigate the regression
Then press ctrl+b to move it to the background, and check in with:
/agy:status
/agy:result
How It Works
This plugin wraps the Agy CLI using agy --print for non-interactive execution. It delegates tasks through Claude Code's native subagent mechanism (agy:agy-rescue), making Agy available as both a slash command and a conversationally-activated agent.
The agy:agy-rescue subagent can be triggered in two ways:
- Explicitly via
/agy:rescue <task> - Proactively when Claude Code determines a task would benefit from Agy's independent analysis — no slash command needed
Inspired By
This plugin is inspired by codex-plugin-cc by OpenAI, which integrates Codex into Claude Code. The architecture was redesigned from scratch to work with Agy's CLI-based interface rather than Codex's JSON-RPC app-server protocol.
Contributing
See CONTRIBUTING.md for development setup and guidelines.