This plugin integrates Google Antigravity into OpenBot, allowing you to use the agy CLI as an autonomous agent within your chat.
- Autonomous Reasoning: Leverages Antigravity's multi-step agent loop.
- CLI Wrapper: Seamlessly runs the
agybinary and streams output. - Interactive Auth: Handles Antigravity's OAuth flow directly in the OpenBot UI.
- Thread Persistence: Remembers conversation context across chat messages.
The plugin requires the agy binary to be installed on your system.
macOS / Linux:
curl -fsSL https://antigravity.google/cli/install.sh | bashWindows (PowerShell):
irm https://antigravity.google/cli/install.ps1 | iexnpm install
npm run build- When you send a message to the Antigravity agent, the plugin spawns a child process running
agy -p "<your prompt>". - If authorization is required, a UI widget will appear asking for your Antigravity auth code.
- The plugin captures the CLI's output and streams it back to the OpenBot chat.
- The Antigravity
conversation_idis stored in OpenBot's variable storage to maintain context.
MIT