Antigravity Link — Summary
Antigravity Link is a VS Code extension (MIT, by cafeTechne) that acts as a mobile companion and automation bridge for Google's Antigravity IDE. It bridges the gap when a developer steps away from their desk during a long AI generation session: scan a QR code and your phone becomes a live mirror of the active Antigravity chat — you can read streaming output, send messages, stop generation, upload files, and switch between multiple Antigravity windows from a mobile browser. For automation, it exposes an HTTP API (OpenAPI spec) and an MCP server (9 tools) so that other agents or CI systems can programmatically drive Antigravity sessions.
The extension works by connecting to the Chrome DevTools Protocol (CDP) debug port that Antigravity exposes (--remote-debugging-port=9000), injecting into the chat surface via JavaScript, and bridging commands through a local HTTPS server. It is purely a control-plane bridge — it does not modify Antigravity's networking, intercept API calls, or require patching the IDE.
Closest seed: none precisely, but closest to kiro in that it extends an IDE product's control surface. Unlike kiro's hook system (lifecycle events inside the IDE), antigravity-link is an external browser automation layer that operates on the DOM via CDP from outside the IDE process.