Where files are installed
The installer places files into three directories under~/.gemini/antigravity/:
| Directory | What lives there |
|---|---|
~/.gemini/antigravity/skills/ | One subdirectory per skill, each containing a SKILL.md |
~/.gemini/antigravity/global_workflows/ | One .md file per slash command workflow |
~/.gemini/antigravity/agents/ | One .md file per specialist agent |
~/.gemini/GEMINI.md, holds the bootstrap block that instructs the agent to use SuperAntigravity at the start of every session.
Editing an existing skill
Each skill is a directory with a singleSKILL.md file. The frontmatter controls when Antigravity loads it; the body controls what the agent does.
Find the skill
Navigate to the skill’s directory:Each subdirectory is a skill. Open the one you want to change.
Edit SKILL.md
Open
~/.gemini/antigravity/skills/<skill-name>/SKILL.md in any editor and change the content. The description field in the frontmatter controls when the skill auto-triggers — edit it to change the matching behavior.Skill frontmatter format
EverySKILL.md starts with a YAML frontmatter block:
| Field | Purpose |
|---|---|
name | Unique identifier for the skill |
description | Antigravity reads this to decide whether to load the skill. Write it to match the situations where you want the skill to fire. |
The
description field is the most important part of a skill. Antigravity uses it to determine whether the skill applies to the current task. A well-written description means the skill fires at the right time; a vague one means it fires too often or not at all.Creating a new skill
SuperAntigravity ships with awriting-skills skill that teaches the skill format and guides you through creating new ones. To use it, start a conversation in Antigravity and ask it to create a new skill — the writing-skills skill will load automatically and walk you through the process.
You can also create a skill manually:
- Create a new directory under
~/.gemini/antigravity/skills/your-skill-name/ - Add a
SKILL.mdfile with valid frontmatter and body content - Restart Antigravity
Editing workflows
Slash commands like/brainstorm and /implement are backed by workflow files in ~/.gemini/antigravity/global_workflows/. Each file is a .md named after the command.
To change what /implement does, edit ~/.gemini/antigravity/global_workflows/implement.md. Changes take effect after restarting Antigravity.
Customizing agents
Specialist agents live in~/.gemini/antigravity/agents/. Each agent is a .md file describing the agent’s role, behavior, and constraints.
The GEMINI.md bootstrap block
During install, a block is appended to~/.gemini/GEMINI.md starting with the marker # SuperAntigravity Skills. This block is what makes SuperAntigravity always-on: Antigravity reads GEMINI.md at the start of every session, so the agent always knows it has skills and must check them before acting.
The block looks like this (abbreviated):
GEMINI.md.