AGY Native Runtime Adapter
A gated adapter that runs the AGY (Antigravity) runtime only when explicitly requested, discovers its live CLI surface first, discloses the permission posture, and returns run evidence.
AutomationAdvanced★ 430⑂ 40AI score 7/10Last updated: Aug 28, 2026
What it does
- Fires only on explicit selection: "agy", "antigravity", "AGY evidence".
- Requires discovering the live command surface via
agy --helpandagy modelsbefore acting, defeating the "wrapper drift" failure mode of remembered flags. - Forces you to pick and disclose a permission posture: interactive default,
--sandbox(restricted terminal),--dangerously-skip-permissions(auto-approves everything),-p/--print(headless, 5m default timeout). - If
agyis missing or undiscoverable: report the absence and stop — no silent fallback to another runtime, never route throughclaude -p. - Keeps author and validator sessions distinct; validators stay read-only and hand judgment to the Validate phase.
Who it's for
- Engineers actually running the AGY / Antigravity CLI.
- Teams operating AgentOps-style multi-runtime pipelines with separated author/validator roles.
- Environments that must audit agent blast radius and keep run evidence.
Examples
- "Dispatch this packet with agy" → the skill lists the current flags, chooses
--sandboxor print mode to match declared effects, then reports which posture it used. - Headless CI run → uses
agy -p; a run exceeding the 5-minute print timeout is reported as timed out rather than as a result. - Validation step → opens a fresh AGY session instead of reusing the authoring one, produces read-only judgment, and defers the verdict to Validate.
· · · Install guide · · ·
Try it now, no install
Paste this into Claude to use the skill without installing anything.
Read the instructions in this file and follow them to help me: https://raw.githubusercontent.com/boshu2/agentops/HEAD/images/gemini/skills/agy-native/SKILL.md What I want: (describe your task here)
If Claude can't open the link, open it yourself and paste the contents instead.
↓ If it works for you, download the ZIP below and install it. Then it runs on its own — no pasting each time.
Install in the Claude app (no terminal)
- Download the ZIP with the button below.
- In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
- Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Install in Claude Code
Let Claude do it — paste this into Claude Code
Install the skill I found on Claude Skill Mart. Copy the images/gemini/skills/agy-native folder from the GitHub repo boshu2/agentops into my ~/.claude/skills/agy-native/. When it's done, tell me in one line what this skill can do.
Install with a command instead
git clone https://github.com/boshu2/agentops.git && mkdir -p ~/.claude/skills/agy-native && cp -r agentops/images/gemini/skills/agy-native/* ~/.claude/skills/agy-native/⚠ This is a third-party skill. Check the source repository before installing.
- Open a terminal.
- Clone the repository:
git clone https://github.com/boshu2/agentops.git - Create the skill folder:
mkdir -p ~/.claude/skills/agy-native - Copy the files:
cp -r agentops/images/gemini/skills/agy-native/* ~/.claude/skills/agy-native/ - Check the prerequisite: the AGY (Antigravity) CLI must be installed and
agy --helpmust work; otherwise the skill will report the absence and stop. - Restart Claude Code and test with an explicit request such as "run this with agy".
- Caution:
--dangerously-skip-permissionsauto-approves every tool call — use it only after confirming the authorized blast radius.
View source on GitHub ↗License: Apache-2.0