How to use commands
Type/ followed by the command name in any Antigravity conversation:
~/.gemini/antigravity/global_workflows/. You can inspect and customize any workflow file directly.
All commands
| Command | What it does |
|---|---|
/brainstorm | [Step 1] Requirements discovery before writing code |
/plan | [Step 2] Write a detailed implementation plan |
/implement | [Step 3] Feature implementation with TDD |
/review | [Step 4] Code review against plan and quality standards |
/git | [Step 5] Git operations with smart commits |
/research | Deep multi-source research with confidence levels |
/build | Build and package the project |
/test | Run tests with coverage analysis |
/analyze | Code quality, security, performance, and architecture review |
/design | System architecture, API, and component design |
/troubleshoot | Systematic debugging with phase-by-phase isolation |
/explain | Explain code, concepts, or system behavior |
/improve | Apply systematic code improvements |
/cleanup | Remove dead code and unused imports |
/document | Generate documentation for components and APIs |
/estimate | Development estimates with confidence levels |
Bonus commands
These commands are available but not part of the core workflow:| Command | What it does |
|---|---|
/business-panel | AI-facilitated panel discussion with business thought leaders |
/spec-panel | Multi-expert review of technical specification quality |
/recommend | Intelligent recommender for SuperAntigravity commands |
Conversation mode guidance
Antigravity’s conversation modes affect how commands perform. Match the mode to the command for best results.| Mode | Commands |
|---|---|
| Planning Mode (required) | /brainstorm, /plan, /research, /troubleshoot |
| Fast Mode (recommended) | /implement, /test, /build |
| Either mode | /git, /analyze, /design, /explain, /improve, /review, /cleanup, /document, /estimate |
The core workflow
The five numbered commands form a complete development pipeline:/brainstorm
Start here. Turn vague ideas into approved designs before writing a line of code.
/plan
Convert an approved design into a bite-sized, TDD-ready implementation plan.
/implement
Execute the plan task by task with confidence checks and review gates.
/troubleshoot
Systematic four-phase debugging when something breaks.