Command reference ยท Antigravity CLI
agy plugin enable <name>
Reactivates a previously disabled plugin without reinstalling it.
agy plugin enable <name> is a terminal subcommand of the agy binary, not a slash command: you type it in your normal shell, not in the prompt box of the interactive session. It belongs to the Antigravity CLI's plugin management pipeline, which also includes agy plugin list, agy plugin install, agy plugin disable, agy plugin uninstall, and agy plugin validate.
The command reactivates a plugin that was previously paused with agy plugin disable <name>. According to the docs, the disable/enable pair serves to suspend a plugin's tools without deleting its files โ enable reverses this suspension. The plugin must therefore already be installed: enable doesn't install anything new or reload any files, it just re-enables already existing tools and capabilities for the agent, without a renewed installation step.
โ WHEN TO USE IT?
Make a paused plugin usable again
agy plugin enable my-plugin โ after you had previously paused it for testing with agy plugin disable
Reactivate a specific plugin after taking stock
Check agy plugin list to see which plugins are disabled, then run agy plugin enable <name> for one of them
โ WHEN NOT TO?
The plugin isn't installed yet
enable only re-enables an already installed but disabled plugin โ it has no effect for a new plugin.
Better: First use agy plugin install <path>, after that the plugin is active
SOURCES
- Antigravity CLI docs: Plugins โ antigravity.google