What are Workflows?
Workflows are pre-defined slash command procedures that orchestrate agents and skills for common development tasks. Invoke them with/command syntax.
Available Workflows (11)
Antigravity Kit includes 11 workflows for different scenarios:/brainstorm
Structured idea exploration
Explores multiple options before implementation.
Usage & Examples
Usage & Examples
Purpose: Generate and compare different approaches to a problem.Behavior:Output Format:
- Understand the goal and constraints
- Generate at least 3 different approaches
- Compare pros/cons of each option
- Provide recommendation with reasoning
- Context summary
- Option A, B, C with pros/cons
- Effort estimation for each
- Final recommendation
/create
Create new application
Starts interactive application creation process.
Usage & Examples
Usage & Examples
Purpose: Build new applications from scratch with proper planning.Workflow:Asks if unclear:
- Request Analysis: Understand what you want
- Project Planning: Use
project-planneragent - Application Building: Orchestrate
app-builderskill - Preview: Start with
auto_preview.py
database-architect→ Schemabackend-specialist→ APIfrontend-specialist→ UI
- What type of application?
- What are the basic features?
- Who will use it?
/debug
Systematic problem investigation
Usage & Examples
Usage & Examples
Purpose: Investigate issues, errors, or unexpected behavior systematically.Behavior:Output:
- Gather information: Error message, reproduction steps, recent changes
- Form hypotheses: List possible causes ordered by likelihood
- Investigate systematically: Test each hypothesis
- Fix and prevent: Apply fix, explain root cause, add prevention
debugger agent with systematic-debugging skillExamples:- Symptom description
- Information gathered
- Hypotheses tested
- Root cause identified
- Fix applied
- Prevention measures
/deploy
Deploy application
Usage & Examples
Usage & Examples
Purpose: Deploy application to production or staging.Uses:
devops-engineer agent with deployment-procedures skillWorkflow:- Detect platform (Vercel, AWS, Docker, etc.)
- Prepare build artifacts
- Execute deployment scripts
- Verify health checks
- Output deployment URL
/enhance
Improve existing code
Usage & Examples
Usage & Examples
Purpose: Improve code quality, performance, or maintainability.Can invoke:
performance-optimizerfor speed improvementscode-archaeologistfor refactoringsecurity-auditorfor security hardening
/orchestrate
Multi-agent coordination
Coordinates multiple specialist agents for complex tasks.
Usage & Examples
Usage & Examples
Purpose: Solve complex problems requiring multiple domain experts.Critical Rules:Agent Selection Matrix:
- ⚠️ Minimum 3 agents required
- Two phases: Planning → Implementation
- User approval required between phases
project-plannercreates docs/PLAN.md- (optional)
explorer-agentfor codebase discovery - STOP and ask for user approval
- Invoke multiple agents in parallel
- Coordinate:
database-architect,backend-specialist,frontend-specialist, etc. - Run verification scripts
| Task Type | Required Agents |
|---|---|
| Web App | frontend-specialist, backend-specialist, test-engineer |
| API | backend-specialist, security-auditor, test-engineer |
| Full Stack | project-planner, frontend, backend, devops-engineer |
/plan
Task breakdown
Usage & Examples
Usage & Examples
Purpose: Break down large tasks into structured plans.Uses: Output: Structured markdown file with:
project-planner agent with plan-writing skillWorkflow:- Analyze requirements
- Break down into tasks with estimates
- Output structured plan with milestones
- Create docs/PLAN.md
- Project overview
- Task breakdown
- Milestones
- Effort estimates
/preview
Preview changes
Usage & Examples
Usage & Examples
Purpose: Preview application in development server.Behavior:
- Detect framework (Next.js, Vite, etc.)
- Start development server
- Present URL to user
/status
Check project status
Usage & Examples
Usage & Examples
Purpose: Get overview of project health and status.Checks:
- Git status
- Dependency status
- Test status
- Build status
- Deployment status
/test
Test generation & execution
Usage & Examples
Usage & Examples
Purpose: Generate tests, run existing tests, or check coverage.Uses: Generate Tests Workflow:Test Pattern (AAA):
test-engineer agent with testing-patterns and webapp-testing skillsSub-commands:- Analyze the code
- Identify functions, edge cases, dependencies
- Generate test cases (happy path, errors, edge cases)
- Write tests using project’s framework
- Arrange: Set up test data
- Act: Execute code
- Assert: Verify outcome
/ui-ux-pro-max
Design with 50 styles
Usage & Examples
Usage & Examples
Purpose: Generate professional UI with extensive design system.Uses:
ui-ux-pro-max skillWorkflow:- Load ui-ux-pro-max skill
- Access 50 design styles
- Access 21 color palettes
- Access 50 font combinations
- Generate professional UI with selected style
Workflow Best Practices
When to Use Each Workflow
/brainstorm
✓ Unclear requirements✓ Need to explore options✓ Complex problem needs breaking down
/create
✓ New feature in existing project✓ Small-to-medium complexity✓ Single domain (frontend OR backend)
/orchestrate
✓ Full-stack features✓ Complex multi-step tasks✓ Need multiple specialist agents
/debug
✓ Bug reports✓ Unexpected behavior✓ Performance issues
/test
✓ Need test coverage✓ Before deployment✓ After major changes
/deploy
✓ Ready to ship✓ After all tests pass✓ Need production URL
/plan
✓ Large projects✓ Need time estimates✓ Team coordination needed
Workflow Execution Flow
Here’s how a typical workflow executes:Next Steps
Agents
Learn about specialist agents
Skills
Discover modular skills
Architecture
Understand the system architecture
