Antigravity 2.0 UI & Shortcuts Complete Guide: Every Button, Panel & Keybinding Explained

Master the Antigravity 2.0 desktop client interface. Learn how to navigate the 4 primary UI zones, 5 auxiliary tabs, sticky prompt modifiers, and keyboard-first shortcuts.

· Last updated on

Quick Answer: Navigating Google Antigravity 2.0 efficiently requires mastering its 4-zone spatial layout (Left Sidebar, Top Navigation Bar, Chat Canvas, and Auxiliary Pane) alongside its keyboard-first command system. Instead of hunting through menus with a mouse, professional developers use Cmd/Ctrl + L to focus the Sticky Prompt Bar, Cmd/Ctrl + backtick to toggle the 2.10.0+ Embedded Terminal, and the shortcut assigned in Settings → Shortcuts to open the line-by-line Diff Review Pane. By pairing contextual @ mentions and / workflow slash commands with customized keybindings from the Official Antigravity Settings Portal, you can orchestrate multi-agent engineering loops at terminal speed without ever leaving the keyboard.


1. Core Definition: The Antigravity 2.0 Command Surface

In Google Antigravity 2.0, the user interface is designed as an autonomous software engineering mission control center.

Unlike traditional text editors where the file buffer occupies 90% of screen real estate, Antigravity 2.0 balances four high-density operational surfaces:

  1. Left Sidebar: Manages macro workspaces, project structures, and background task schedules;
  2. Top Navigation Bar: Tracks Git branches, global search indexes, and system toggles;
  3. Chat Canvas (Main Orchestrator): Visualizes the agent’s step-by-step reasoning traces and tool invocations;
  4. Auxiliary Pane (5 Diagnostic Tabs): Houses dedicated deep-dive tools including Implementation Plans, code Diffs, visual UI screenshots, live browser automation, and subagent fleet management.
+------------------------------------------------------------------------------------+
| [Top Bar]  Project: SaaS-Backend  |  Branch: feature/auth  |  [Terminal] [VCS]     |
+-------------------+------------------------------------+---------------------------+
| [Left Sidebar]    | [Chat Canvas]                      | [Auxiliary Pane]          |
| - Projects        |                                    | [Artifacts] [Review]      |
| - Conversations   | Agent: "I have analyzed your repo" | [Screenshots] [Browser]   |
| - Scheduled Tasks | Tool Call: list_dir -> 12 files    | [Tasks]                   |
| - Skills & MCP    |                                    |                           |
| - Settings        | [Sticky Prompt Bar: @file /cmd]    | Line-by-Line Visual Diff  |
+-------------------+------------------------------------+---------------------------+

2. Problems It Solves: Mouse Fatigue & Lost Context

When managing multi-file AI coding workflows in legacy IDEs, developers face severe friction:

Legacy IDE FrictionAntigravity 2.0 UI Solution
Context Window Juggling: Switching between terminal tabs, chat sidebars, and file buffers causes cognitive overload.Unified 3-column command center keeps conversation, terminal, and live diffs visible concurrently.
Manual File Copy-Pasting: Pasting snippets into chat sidebars consumes tokens and leads to outdated references.Dynamic @ mention syntax indexes files, folders, and historical conversations on the fly.
Blind Commit Risk: AI assistants modifying files in the background without clear visual diff verification.Dedicated Review Tab with hunk-level accept/discard controls and instant rollback.
Invisible Background Processes: No way to track background cron jobs or subagent worker threads.Integrated Tasks & Scheduled Jobs tabs provide real-time process logs and kill switches.

3. When to Use Keyboard-First vs. Visual UI Flows

✅ Best Used with Keyboard Shortcuts

  • Rapid Navigation: Jumping between active conversation threads (Cmd/Ctrl + K) and file search (the shortcut assigned in Settings → Shortcuts);
  • Agent Interruption: Halting a runaway prompt immediately (the shortcut assigned in Settings → Shortcuts or Escape);
  • Terminal Execution: Revealing the integrated shell for build verifications (Cmd/Ctrl + backtick);
  • Diff Staging: Batch-accepting reviewed code changes (the shortcut assigned in Settings → Shortcuts).

✅ Best Used with Visual UI Panels

  • Browser Automation QA: Watching real-time WebM screen recordings of browser agents clicking web flows;
  • Interactive Box Commenting: Dragging a selection box over a UI screenshot to instruct the agent on layout fixes;
  • Multi-Repo Workspace Setup: Configuring directory mounts in the New Project modal.

4. Architectural Deep Dive: The 4 Core UI Zones

Zone 1: The Left Sidebar

The left sidebar anchors your operational hierarchy:

  • Projects: Switch between mounted codebases with isolated Git environments;
  • Conversations: Search and filter past task threads;
  • Scheduled Tasks: Monitor autonomous cron jobs (e.g., nightly dependency audits or health checkers);
  • Skills & MCP: Inspect connected tools, APIs, and custom agent plugins;
  • Settings: Adjust model parameters, terminal permission whitelists, and keymap preferences.

Zone 2: The Top Navigation Bar

  • Breadcrumbs: Displays Project Name > Active Git Branch;
  • Search Bar: Quick-access modal for files (the shortcut assigned in Settings → Shortcuts) and symbols;
  • Global Actions: Quick-toggle buttons for the 2.10.0+ Embedded Terminal and Git VCS drawer.

Zone 3: The Chat Canvas

  • Thinking Traces: Collapsible cards showing the model’s internal step-by-step reasoning, tool arguments, and stdout outputs;
  • Tool Execution Cards: Interactive cards displaying file diffs, command executions, and web search summaries;
  • Sticky Prompt Panel: Anchored at the viewport bottom, featuring multiline editing, media attachment dropzones, and model toggles.

Zone 4: The Auxiliary Pane (Right Side)

The power center of Antigravity 2.0, providing five modular diagnostic panels.


5. The 5 Modular Tabs of the Auxiliary Pane

Tab NameHotkey (macOS)Hotkey (Win/Linux)Primary Purpose & Key Capabilities
Artifactsthe shortcut assigned in Settings → Shortcutsthe shortcut assigned in Settings → ShortcutsInspects structured markdown implementation plans, design documents, and post-task walkthroughs.
Reviewthe shortcut assigned in Settings → Shortcutsthe shortcut assigned in Settings → ShortcutsVisualizes line-by-line green/red code diffs across all modified files with granular Accept Hunk and Discard buttons.
Screenshotsthe shortcut assigned in Settings → Shortcutsthe shortcut assigned in Settings → ShortcutsDisplays visual UI renders and component mockups with support for clickable bounding-box feedback annotations.
Browserthe shortcut assigned in Settings → Shortcutsthe shortcut assigned in Settings → ShortcutsLive view into headless/headed Chrome browser automation sessions, console logs, and WebM replay files.
Tasksthe shortcut assigned in Settings → Shortcutsthe shortcut assigned in Settings → ShortcutsFleet monitor for background subagents, recurring cron jobs, and long-running terminal daemons.

6. Anatomy of the Sticky Prompt Panel

The bottom Prompt Panel is not a plain textarea—it is a full-featured prompt engineering workbench:

1. The @ Dynamic Reference System

Type @ inside the prompt box to open the contextual auto-complete menu:

  • @src/lib/auth.ts: Mounts the exact file content into the agent’s immediate attention window;
  • @folder:packages/ui: Supplies the complete directory layout and filenames without dumping raw code;
  • @conversation:auth-refactor: Pulls historical decisions and summaries from a previous session;
  • @task:build-backend: Ingests stdout logs and error traces from a running background job.

2. The / Slash Command Modifiers

Type / to invoke specialized high-level agent workflows:

  • /goal: Launches an unconstrained, goal-driven session where the agent iterates autonomously until full test verification;
  • /schedule: Schedules one-shot reminders or recurring cron jobs;
  • /browser: Instructs the agent to open a real browser session for web navigation or UI scraping;
  • /learn: Captures human architectural rules and persists them into .antigravity/rules.

3. Model Selector & Media Dropzone

  • Model Dropdown: Toggle on the fly between Gemini 2.0 Flash (for rapid file edits) and Gemini 2.0 Pro (for deep multi-repo architecture);
  • Drag-and-Drop Dropzone: Drag UI wireframes, Figma screenshots, or error logs directly into the prompt box.

7. Master Keyboard Shortcuts Cheat Sheet

1. Navigation & Workspace Controls

ActionmacOS ShortcutWindows / Linux Shortcut
Focus Sticky Prompt BoxCmd + LCtrl + L
Global File Picker & Jumpthe shortcut assigned in Settings → Shortcutsthe shortcut assigned in Settings → Shortcuts
Switch Active ConversationCmd + KCtrl + K
Create New Conversationthe shortcut assigned in Settings → Shortcutsthe shortcut assigned in Settings → Shortcuts
Toggle Left Sidebarthe shortcut assigned in Settings → Shortcutsthe shortcut assigned in Settings → Shortcuts
Global Code Search (Grep)the shortcut assigned in Settings → Shortcutsthe shortcut assigned in Settings → Shortcuts

2. Panel & Tool Toggles

ActionmacOS ShortcutWindows / Linux Shortcut
Toggle Embedded Sidebar TerminalCmd + backtickCtrl + backtick
Toggle Auxiliary Review Panethe shortcut assigned in Settings → Shortcutsthe shortcut assigned in Settings → Shortcuts
Toggle Auxiliary Browser Viewthe shortcut assigned in Settings → Shortcutsthe shortcut assigned in Settings → Shortcuts
Open Implementation Plans (Artifacts)the shortcut assigned in Settings → Shortcutsthe shortcut assigned in Settings → Shortcuts
Open Background Tasks Monitorthe shortcut assigned in Settings → Shortcutsthe shortcut assigned in Settings → Shortcuts

3. Agent Execution & Code Review Hotkeys

ActionmacOS ShortcutWindows / Linux Shortcut
Submit Prompt to Agentthe shortcut assigned in Settings → Shortcutsthe shortcut assigned in Settings → Shortcuts
Cancel / Halt Active Agent Executionthe shortcut assigned in Settings → Shortcuts or Escthe shortcut assigned in Settings → Shortcuts or Esc
Accept All Modified Diffsthe shortcut assigned in Settings → Shortcutsthe shortcut assigned in Settings → Shortcuts
Discard All Modified Diffsthe shortcut assigned in Settings → Shortcutsthe shortcut assigned in Settings → Shortcuts
Jump to Next Diff Hunkthe shortcut assigned in Settings → Shortcutsthe shortcut assigned in Settings → Shortcuts
Jump to Previous Diff Hunkthe shortcut assigned in Settings → Shortcutsthe shortcut assigned in Settings → Shortcuts

8. Customizing & Migrating Keybindings (VS Code & IntelliJ)

Antigravity 2.0 supports fully customizable JSON keymaps.

How to Access Keybindings Configuration

  1. Open Settings from the left sidebar (or press Cmd/Ctrl + ,);
  2. Navigate to the Keybindings tab;
  3. Click Open keybindings.json to define custom overrides.

Sample keybindings.json Preset (VS Code Compatibility Mode)

Open Settings → Shortcuts, find the action, and assign your preferred keys in the application. Use the command names shown by your installed version; desktop shortcuts and AGY CLI keybindings are separate.


9. 5 Critical UI & Shortcut Mistakes to Avoid

[!WARNING]
Avoid these 5 common interface pitfalls to maintain maximum coding throughput:

  1. Clicking the Mouse to Review Diffs: Tapping the shortcut assigned in Settings → Shortcuts opens the Review Pane instantly; use the shortcut assigned in Settings → Shortcuts to jump between modified hunks rather than manual scrolling.
  2. Copying Long File Contents Manually: Never paste 500 lines of code into the prompt box. Type @path/to/file.ts to attach files with zero token overhead.
  3. Closing the Auxiliary Pane Unnecessarily: Keep the Auxiliary Pane open on wide screens (1440px+) to monitor the agent’s real-time file updates side-by-side.
  4. Neglecting the Embedded Terminal Hotkey: Press Cmd/Ctrl + backtick to check test output immediately after the agent finishes writing code.
  5. Forgetting the Emergency Interrupt (the shortcut assigned in Settings → Shortcuts): If the agent misinterprets your prompt or runs into a loop, hit the shortcut assigned in Settings → Shortcuts immediately instead of waiting for token timeout.

10. Frequently Asked Questions (FAQ)

**Q1: Can I split the Chat Canvas and Review Pane horizontally?**A: Yes. In Settings -> UI Layout, you can choose between vertical 3-column layout and horizontal split layouts.

**Q2: How do I zoom in/out on the interface?**A: Use standard desktop scaling hotkeys Cmd/Ctrl + = (zoom in), Cmd/Ctrl + - (zoom out), and Cmd/Ctrl + 0 (reset zoom).

**Q3: Does Antigravity support Vim keybindings?**A: Yes. Enable the Vim Keymap Plugin in Settings -> Plugins for full Vim modal navigation inside prompt and editor areas.


11. Official Resources & Documentation Index


12. What’s Next in the Series?

Now that you have mastered the keyboard-first interface and all five auxiliary inspection tabs, it is time to master the core isolation engine of Antigravity:

👉 Next in Series:03 · Antigravity 2.0 Project & Worktree Isolation: Multi-Repo Management & Conflict-Free Coding

Tags:
  • #AI
  • #google antigravity
  • #Developer Productivity
  • #Keyboard Shortcuts

Authoritative Sources