Command reference ยท Antigravity CLI
agy plugin disable <name>
Suspends a plugin without uninstalling it.
agy plugin disable <plugin_name> is a terminal subcommand (not a slash command) and suspends an installed plugin's tools without removing its directory or configuration โ the documentation describes this as "Suspend a plugin's tools without deleting its assets." The plugin remains fully present on disk but no longer appears as an active capability in the agent.
agy plugin enable <name> reverses this state at any time. Every plugin comes with a plugin.json; the required field is name (alphanumeric characters, hyphens, and underscores only), and an optional description can be added.
disable isn't enough for a complete removal: the directory and registry entries remain in place โ for that, agy plugin uninstall <name> is the right command.
โ WHEN TO USE IT?
Disable a plugin on a trial basis
agy plugin disable my-plugin to narrow down conflicts with another plugin
Narrow down error sources before debugging
Disable several plugins one by one with agy plugin disable to find out which one is causing an error
โ WHEN NOT TO?
Permanently remove a plugin completely
disable leaves the directory and registry entries untouched.
Better: Use agy plugin uninstall <name>
SOURCES
- Antigravity CLI docs: Plugins โ antigravity.google