Quickstart
After installing SuperAntigravity, your Antigravity IDE has access to the full workflow pipeline. Here’s how to use it to build a feature from scratch.Skills fire automatically — you don’t need to invoke them. Just use the slash commands and the right skills load based on your context.
The 5-stage workflow
Brainstorm the feature
Type Switch to Planning Mode in Antigravity conversation settings before starting.Antigravity will ask you 4–5 clarifying questions, then propose 2–3 design approaches. Review the options and approve one. A design document is saved to
/brainstorm followed by a brief description of what you want to build.docs/plans/.Write the implementation plan
Once the design is approved, type:Antigravity reads the design document and breaks it into bite-sized tasks — each with a specific file path, failing test to write, and expected outcome. The plan is saved to
docs/plans/.Stay in Planning Mode for this step.Implement the feature
Switch to Fast Mode, then type:Antigravity works through the plan task by task:
- Runs a confidence check before each task (score must reach 27/30 to proceed)
- Writes a failing test first (RED phase)
- Writes minimal code to make it pass (GREEN phase)
- Commits after every GREEN test
- Requests a code review after each task
Review the implementation
When all tasks are complete, type:The
code-reviewer agent checks the implementation against the plan across 6 areas: plan alignment, code quality, architecture, documentation, issue identification, and communication.You’ll receive one of three verdicts:- APPROVED — ready to ship
- APPROVED WITH SUGGESTIONS — ship, then address suggestions
- CHANGES REQUIRED — fix before shipping
Conversation modes
Using the right mode for each phase makes a significant difference in response quality.| Mode | Use for | Commands |
|---|---|---|
| Planning Mode | Design, research, analysis, debugging | /brainstorm, /plan, /research, /troubleshoot |
| Fast Mode | Implementation, testing, execution | /implement, /test, /build |
Skills fire automatically
You don’t need to load skills manually. When your context matches a skill’s trigger description, Antigravity loads it automatically. For example:- Starting a new feature →
brainstormingskill loads - A test fails →
systematic-debuggingskill loads - About to mark something done →
verification-before-completionskill loads - Code touches authentication →
security-reviewskill loads
Next steps
The workflow
Deep dive into each pipeline stage, gates, and interrupt protocols
Skills reference
All 19 auto-triggered skills explained with trigger conditions
Commands reference
Every slash command with prerequisites and examples
Agents reference
The 8 specialist agents and when to use them