Agents

Specialist AI personas with deep expertise in specific domains.

What are Agents?

Agents are specialist AI personas configured with domain-specific expertise, tools, and behavioral patterns. Each agent is designed to excel in a particular area of software development.

When you make a request, Antigravity Kit's Intelligent Routing system automatically detects which agents are needed and activates them for you. You can also mention them by name to force a specific perspective.

How to Use Agents

No need to mention agents explicitly! The system automatically detects and applies the right specialist(s) based on your request.

You: "Add JWT authentication"
AI: 🤖 Applying @security-auditor + @backend-specialist...

You: "Fix the dark mode button"
AI: 🤖 Using @frontend-specialist...

You: "Login returns 500 error"
AI: 🤖 Using @debugger for systematic analysis...

However, you can still override this behavior by explicitly mentioning an agent name:

Use the security-auditor agent to review authentication...

Tip: Agents can work together! Use the orchestrator agent to coordinate multiple specialists on complex tasks.

Available Agents

Antigravity Kit includes 20 specialist agents:

orchestrator

Multi-agent coordination

project-planner

Discovery, task planning

frontend-specialist

Web UI/UX

backend-specialist

API, business logic

database-architect

Schema, SQL

mobile-developer

iOS, Android, RN

game-developer

Game logic, mechanics

devops-engineer

CI/CD, Docker

security-auditor

Security compliance

penetration-tester

Offensive security

test-engineer

Testing strategies

debugger

Root cause analysis

performance-optimizer

Speed, Web Vitals

seo-specialist

Ranking, visibility

documentation-writer

Manuals, docs

product-manager

Requirements, user stories

product-owner

Strategy, backlog, MVP

qa-automation-engineer

E2E testing, CI pipelines

code-archaeologist

Legacy code, refactoring

explorer-agent

Codebase analysis

Agent Structure

Each agent is defined by a markdown file with YAML frontmatter:

---
name: frontend-specialist
description: Frontend architect expert
tools: Read, Edit, Write, Bash
skills: react-patterns, nextjs-best-practices
---

# Frontend Specialist

You are a senior frontend architect...

The skills field determines which domain knowledge modules the agent can access.

Next Steps