← All plugins
agy
v0.1.4Codex plugin for delegating work to the Antigravity CLI (agy).
CodexClaude CodeAgent Plugins2 skills1 MCP serverstdio
by IIC MasterMIT6updated 7 hours ago
Source
git clone https://github.com/iicmaster/antigravity-pluginsClone the source, then follow the repository's marketplace instructions for your runtime. The plugin root is plugins/agy/ inside the repository.
Layout
plugins/agy/
├── .codex-plugin/plugin.json├── .claude-plugin/plugin.json├── plugin.json├── skills/agy/SKILL.md├── skills/agy-cli-runtime/SKILL.md└── .mcp.json
Skills2
agyskills/agy/SKILL.md
Use when Codex should delegate a review, adversarial review, bounded rescue task, setup check, status check, result lookup, or cancellation to the Antigravity CLI.
agy-cli-runtimeskills/agy-cli-runtime/SKILL.md
Internal helper contract for invoking Antigravity CLI from Claude Code and Codex plugin adapters
MCP servers1
agystdio
- command
- bash
- args
- -lc set -e; PLUGIN_ROOT="${CODEX_PLUGIN_ROOT:-${CLAUDE_PLUGIN_ROOT:-}}"; if [ -z "$PLUGIN_ROOT" ]; then if [ -f ./scripts/agy-mcp-server.mjs ]; then PLUGIN_ROOT="$PWD"; elif [ -f ./plugins/agy/scripts/agy-mcp-server.mjs ]; then PLUGIN_ROOT="$PWD/plugins/agy"; else for candidate in "$HOME"/.codex/plugins/cache/*/agy/*; do if [ -f "$candidate/scripts/agy-mcp-server.mjs" ]; then PLUGIN_ROOT="$candidate"; break; fi; done; fi; fi; if [ -z "$PLUGIN_ROOT" ]; then echo "Unable to locate AGY plugin root" >&2; exit 1; fi; exec node "$PLUGIN_ROOT/scripts/agy-mcp-server.mjs"
MCP configuration uses runtime-provided plugin path placeholders such as ${PLUGIN_ROOT} or ${CLAUDE_PLUGIN_ROOT}. Review the manifest for the runtime-specific expansion rules.
Manifests3
plugins/agy/.codex-plugin/plugin.json
{
"name": "agy",
"version": "0.1.4",
"description": "Codex plugin for delegating work to the Antigravity CLI (agy).",
"author": {
"name": "IIC Master"
},
"license": "MIT",
"keywords": [
"agy",
"antigravity",
"codex",
"review",
"rescue"
],
"skills": "./skills/",
"mcpServers": "./.mcp.json",
"interface": {
"displayName": "AGY",
"shortDescription": "Delegate review and rescue workflows to Antigravity CLI",
"longDescription": "Use AGY from Codex to run Antigravity CLI setup checks, review current git changes, delegate bounded rescue tasks, and inspect background job results through the shared companion runtime.",
"developerName": "IIC Master",
"category": "Coding",
"capabilities": [
"Interactive",
"Read",
"Write"
],
"websiteURL": "https://github.com/iicmaster/antigravity-plugins",
"privacyPolicyURL": "https://github.com/iicmaster/antigravity-plugins",
"termsOfServiceURL": "https://github.com/iicmaster/antigravity-plugins",
"defaultPrompt": [
"Use AGY to review this change",
"Delegate a bounded rescue task to AGY"
],
"brandColor": "#111111",
"screenshots": []
}
}plugins/agy/.claude-plugin/plugin.json
{
"name": "agy",
"version": "0.1.4",
"description": "Claude Code plugin for delegating work to the Antigravity CLI (agy).",
"author": {
"name": "IIC Master"
}
}plugins/agy/plugin.json
{
"$schema": "https://agent-plugins.org/schemas/1.0.0/plugin.schema.json",
"name": "agy",
"version": "0.1.4",
"description": "Antigravity CLI (agy) plugin for review, rescue, and autonomous agent workflows.",
"author": {
"name": "IIC Master"
},
"homepage": "https://github.com/iicmaster/antigravity-plugins#readme",
"repository": "https://github.com/iicmaster/antigravity-plugins",
"license": "MIT",
"keywords": [
"agy",
"antigravity",
"review",
"rescue"
]
}