Skip to content
Available on:
Antigravity 2.0Antigravity CLIAntigravity IDE

Plugins package reusable skills, background subagents, linting rules, Model Context Protocol (MCP) servers, and lifecycle hooks into a single deployable asset.

A plugin is a directory containing a required manifest file (plugin.json) and optional subdirectories for different customization types:

plugins/<plugin-name>/
├── plugin.json       # Required marker and manifest file
├── mcp_config.json   # Optional MCP server definitions
├── hooks.json        # Optional hooks definition
├── skills/           # Optional skills directory
│   └── <skill-name>/
│       └── SKILL.md
├── agents/           # Optional subagent definition templates
│   └── <agent-name>.md
└── rules/            # Optional rules directory
    └── <rule-name>.md

Every plugin requires a plugin.json file at its root to identify the directory as a plugin and define its metadata:

{
  "$schema": "https://antigravity.google/schemas/v1/plugin.json",
  "name": "my-custom-plugin",
  "description": "A brief description of what my plugin does."
}
FieldTypeRequiredDescription
nameStringYes (CLI) / Optional (2.0 & IDE)The unique, machine-readable name of the plugin (matches ^[a-zA-Z0-9-_]+$). Required when managing plugins via Antigravity CLI commands; defaults to the folder name if omitted in Antigravity 2.0 or Antigravity IDE.
descriptionStringNoA brief human-readable description of the plugin’s purpose, displayed in plugin listings.

To enable automatic autocomplete and validation in editors like VS Code or JetBrains IDEs, include the $schema key pointing to the official schema URL:

"$schema": "https://antigravity.google/schemas/v1/plugin.json"
{
  "$schema": "https://antigravity.google/schemas/v1/plugin.json",
  "title": "Antigravity Plugin Manifest",
  "description": "Schema for Antigravity plugin manifest files (plugin.json)",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "The unique, machine-readable name of the plugin. Must contain only alphanumeric characters, hyphens, and underscores.",
      "pattern": "^[a-zA-Z0-9-_]+$"
    },
    "description": {
      "type": "string",
      "description": "A brief human-readable description of the plugin's purpose and capabilities."
    }
  },
  "required": ["name"],
  "additionalProperties": false
}

A plugin can contain any of the following components:

  • skills/: subdirectories containing a SKILL.md file with instructions for the agent.
  • agents/: markdown files defining custom subagents and persona configurations.
  • rules/: markdown files defining behavioral constraints or style guidelines.
  • mcp_config.json: declarations connecting Antigravity to external tool servers.
  • hooks.json: event handlers executing shell commands before or after tool calls.

Follow the instructions below to install and manage plugins on your preferred surface:

Antigravity 2.0 provides curated plugins created by Google that you can install directly from the application interface:

  1. Open the Customizations panel.
  2. Browse available plugins and select Install.
  3. To learn more about available Google plugins, refer to the Build with Google guide.

You can install custom plugins by placing their directories in either of the following locations:

  • Workspace level: place your plugin folder in .agents/plugins/ at the root of your workspace. The plugin activates only when working in that project.
  • Global level: place your plugin folder in ~/.gemini/config/plugins/. The plugin activates across all workspaces on your workstation.