Skip to main content
Antigravity is Google’s AI-first IDE with native skill support. It uses its own skill and rule system separate from VS Code, making it ideal for Agent Teams Lite.

Prerequisites

  • Antigravity installed and configured
  • Git installed for cloning the repository
  • Access to ~/.gemini/antigravity/ directory (global) or .agent/ (workspace)

Installation Steps

1

Clone the repository

2

Choose installation scope

Antigravity supports both global and workspace-specific installations.
You should see output like:
3

Add orchestrator rule

Antigravity uses “rules” for agent instructions. Add the SDD orchestrator as a rule.
Add to ~/.gemini/GEMINI.md:
Append the contents from examples/antigravity/sdd-orchestrator.md.
The orchestrator rule teaches Antigravity to:
  • Detect SDD triggers and commands
  • Read skill files from the appropriate path
  • Execute skills inline (within current context)
  • Track state between phases
  • Follow artifact storage policies (engram/openspec/none)
Key sections:
  • Operating Mode (delegate-only principle)
  • Artifact Store Policy
  • Commands table
  • Command → Skill Mapping
  • Engram Artifact Convention
4

Verify installation

Open Antigravity in any project and open the agent panel.Type:
Expected response:

Configuration Locations

Global Skills

~/.gemini/antigravity/skills/sdd-*/Available across all projects

Workspace Skills

.agent/skills/sdd-*/Project-specific skills

Rules

~/.gemini/GEMINI.md (global).agent/rules/ (workspace)

Antigravity-Specific Paths

Antigravity does NOT use .vscode/ paths. It has its own convention:
  • Global: ~/.gemini/antigravity/skills/
  • Workspace: .agent/skills/ and .agent/rules/

Global vs Workspace

How It Works

Antigravity has native skill support but runs them inline: Characteristics:
  • Native skill awareness (Antigravity can discover and suggest skills)
  • Inline execution (not true sub-agents)
  • Skills work as structured instructions
  • Planning phases work well
  • Implementation guided by skill instructions

Example Usage

Initialize SDD

Start a New Feature

Fast-Forward Planning

Artifact Storage

Team Setup with Workspace Skills

To share SDD with your team using workspace-specific installation:
1

Install skills to workspace

2

Add workspace rule

3

Commit to repository

4

Team members get SDD automatically

When team members pull, they get SDD automatically:

Verification Checklist

1

Check skills directory (global)

Should show 9 directories:
2

Check skills directory (workspace)

Should show same 9 directories if using workspace installation.
3

Check shared conventions

Should show:
4

Verify rule is configured

5

Test in Antigravity

Open Antigravity agent panel and type:
Should recognize the command and read the skill.

Troubleshooting

Problem: Antigravity doesn’t recognize /sdd-initSolutions:
  1. Verify rule is in ~/.gemini/GEMINI.md or .agent/rules/
  2. Check skills are in correct path (NOT .vscode/)
  3. Restart Antigravity to reload configuration
  4. Try alternative phrasing: “Initialize SDD”
Problem: Antigravity can’t read skill filesSolutions:
  1. Check skills path:
    • Global: ~/.gemini/antigravity/skills/sdd-*/
    • Workspace: .agent/skills/sdd-*/
  2. Do NOT use .vscode/skills/ - that’s for VS Code only
  3. Ensure file permissions allow reading
  4. Verify each skill has SKILL.md file
Problem: Skills installed to .vscode/ instead of .agent/Solutions:
  1. Remove incorrect installation: rm -rf .vscode/skills/sdd-*
  2. Install to correct location:
  3. Update rule to reference .agent/skills/ path
Problem: Orchestrator behavior not activeSolutions:
  1. Check global rule: ~/.gemini/GEMINI.md
  2. Check workspace rule: .agent/rules/sdd-orchestrator.md
  3. Ensure file is readable
  4. Restart Antigravity after making changes

Next Steps

Quick Start

Learn the SDD workflow

Commands Reference

Complete command documentation

Engram Setup

Install recommended persistence

Team Workflows

Share SDD with your team