Antigravity CLI (agy)
Operator guide for the Antigravity CLI, invoked as agy. Run all agy
commands through the Hermes terminal tool; inspect its config and logs with
read_file. This skill is reference + procedure — it does not wrap a network
API, so there is nothing to authenticate from Hermes itself.
When to Use
- Installing, updating, or smoke-testing the
agy binary
- Driving non-interactive
agy --print / agy -p one-shots
- Debugging Antigravity auth, sandbox, permissions, or plugin state
- Reading Antigravity settings, keybindings, conversations, or logs
Mental model
Antigravity has two layers — keep them distinct or the guidance will be wrong:
- Shell wrapper commands —
agy help, agy install, agy plugin,
agy update, agy changelog. Run these through the terminal tool.
- Interactive in-session slash commands —
/config, /permissions,
/skills, /agents, etc. These only exist inside a running agy TUI
session, not on the shell wrapper.
agy help shows the shell wrapper surface, NOT the in-session slash commands.
Prerequisites
- The
agy binary on PATH. Verify through the terminal tool:
command -v agy && agy --version.
- No env vars or API keys required by this skill — Antigravity manages its own
auth via the OS keyring / browser sign-in (see Authentication below).
How to Run
Invoke every agy command through the terminal tool. Examples:
terminal(command="agy --version")
terminal(command="agy help")
terminal(command="agy plugin list")
terminal(command="agy --print 'Summarize the repo in 3 bullets'", workdir="/path/to/project")
For an interactive multi-turn TUI session, launch agy with pty=true (and
tmux for capture/monitoring), the same pattern the codex / claude-code
skills use. For one-shot smoke tests and scripted prompts, prefer
agy --print (non-interactive).
To inspect Antigravity's own files, use read_file on the paths under Core
paths below — do not cat them through the terminal.
Delegation patterns
agy is a coding-agent backend in the same family as codex / claude-code,
so the same delegation shapes apply. Use these when handing real work (features,
fixes, reviews, second opinions) to Antigravity rather than just smoke-testing.
One-shot (preferred for scripted prompts and second opinions)
terminal(command="agy -p 'Review this diff for bugs and security issues' --model 'Gemini 3.1 Pro (High)'", workdir="/path/to/repo", timeout=300)
-p is non-interactive: it runs the prompt and exits. Pick the engine with
--model (run agy models for the exact display strings, e.g.
'Gemini 3.1 Pro (High)', 'Claude Opus 4.6 (Thinking)'). Add extra context
roots with repeatable --add-dir.
Long / bounded runs (tests, builds, multi-file changes)
Background it and get notified on completion, the same as the codex skill:
terminal(command="agy -p 'Implement the change described in TASK.md and run the tests' --dangerously-skip-permissions", workdir="/path/to/repo", background=true, notify_on_complete=true)
# then: process(action="poll"/"log"/"wait", session_id=<id>)
Interactive multi-turn (PTY + tmux)
For a conversational session, launch agy -i (or bare agy) under pty=true
with tmux for capture-pane / send-keys, exactly the pattern documented in
the codex / claude-code skills. Resume later with --continue / -c or a
specific --conversation <id>.
Parallel instances (batch sub-issue / worktree fan-out)
Create one git worktree per task and launch an independent agy -p in each
(background), then collect results — same worktree fan-out the codex skill
uses for batch issue fixing. Bound concurrency to what the machine and your
review capacity can absorb.
Output + bounding caveat (differs from Claude Code)
agy -p returns plain text — there is no --output-format json and
no result envelope with session_id / cost / turn count. Parse stdout
directly; don't expect a JSON object.
- There is no
--max-turns. A print run is bounded by --print-timeout
(default 5m). Raise it for long tasks: --print-timeout 20m. Pair with the
terminal timeout= so the outer call doesn't cut the run short.
Orchestration boundary
Antigravity is a worker execution backend or third-opinion reviewer — an
execution detail owned by the agent/profile running a task, NOT a first-class
orchestration primitive. Do not put agy on a kanban board as its own card or
treat it as a coordination layer; route work through the normal task graph and
let the assigned worker choose agy (vs. codex/claude-code/direct tools) as its
method. Reach for it explicitly only when the user asks, when a worker is
configured to wrap it, or when you want a Gemini-family cross-check against
another agent's plan or diff.
Core paths
- Binary / entrypoint:
agy
- App data dir:
~/.gemini/antigravity-cli/
- Settings file:
~/.gemini/antigravity-cli/settings.json
- Keybindings file:
~/.gemini/antigravity-cli/keybindings.json
- Logs:
~/.gemini/antigravity-cli/log/cli-*.log
- Conversations:
~/.gemini/antigravity-cli/conversations/
- Brain artifacts:
~/.gemini/antigravity-cli/brain/
- History:
~/.gemini/antigravity-cli/history.jsonl
- Plugin staging:
~/.gemini/antigravity-cli/plugins/<plugin_name>/
Quick Reference
Wrapper commands
agy changelog
agy help
agy install
agy plugin / agy plugins
agy update
Useful flags
--add-dir
--continue / -c
--conversation
--dangerously-skip-permissions
--print / -p
--print-timeout
--prompt
--prompt-interactive / -i
--sandbox
--log-file
--version
Plugin subcommands (agy plugin --help)
list, import [source], install <target>, uninstall <name>,
enable <name>, disable <name>, validate [path], link <mp> <target>,
help
Install flags (agy install --help)
--dir, --skip-aliases, --skip-path
In-session slash commands
- Conversation control:
/resume (/switch), /rewind (/undo),
/rename <name>, /clear, /fork, /reset, /new
- Settings & tools:
/config, /settings, /permissions, /model,
/keybindings, /statusline, /tasks, /skills, /mcp, /open <path>,
/usage, /logout, /agents
- Prompt helpers:
@ path autocomplete, esc esc clears the prompt (when
not streaming), ! runs a terminal command directly, ? opens help
Settings and permissions
Common settings keys (settings.json)
allowNonWorkspaceAccess
colorScheme
permissions.allow
trustedWorkspaces
Permission modes
request-review, always-proceed, strict, proceed-in-sandbox.
Sandbox behavior
enableTerminalSandbox is a boolean in settings.json; default false.
- Launch-time overrides (
--sandbox, --dangerously-skip-permissions) can
supersede persistent settings for the current session.
Authentication behavior
- The CLI tries the OS secure keyring first.
- With no saved session, it falls back to browser-based Google sign-in.
- Locally it opens the default browser; over SSH it prints an authorization URL
and expects the auth code pasted back.
/logout removes saved credentials.
Plugins
- Plugins stage under
~/.gemini/antigravity-cli/plugins/<plugin_name>/.
- They can bundle skills, agents, rules, MCP servers, and hooks.
agy plugin list returning no imported plugins is a valid empty state.
Pitfalls
agy help shows wrapper commands, not interactive slash commands.
agy --version is the safe non-interactive version check; agy version is
interactive and can fail without a real TTY.
- First place to look for failures:
~/.gemini/antigravity-cli/log/cli-*.log
(read with read_file).
- Don't confuse persistent JSON settings with launch-time overrides.
~/.gemini/antigravity-cli/bin/agentapi is a thin wrapper to agy agentapi.
- On WSL, token storage is file-based, so auth issues are usually local-file /
session-state problems, not browser-only problems.
- Workspace identity can depend on launch directory and the
.antigravitycli
project marker.
agy -p prints plain text only — no --output-format json, no result
envelope. Don't try to parse a JSON object out of it (unlike claude-code).
- Bound print runs with
--print-timeout (default 5m), not --max-turns
(which does not exist on agy).
Verification
Confirm the install is real and usable, all through the terminal tool (read
files with read_file):
terminal(command="command -v agy")
terminal(command="agy --version")
terminal(command="agy help")
terminal(command="agy plugin list")
read_file on ~/.gemini/antigravity-cli/settings.json
read_file on the latest ~/.gemini/antigravity-cli/log/cli-*.log
- If needed,
read_file on ~/.gemini/antigravity-cli/keybindings.json
Support files
references/cli-docs.md — condensed notes from the getting-started, usage,
and features docs.
Source: NousResearch/hermes-agent → optional-skills/autonomous-ai-agents/antigravity-cli/SKILL.md
1---2name: antigravity-cli3description: Operate the Antigravity CLI (agy): plugins, auth, sandbox.4---567# Antigravity CLI (`agy`)89Operator guide for the Antigravity CLI, invoked as `agy`. Run all `agy`10commands through the Hermes `terminal` tool; inspect its config and logs with11`read_file`. This skill is reference + procedure — it does not wrap a network12API, so there is nothing to authenticate from Hermes itself.1314## When to Use1516- Installing, updating, or smoke-testing the `agy` binary17- Driving non-interactive `agy --print` / `agy -p` one-shots18- Debugging Antigravity auth, sandbox, permissions, or plugin state19- Reading Antigravity settings, keybindings, conversations, or logs2021## Mental model2223Antigravity has two layers — keep them distinct or the guidance will be wrong:24251. **Shell wrapper commands** — `agy help`, `agy install`, `agy plugin`,26 `agy update`, `agy changelog`. Run these through the `terminal` tool.272. **Interactive in-session slash commands** — `/config`, `/permissions`,28 `/skills`, `/agents`, etc. These only exist inside a running `agy` TUI29 session, not on the shell wrapper.3031`agy help` shows the shell wrapper surface, NOT the in-session slash commands.3233## Prerequisites3435- The `agy` binary on PATH. Verify through the `terminal` tool:36 `command -v agy && agy --version`.37- No env vars or API keys required by this skill — Antigravity manages its own38 auth via the OS keyring / browser sign-in (see Authentication below).3940## How to Run4142Invoke every `agy` command through the `terminal` tool. Examples:4344```45terminal(command="agy --version")46terminal(command="agy help")47terminal(command="agy plugin list")48terminal(command="agy --print 'Summarize the repo in 3 bullets'", workdir="/path/to/project")49```5051For an interactive multi-turn TUI session, launch `agy` with `pty=true` (and52tmux for capture/monitoring), the same pattern the `codex` / `claude-code`53skills use. For one-shot smoke tests and scripted prompts, prefer54`agy --print` (non-interactive).5556To inspect Antigravity's own files, use `read_file` on the paths under Core57paths below — do not `cat` them through the terminal.5859## Delegation patterns6061`agy` is a coding-agent backend in the same family as `codex` / `claude-code`,62so the same delegation shapes apply. Use these when handing real work (features,63fixes, reviews, second opinions) to Antigravity rather than just smoke-testing.6465### One-shot (preferred for scripted prompts and second opinions)6667```68terminal(command="agy -p 'Review this diff for bugs and security issues' --model 'Gemini 3.1 Pro (High)'", workdir="/path/to/repo", timeout=300)69```7071`-p` is non-interactive: it runs the prompt and exits. Pick the engine with72`--model` (run `agy models` for the exact display strings, e.g.73`'Gemini 3.1 Pro (High)'`, `'Claude Opus 4.6 (Thinking)'`). Add extra context74roots with repeatable `--add-dir`.7576### Long / bounded runs (tests, builds, multi-file changes)7778Background it and get notified on completion, the same as the `codex` skill:7980```81terminal(command="agy -p 'Implement the change described in TASK.md and run the tests' --dangerously-skip-permissions", workdir="/path/to/repo", background=true, notify_on_complete=true)82# then: process(action="poll"/"log"/"wait", session_id=<id>)83```8485### Interactive multi-turn (PTY + tmux)8687For a conversational session, launch `agy -i` (or bare `agy`) under `pty=true`88with tmux for `capture-pane` / `send-keys`, exactly the pattern documented in89the `codex` / `claude-code` skills. Resume later with `--continue` / `-c` or a90specific `--conversation <id>`.9192### Parallel instances (batch sub-issue / worktree fan-out)9394Create one git worktree per task and launch an independent `agy -p` in each95(background), then collect results — same worktree fan-out the `codex` skill96uses for batch issue fixing. Bound concurrency to what the machine and your97review capacity can absorb.9899### Output + bounding caveat (differs from Claude Code)100101- `agy -p` returns **plain text** — there is **no `--output-format json`** and102 no result envelope with `session_id` / cost / turn count. Parse stdout103 directly; don't expect a JSON object.104- There is **no `--max-turns`**. A print run is bounded by **`--print-timeout`**105 (default `5m`). Raise it for long tasks: `--print-timeout 20m`. Pair with the106 `terminal` `timeout=` so the outer call doesn't cut the run short.107108### Orchestration boundary109110Antigravity is a **worker execution backend or third-opinion reviewer** — an111execution detail owned by the agent/profile running a task, NOT a first-class112orchestration primitive. Do not put `agy` on a kanban board as its own card or113treat it as a coordination layer; route work through the normal task graph and114let the assigned worker choose `agy` (vs. codex/claude-code/direct tools) as its115method. Reach for it explicitly only when the user asks, when a worker is116configured to wrap it, or when you want a Gemini-family cross-check against117another agent's plan or diff.118119## Core paths120121- Binary / entrypoint: `agy`122- App data dir: `~/.gemini/antigravity-cli/`123- Settings file: `~/.gemini/antigravity-cli/settings.json`124- Keybindings file: `~/.gemini/antigravity-cli/keybindings.json`125- Logs: `~/.gemini/antigravity-cli/log/cli-*.log`126- Conversations: `~/.gemini/antigravity-cli/conversations/`127- Brain artifacts: `~/.gemini/antigravity-cli/brain/`128- History: `~/.gemini/antigravity-cli/history.jsonl`129- Plugin staging: `~/.gemini/antigravity-cli/plugins/<plugin_name>/`130131## Quick Reference132133### Wrapper commands134- `agy changelog`135- `agy help`136- `agy install`137- `agy plugin` / `agy plugins`138- `agy update`139140### Useful flags141- `--add-dir`142- `--continue` / `-c`143- `--conversation`144- `--dangerously-skip-permissions`145- `--print` / `-p`146- `--print-timeout`147- `--prompt`148- `--prompt-interactive` / `-i`149- `--sandbox`150- `--log-file`151- `--version`152153### Plugin subcommands (`agy plugin --help`)154- `list`, `import [source]`, `install <target>`, `uninstall <name>`,155 `enable <name>`, `disable <name>`, `validate [path]`, `link <mp> <target>`,156 `help`157158### Install flags (`agy install --help`)159- `--dir`, `--skip-aliases`, `--skip-path`160161### In-session slash commands162- **Conversation control:** `/resume` (`/switch`), `/rewind` (`/undo`),163 `/rename <name>`, `/clear`, `/fork`, `/reset`, `/new`164- **Settings & tools:** `/config`, `/settings`, `/permissions`, `/model`,165 `/keybindings`, `/statusline`, `/tasks`, `/skills`, `/mcp`, `/open <path>`,166 `/usage`, `/logout`, `/agents`167- **Prompt helpers:** `@` path autocomplete, `esc esc` clears the prompt (when168 not streaming), `!` runs a terminal command directly, `?` opens help169170## Settings and permissions171172### Common settings keys (`settings.json`)173- `allowNonWorkspaceAccess`174- `colorScheme`175- `permissions.allow`176- `trustedWorkspaces`177178### Permission modes179`request-review`, `always-proceed`, `strict`, `proceed-in-sandbox`.180181### Sandbox behavior182- `enableTerminalSandbox` is a boolean in `settings.json`; default `false`.183- Launch-time overrides (`--sandbox`, `--dangerously-skip-permissions`) can184 supersede persistent settings for the current session.185186## Authentication behavior187188- The CLI tries the OS secure keyring first.189- With no saved session, it falls back to browser-based Google sign-in.190- Locally it opens the default browser; over SSH it prints an authorization URL191 and expects the auth code pasted back.192- `/logout` removes saved credentials.193194## Plugins195196- Plugins stage under `~/.gemini/antigravity-cli/plugins/<plugin_name>/`.197- They can bundle skills, agents, rules, MCP servers, and hooks.198- `agy plugin list` returning no imported plugins is a valid empty state.199200## Pitfalls201202- `agy help` shows wrapper commands, not interactive slash commands.203- `agy --version` is the safe non-interactive version check; `agy version` is204 interactive and can fail without a real TTY.205- First place to look for failures: `~/.gemini/antigravity-cli/log/cli-*.log`206 (read with `read_file`).207- Don't confuse persistent JSON settings with launch-time overrides.208- `~/.gemini/antigravity-cli/bin/agentapi` is a thin wrapper to `agy agentapi`.209- On WSL, token storage is file-based, so auth issues are usually local-file /210 session-state problems, not browser-only problems.211- Workspace identity can depend on launch directory and the `.antigravitycli`212 project marker.213- `agy -p` prints plain text only — no `--output-format json`, no result214 envelope. Don't try to parse a JSON object out of it (unlike `claude-code`).215- Bound print runs with `--print-timeout` (default `5m`), not `--max-turns`216 (which does not exist on `agy`).217218## Verification219220Confirm the install is real and usable, all through the `terminal` tool (read221files with `read_file`):2222231. `terminal(command="command -v agy")`2242. `terminal(command="agy --version")`2253. `terminal(command="agy help")`2264. `terminal(command="agy plugin list")`2275. `read_file` on `~/.gemini/antigravity-cli/settings.json`2286. `read_file` on the latest `~/.gemini/antigravity-cli/log/cli-*.log`2297. If needed, `read_file` on `~/.gemini/antigravity-cli/keybindings.json`230231## Support files232233- `references/cli-docs.md` — condensed notes from the getting-started, usage,234 and features docs.235236---237238**Source:** [`NousResearch/hermes-agent`](https://github.com/NousResearch/hermes-agent) → `optional-skills/autonomous-ai-agents/antigravity-cli/SKILL.md`