The Ultimate AI Code Acceptance Tool for VS Code
Stop clicking "Accept". Start coding.
Kayorama Autopilot is the missing link between your AI assistant and your code editor. It automatically detects and accepts code suggestions, chat responses, and refactoring previews, allowing you to stay in the flow.
Compatible with:
- ✅ GitHub Copilot (Inline & Chat)
- ✅ Supermaven
- ✅ VS Code Native Chat
- ✅ Refactoring Previews
Out of the box, Autopilot hooks into VS Code's native command system to automatically trigger "Accept" actions for:
- Inline Completions (
Tab) - Chat Responses (
Insert) - Refactoring Previews (
Apply)
For power users, the CDP Engine (Chrome DevTools Protocol) pierces through VS Code's internal Iframes and Webviews to find and click buttons that the native API can't reach.
- "Accept all" buttons in complex Chat interfaces.
- "Apply" buttons in propriety extension sidebars.
- Green Flash: Visual confirmation when a button is clicked.
- Text Recognition: Prioritizes exact matches like
"Accept all","Apply","Insert". - Blacklist Protection: actively avoids destructive text like
"Delete","Discard","Cancel". - Context Awareness: Ignores non-clickable status bars and tabs.
Best for: Most users, GitHub Copilot.
- Install the extension.
- That's it! Autopilot will now try to accept suggestions automatically using internal commands.
Best for: Complex agents, Chat windows, "Accept All" buttons. Requires launching VS Code with a special flag.
macOS / Linux:
open -n -a "Antigravity" --args --remote-debugging-port=9000Windows:
code --remote-debugging-port=9000Verify Connection: Look at the Status Bar (Bottom Right):
$(check) Auto: ON (CDP: 1)— Connected & Empowered.Auto: ON (CDP: 0)— Native Mode Only.$(circle-slash) Auto: OFF— Paused.
| Setting | Default | Description |
|---|---|---|
kayorama.cdpPort |
9000 |
The internal debugging port. Must match your launch flag. |
"It's not clicking in Chat"
- Ensure you are using Pro Mode (CDP). Chat windows are often inside Iframes which native commands struggle to reach.
- Check the Output log:
View > Output > Kayorama Autopilot.
"It says CDP: 0"
- This means you are running in Native Mode. It will still work for basic inline suggestions, but advanced button clicking is disabled.
- To fix, restart VS Code with the
--remote-debugging-port=9000flag.