promptgarten ๐ŸŒฑ
๐ŸŒ ES

Command reference ยท Antigravity CLI

@<path>

Opens an interactive overlay for picking a file path right in the prompt box.

Typing @ in the prompt box opens the Interactive Path Suggestion overlay: it lets you browse workspace file paths and insert one directly into your prompt as an absolute path, helping the agent search the code more precisely. Since 1.0.6, @ triggers suggestions unconditionally, including right after an opening parenthesis.

โœ… WHEN TO USE IT?

Reference a specific file precisely without typing the path by hand

Type @src/auth/ to browse to the right file in the overlay

โ›” WHEN NOT TO?

You want to run a terminal command directly

@ only inserts a file path into the prompt, it doesn't execute anything.

Better: Use ! at the start of a line for direct terminal commands

SOURCES