Claude Skill MartBrowse skillsQuick linesLearn by videoTerminal guideWhat is a Skill?
Back to list

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.

AutomationAdvanced43040AI 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 --help and agy models before 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 agy is missing or undiscoverable: report the absence and stop — no silent fallback to another runtime, never route through claude -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

  1. "Dispatch this packet with agy" → the skill lists the current flags, chooses --sandbox or print mode to match declared effects, then reports which posture it used.
  2. Headless CI run → uses agy -p; a run exceeding the 5-minute print timeout is reported as timed out rather than as a result.
  3. 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)
  1. Download the ZIP with the button below.
  2. In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
  3. Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Download 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.

  1. Open a terminal.
  2. Clone the repository: git clone https://github.com/boshu2/agentops.git
  3. Create the skill folder: mkdir -p ~/.claude/skills/agy-native
  4. Copy the files: cp -r agentops/images/gemini/skills/agy-native/* ~/.claude/skills/agy-native/
  5. Check the prerequisite: the AGY (Antigravity) CLI must be installed and agy --help must work; otherwise the skill will report the absence and stop.
  6. Restart Claude Code and test with an explicit request such as "run this with agy".
  7. Caution: --dangerously-skip-permissions auto-approves every tool call — use it only after confirming the authorized blast radius.
View source on GitHubLicense: Apache-2.0