Antigravity is Google DeepMind's agentic AI coding assistant built on Gemini. It offers a full IDE experience with task boundaries, artifact management, and deep integration with development workflows. Features include browser automation, image generation, and comprehensive project management.
Quick Reference
Task boundaries: PLANNING, EXECUTION, VERIFICATION
Artifacts: implementation_plan.md, task.md, walkthrough.md
Workflows: .agent/workflows/ for reusable processes
// turbo annotation for auto-run commands
Browser automation for E2E testing
Image generation for assets and mockups
Web search for real-time information
Multi-file editing with smart context
Built on Gemini models
Integrated development environment
Setup Guide
# Getting Started with Antigravity
## Access
Antigravity is available through:
- Google DeepMind IDE
- VS Code with Gemini extension
- CLI via Gemini CLI
## Key Concepts
### Task Boundaries
Structure your work with explicit task phases:
- **PLANNING**: Research and design
- **EXECUTION**: Write and modify code
- **VERIFICATION**: Test and validate
### Artifacts
Create and manage project documents:
- `implementation_plan.md`: Design proposals
- `task.md`: Progress tracking
- `walkthrough.md`: Proof of work
### Workflows
Define reusable processes in `.agent/workflows/`:
```markdown
---
description: How to deploy the application
---
1. Run tests
2. Build production bundle
3. Deploy to staging
4. Run smoke tests
5. Promote to production
```
## Tool Access
Antigravity can:
- Read and write files
- Run terminal commands
- Control browser for testing
- Generate images
- Search the web
## Best Practices
- Use PLANNING mode before coding
- Create implementation plans for user review
- Track progress in task.md
- Document completed work in walkthrough.md