collaborating-with-antigravity

collaborating-with-antigravity is a skill for Codex from Boulea7/agy-mcp. It costs 67 tokens per session (1,002 once invoked), scanned A, original, MIT.

A bridge for asking Google Antigravity or Gemini to perform analytical, isolated, or long-running development work. It returns the other agent’s result in a structured format.

In plain words
What is it for?
Use it for code reviews, debugging hypotheses, isolated prototypes, sandboxed execution, or background agent jobs. It supports read-only questions as well as controlled worktree-based changes.
Why use it?
Some investigations, prototypes, and extended agent loops are easier to run separately from the main conversation. Isolation can also provide a second opinion or keep side effects away from the main working tree.

Skill for Codex

Written for Codex: runs codex exec. Also seen: mentions Claude Code; mentions Codex.

Good fit Use it for code reviews, debugging hypotheses, isolated prototypes, sandboxed execution, or background agent jobs. It supports read-only questions as well as controlled worktree-based changes.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/boulea7/agy-mcp/collaborating-with-antigravity
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 Boulea7/agy-mcp --skill collaborating-with-antigravity
Clone the repo
git clone --depth 1 https://github.com/Boulea7/agy-mcp

Made for: Codex.

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 collaborating-with-antigravity

README.md
[![agentmods](https://agentmods.dev/badge/skills/boulea7/agy-mcp/collaborating-with-antigravity/github.svg)](https://agentmods.dev/skills/boulea7/agy-mcp/collaborating-with-antigravity)
Your own site
<a href="https://agentmods.dev/skills/boulea7/agy-mcp/collaborating-with-antigravity"><img src="https://agentmods.dev/badge/skills/boulea7/agy-mcp/collaborating-with-antigravity/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 collaborating-with-antigravity

Your own site · 80×15
<a href="https://agentmods.dev/skills/boulea7/agy-mcp/collaborating-with-antigravity"><img src="https://agentmods.dev/badge/skills/boulea7/agy-mcp/collaborating-with-antigravity.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 67 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,002 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. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00067 $0.01002
Opus 5 $0.00034 $0.00501
Sonnet 5 $0.00013 $0.00200
Haiku 4.5 $0.00007 $0.00100

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

Security

Grade A, and why

collaborating-with-antigravity 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 10d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (scripts/agy_bridge.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.

Origin

Copies of this mod

1 near-identical copy found in the catalogue:

skills/claude/collaborating-with-antigravity/SKILL.md · 105 lines

How it starts

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

Collaborating with Antigravity

agy-bridge is a thin JSON wrapper around the Google Antigravity (agy) CLI plus an optional gemini CLI fallback. It produces stable BridgeResponse envelopes so this skill can drive Antigravity sessions deterministically.

When to use

  • You need a second opinion on a debugging hypothesis or a code review.
  • You need to prototype a change in isolation (auto-worktree).
  • You need to run a long agent loop (planning, large refactors) without blocking your own conversation: start a background job and poll.
  • You want a sandboxed execution of code Antigravity proposes.

Do not use for trivial one-shot questions — the round-trip overhead is not worth it. Prefer direct work for those.

Quick start

# One-shot synchronous call (ask mode, no write):
python scripts/agy_bridge.py \
  --cd "/path/to/project" \
  --PROMPT "Explain the auth flow in src/auth/"

Output is a single JSON line on stdout: {"success": true, "SESSION_ID": "…", "agent_messages": "…", "adapter": {…}, …}.

Modes

--mode controls the agent persona and downstream safety policy:

Mode Use it for Worktree? Writes?
ask (default) Q&A, code reading, design discussion no no
plan Multi-step planning, breakdown no no
prototype Generate diffs for review optional no
review Code review of staged changes no no
execute Make file edits in the workspace yes requires --allow-write
browser Interactive browsing / research no no
long Multi-hour agent loop, expect to poll status no no

execute always creates a worktree by default; combine with --allow-write to opt in to mutations. The worktree default is configurable in ~/.config/agy-mcp/config.toml (see references/security.md).

Multi-turn

Capture SESSION_ID from the first response, then pass it back:

# Turn 1
python scripts/agy_bridge.py --cd "/proj" --PROMPT "Analyse src/auth/"
# → {"SESSION_ID": "abc-123", "agent_messages": "…"}

# Turn 2 (continues the same conversation)
python scripts/agy_bridge.py --cd "/proj" --SESSION_ID abc-123 \
  --PROMPT "Now propose a refactor."

Read the full file on GitHub · 105 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. 10d ago First seen · 105 lines · 67 tokens per session scan A cbe894007eb2

Subscribe to this mod's changes

collaborating-with-antigravity is a skill published in the GitHub repository Boulea7/agy-mcp (23 stars, last pushed 28d ago), licensed MIT. It adds 67 tokens to every session and 1,002 once invoked, about $0.0003 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-30.

Related

Other skills, from other repositories

crosstalk

Consult Antigravity (Gemini) from Claude Code without blocking, and route the answer to whichever of your sessions needs it. Use for wide-context reads a second model should carry (large codebase sweeps, long log or transcript analysis, broad web research), for a genuine second opinion on a design or a diagnosis, and…

obeskay/crosstalk · 143 tokens

agy-result-handling

Internal guidance for presenting agy output back to the user.

Vit129/agy-plugin-cc · 16 tokens

gemini-3-prompting

Guidance for writing effective prompts for Antigravity (agy) / Gemini 3 models.

Vit129/agy-plugin-cc · 26 tokens

agy-delegation

Use when analyzing large files (>200 lines), more than 3 files at once, deep git/grep searches, web lookups, or adversarial reviews - delegates to the Antigravity CLI via claude-agy-mcp MCP tools to save context.

PyModel/claude-agy-mcp · 57 tokens

ag-sdd

Activates the Anti-Gravity Spec-Driven Development (ag-sdd) workflow. Use this skill when the user asks to implement a feature, fix a bug, or write code in a repository that uses ag-sdd. It enforces a strict 4-phase SDD lifecycle: Discovery, Spec Generation, Sequential Execution, and Quality Signoff.

stormlive-ai/ag-sdd · 78 tokens

delegate

Use when the user wants to delegate a task to Google's Antigravity desktop app — phrases like "use gemini", "ask antigravity", "have claude in antigravity do this", "offload this", "run N agents/tasks in parallel", or "check antigravity's quota". Explains which model to pick, when to use the batch/parallel tool, and…

presidentrice/supergravity-mcp · 129 tokens