promptgarten ๐ŸŒฑ
๐ŸŒ ES

Command reference ยท Antigravity CLI

agy plugin install <path>

Installs a local or downloaded plugin directory.

agy plugin install /path/to/local/plugin stages a plugin directory into your local profile. External plugin installs automatically resolve and initialize git submodules; installing directly from GitHub subpaths (with branch resolution) is also supported. The import copies the entire plugin directory, including non-skill subfolders like shared/.

โœ… WHEN TO USE IT?

Wire in a locally developed plugin directory

agy plugin install ./my-plugin

Install a plugin straight from a GitHub repo or subpath

agy plugin install github.com/org/repo/path/to/plugin

โ›” WHEN NOT TO?

You only want to bring over legacy Gemini CLI extensions

plugin install expects a plugin in the native plugin.json format, not a Gemini CLI extension directly.

Better: Use agy plugin import gemini to convert extensions first

SOURCES