2.1 KiB
Installing Compound Engineering for Antigravity CLI (agy)
Antigravity installs CE as a native plugin bundle. The repository root is the plugin package: plugin.json plus the skills/ directory. The committed .agy/ subdirectory is a compatibility entry point for local checkouts that prefer an explicit bundle path.
One-command install (recommended)
With Antigravity CLI installed:
agy plugin install https://github.com/EveryInc/compound-engineering-plugin
Verify:
agy plugin list
agy plugin validate https://github.com/EveryInc/compound-engineering-plugin
No clone step is required. agy stages the plugin under ~/.gemini/antigravity-cli/plugins/compound-engineering/.
Local checkout install
Clone first when you need a specific branch, tag, or unpublished changes:
git clone https://github.com/EveryInc/compound-engineering-plugin
agy plugin install ./compound-engineering-plugin
Or install the bundled .agy/ entry point (equivalent manifest via symlink):
agy plugin install ./compound-engineering-plugin/.agy
Pin a release
Install from a release tag:
git clone --branch compound-engineering-vX.Y.Z --depth 1 \
https://github.com/EveryInc/compound-engineering-plugin.git
agy plugin install ./compound-engineering-plugin
Replace X.Y.Z with a tag from the releases page.
Local development
From your working copy:
agy plugin install "$PWD"
agy plugin validate "$PWD"
Edit skills under skills/ and restart agy or start a new session to pick up prose changes.
Context files
agy reads GEMINI.md and AGENTS.md as workspace context. Run agy from a project that includes those files, or from this checkout when developing CE itself.
Uninstall
agy plugin uninstall compound-engineering
Legacy Gemini CLI import
If you previously installed CE under Gemini CLI:
agy plugin import gemini
Prefer the native install commands above for new setups.