This document describes all commands, settings, and keybindings exposed by the Antigravity Auto Accept extension.
All commands are accessible via the Command Palette (Ctrl+Shift+P or Cmd+Shift+P).
Title: Toggle Unlimited Auto-Accept
Description: Toggles the auto-accept feature on or off. When enabled, the extension automatically accepts all pending agent steps.
Usage:
- Command Palette: "Toggle Unlimited Auto-Accept"
- Keyboard:
Ctrl+Alt+Shift+U(Windows/Linux) orCmd+Alt+Shift+U(Mac) - Status Bar: Click the Auto-Accept indicator
Title: Toggle Unlimited Auto-Retry (CDP)
Description: Toggles the auto-retry feature on or off. When enabled, the extension automatically clicks the "Retry" button when the agent encounters an error.
Usage:
- Command Palette: "Toggle Unlimited Auto-Retry (CDP)"
- Keyboard:
Ctrl+Alt+Shift+R(Windows/Linux) orCmd+Alt+Shift+R(Mac) - Status Bar: Click the Auto-Retry indicator
Requirements: Antigravity must be started with --remote-debugging-port flag.
Title: Set CDP Port for Auto-Retry
Description: Opens an input dialog to set the Chrome DevTools Protocol port. This port is used to communicate with Antigravity for the auto-retry feature.
Usage:
- Command Palette: "Set CDP Port for Auto-Retry"
Input: A number between 1 and 65535 (default: 9222)
Persistence: The new port is saved to user settings.
Title: List Antigravity Commands (Debug)
Description: Lists all registered VS Code commands related to Antigravity, Agent, Retry, Allow, Confirm, and Cockpit. Useful for debugging and discovering available commands.
Usage:
- Command Palette: "List Antigravity Commands (Debug)"
Output: Results are displayed in a new Output channel panel.
All settings are prefixed with antigravity-auto-accept.
| Property | Value |
|---|---|
| Type | number |
| Default | 9222 |
| Minimum | 1 |
| Maximum | 65535 |
The Chrome DevTools Protocol port for Antigravity remote debugging.
JSON Example:
{
"antigravity-auto-accept.cdpPort": 9222
}| Property | Value |
|---|---|
| Type | boolean |
| Default | true |
Enable or disable auto-retry via CDP when the agent encounters an error.
JSON Example:
{
"antigravity-auto-accept.autoRetryEnabled": true
}| Command | Windows/Linux | Mac |
|---|---|---|
unlimited.toggle |
Ctrl+Alt+Shift+U |
Cmd+Alt+Shift+U |
unlimited.toggleRetry |
Ctrl+Alt+Shift+R |
Cmd+Alt+Shift+R |
You can customize these keybindings in your keybindings.json:
[
{
"key": "ctrl+alt+a",
"command": "unlimited.toggle"
},
{
"key": "ctrl+alt+r",
"command": "unlimited.toggleRetry"
}
]| State | Display | Tooltip |
|---|---|---|
| ON | ✅ Auto-Accept: ON |
Click to pause |
| OFF | 🛑 Auto-Accept: OFF |
Click to resume |
Position: Right side, priority 10000
Click Action: Executes unlimited.toggle
| State | Display | Tooltip |
|---|---|---|
| ON | 🔄 Retry: ON (9222) |
Shows current port, click to disable |
| OFF | ⏸️ Retry: OFF |
Click to enable |
Position: Right side, priority 9999
Click Action: Executes unlimited.toggleRetry
ID: Antigravity Auto-Accept
Description: Logs retry button click attempts and other extension activities.
Sample Output:
[14:32:15] ✅ Retry button clicked via CDP (target: Antigravity Agent)
ID: Antigravity Commands
Description: Created by the debug command to list all Antigravity-related commands.
Usage: Run List Antigravity Commands (Debug) command.
The extension activates on:
{
"activationEvents": ["onStartupFinished"]
}This means the extension loads after VS Code/Antigravity has fully started.
The extension calls these internal Antigravity commands:
| Command | Description |
|---|---|
antigravity.agent.acceptAgentStep |
Accept pending agent step |
antigravity.terminal.accept |
Accept terminal command |
antigravity.terminalCommand.accept |
Accept terminal command (alternate) |
antigravity.command.accept |
Accept general command |
antigravity.agent.confirmStep |
Confirm step execution |
agCockpit.confirm |
Cockpit confirmation |
antigravity.confirm |
General confirmation |
antigravity.agent.allowOnce |
Allow permission once |
antigravity.agent.allowConversation |
Allow for entire conversation |
agCockpit.allowOnce |
Cockpit allow once |
agCockpit.allowConversation |
Cockpit allow conversation |
antigravity.allow |
General allow |
Note: These commands may fail silently if there's nothing to accept, which is expected behavior.