Command reference ยท Antigravity CLI
/skills
Browses loaded local and global Agent Skills.
/skills belongs to the Tools & Tasks category and shows the currently loaded Agent Skills from two sources: workspace-local from .agents/skills/ in the project directory (read in from this folder when agy starts) and global from ~/.gemini/antigravity-cli/skills/, which is automatically imported across all workspaces.
A skill is a Markdown file with frontmatter metadata (at minimum name and description), followed by the actual instructions. The name given in the frontmatter automatically becomes its own /<skill-name> command โ a file with name: format-tests is thus available as /format-tests without you having to register it manually.
/skills itself only shows what has already been loaded; creating or deleting a skill file still happens outside the CLI, in the filesystem.
โ WHEN TO USE IT?
Check available skills
Open /skills to see whether a newly added .md file from .agents/skills/ was recognized
Distinguish global vs. project-specific skills
Use /skills to clarify whether a command comes from the global skills folder or the current workspace
โ WHEN NOT TO?
Fully install or uninstall a plugin
/skills only shows loaded skill files, it doesn't manage plugins.
Better: Use agy plugin install/uninstall
SOURCES
- Antigravity CLI docs: command reference โ antigravity.google
- Antigravity CLI docs: Plugins โ antigravity.google