Skip to main content
SuperAntigravity ships 16 slash commands that give you explicit control over your development workflow. While skills fire automatically when context matches, commands are invoked deliberately — you decide when to run them.

How to use commands

Type / followed by the command name in any Antigravity conversation:
/brainstorm
/plan
/implement
Each command is backed by a workflow file in ~/.gemini/antigravity/global_workflows/. You can inspect and customize any workflow file directly.

All commands

CommandWhat 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
/researchDeep multi-source research with confidence levels
/buildBuild and package the project
/testRun tests with coverage analysis
/analyzeCode quality, security, performance, and architecture review
/designSystem architecture, API, and component design
/troubleshootSystematic debugging with phase-by-phase isolation
/explainExplain code, concepts, or system behavior
/improveApply systematic code improvements
/cleanupRemove dead code and unused imports
/documentGenerate documentation for components and APIs
/estimateDevelopment estimates with confidence levels

Bonus commands

These commands are available but not part of the core workflow:
CommandWhat it does
/business-panelAI-facilitated panel discussion with business thought leaders
/spec-panelMulti-expert review of technical specification quality
/recommendIntelligent recommender for SuperAntigravity commands

Conversation mode guidance

Antigravity’s conversation modes affect how commands perform. Match the mode to the command for best results.
Planning Mode is mandatory for /brainstorm, /plan, /research, and /troubleshoot. These commands require deep thinking, design reasoning, and complex problem isolation — they will not perform correctly in Fast Mode.
Fast Mode is recommended for /implement, /test, and batch execution. These commands are optimized for direct code generation and mechanical tasks.
ModeCommands
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  →  discuss + design (no code yet)

/plan        →  bite-sized tasks with TDD steps

/implement   →  subagent per task + code review between

/review      →  validate against plan

/git         →  smart commit and push

/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.

Build docs developers (and LLMs) love