Command reference ยท Antigravity CLI
agy --conversation <id>
Loads a specific conversation directly by its ID, without a picker.
agy --conversation <id> loads a saved conversation directly via its unique ID and skips the interactive selection dialog of /resume (aliases /switch, /conversation). The matching ID can be determined beforehand via search in the interactive /resume picker, which filters by title, preview text, or ID. For the most recently active conversation in the current working directory, agy -c or agy --continue suffices instead, which is resolved via a local cache under ~/.gemini/antigravity-cli/cache/last_conversations.json.
The flag can be combined with -p (print/non-interactive mode) to continue the loaded conversation without the TUI. Until version 1.0.8, this combined mode incorrectly output the entire historical transcript; since the fix in version 1.0.9, --conversation <id> -p "..." only returns the newly generated response. The ID itself has UUID format, as also stored in the local cache file (e.g. a1b2c3d4-e5f6-7890-abcd-ef1234567890).
โ WHEN TO USE IT?
Return specifically to a known conversation ID
agy --conversation 7f3a2b1c
Continue a specific conversation non-interactively and collect only the new response
agy --conversation 7f3a2b1c -p "summarize"
โ WHEN NOT TO?
The exact conversation ID is not known
--conversation expects an exact ID, there is no fuzzy search via the flag.
Better: Use /resume within the running agy to search by title, preview text, or ID
Just wanting to continue the last conversation in the current directory
--conversation requires an explicit ID, which is unnecessarily cumbersome for the simple case.
Better: Use agy -c or agy --continue
SOURCES
- Antigravity CLI docs: /resume โ antigravity.google
- Antigravity CLI CHANGELOG (GitHub) โ raw.githubusercontent.com