antigravity

antigravity is an agent for coding agents from RbBtSn0w/adg. It costs 0 tokens per session (1,585 once invoked), scanned A, original, MIT.

An adapter specification for Antigravity, a Gemini-based coding agent, explaining its directory-based plugin format. Plugins use a small `plugin.json` file while other parts are found through expected files and folders.

In plain words
What is it for?
Use it when packaging or converting a plugin for Antigravity, including its skills, hooks, MCP configuration, and hook runner.
Why use it?
It removes the need to guess how Antigravity finds plugin skills, hooks, and MCP configuration. It also describes the generated files needed for those components.

Agent

Installs and runs on its own, but its text points at files inside the plugin that ships it — anything it tells you to read at a ${CLAUDE_PLUGIN_ROOT} path is only there once the plugin is installed.

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.

agentmods
npx agentmods add agents/rbbtsn0w/adg/antigravity
Clone the repo
git clone --depth 1 https://github.com/RbBtSn0w/adg

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 antigravity

README.md
[![agentmods](https://agentmods.dev/badge/agents/rbbtsn0w/adg/antigravity.svg)](https://agentmods.dev/agents/rbbtsn0w/adg/antigravity)
Your own site
<a href="https://agentmods.dev/agents/rbbtsn0w/adg/antigravity"><img src="https://agentmods.dev/badge/agents/rbbtsn0w/adg/antigravity.svg" alt="Measured on agentmods" height="20"></a>
Per session 0 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,585 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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 $0.00000 $0.01585
Opus 5 $0.00000 $0.00792
Sonnet 5 $0.00000 $0.00317
Haiku 4.5 $0.00000 $0.00159

Measured 4d ago against content hash 2f0b91957cdb, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

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 4d ago.

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.

docs/agents/antigravity.md · 157 lines

How it starts

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

Antigravity (Gemini / agy) — Adapter Specification

Based on the Agent Adapter Template.


1. Official References

  • Plugin docs: https://antigravity.google/docs/cli/plugins
  • Note: Antigravity has a convention-based discovery model. There is no rich manifest schema — plugins are discovered by directory structure and file presence.

2. Projection Output

  • Output directory: Plugin root (no subdirectory)
  • Manifest file: plugin.json (at plugin root)
  • MCP config: mcp_config.json (at plugin root, copied from source .mcp.json)
  • Hooks config: hooks.json (at plugin root, translated from canonical format)
  • Runner script: .antigravity-plugin/hook-runner.mjs (generated bridge)
  • Adapter source: src/adapters/antigravity.ts, src/adapters/antigravity-hooks.ts

3. Manifest Schema

Required fields: name only.

The projected plugin.json contains only the plugin name. All other metadata is discovered by convention (presence of sibling directories/files).

// Projected plugin.json — minimal by design
{ "name": "my-plugin" }

4. Supported Components

Component Supported Manifest Key Discovery Mechanism
Skills Auto-scan skills/ dir for sub-dirs with SKILL.md
Agents Auto-scan agents/ dir
Commands Auto-scan commands/ dir
Hooks Root hooks.json file (native schema)
MCP Root mcp_config.json file
Apps Not supported by Antigravity

Key difference: Antigravity does NOT read the manifest for component paths. It discovers components purely by scanning known directory names and file names at the plugin root. The ADG adapter materializes files at these conventional locations.


5. Skills

  • Declared form: No manifest field. Antigravity scans skills/ at the plugin root.
  • Strict mode: N/A — always auto-discovers. No explicit skill list in manifest.
  • Array encoding: N/A — not declared in manifest.
  • Auto-discovery: Scans skills/ for sub-dirs containing SKILL.md. Each sub-dir's SKILL.md YAML frontmatter provides name and description.
  • SKILL.md structure: Identical across all agents:
    skills/<name>/
    └── SKILL.md          # Required: YAML frontmatter (name, description) + body
    

Read the full file on GitHub · 157 lines

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. 4d ago First seen · 157 lines · 0 tokens per session scan A 2f0b91957cdb

Subscribe to this mod's changes

antigravity is an agent published in the GitHub repository RbBtSn0w/adg (3 stars, last pushed 1mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 1,585 tokens. 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 agents, from other repositories

security-auditor

Security engineer focused on vulnerability detection, threat modeling, and secure coding practices. Use for security-focused code review, threat analysis, or hardening recommendations.

addyosmani/agent-skills · 35 tokens

codemap

Defines agent personalities (Orchestrator, Explorer, Librarian, etc.) and manages their configuration lifecycle. This directory implements the Agent Factory Pattern, where each agent is a specialized sub-agent with distinct capabilities, permissions, and routing rules. The Orchestrator agent (src/agents/index.ts)…

alvinunreal/oh-my-opencode-slim · 0 tokens

design-reviewer

Design lead + expert design critic. Two modes: Mode A — authors the project's root DESIGN.md (design identity) at project start. Mode B — reviews built UI against DESIGN.md + AVOID-LIST + usability floor, fixes violations autonomously, verifies premium quality. Delegate when: a UI project has no DESIGN.md yet, UI…

wasintoh/toh-framework · 85 tokens

architect

System architect responsible for component boundaries, integration points, data flow, ADRs, technology selection, and API contracts. Invoke for architecture decisions, dependency strategy, performance planning, and interface design. Read-only — produces decisions and documentation.

irahardianto/awesome-agv · 48 tokens

sddp-devsetup

Analyzes the repository and guides the user through setting up their local development environment.

attilaszasz/sdd-pilot · 16 tokens

sddp-spec-validator

Scores a feature spec against quality criteria and returns structured pass/fail verdict.

attilaszasz/sdd-pilot · 20 tokens