What are Antigravity Skills?
Antigravity Skills are a way to package repeatable instructions for agent work. Instead of pasting the same setup notes into every prompt, you can keep a focused workflow in a named skill and let the agent discover it when the task matches the description. A good skill is not a giant rulebook: it is a small, testable unit that explains when it applies, what it needs to read, what steps to follow, and what a finished result should look like.
The useful distinction is between capability and permission. A skill can teach an agent how to audit a sitemap, run a release checklist, or prepare a component. It does not automatically make every command safe. The agent may still need approval for shell commands, network access, secrets, file deletion, package installation, or MCP tools. Keep the instructions explicit about boundaries so the skill improves consistency without turning a useful shortcut into silent automation.
Search demand around Antigravity Skills also includes GitHub collections, installation questions, and comparisons with rules. Those are related but not identical intents. This page focuses on the practical path from a blank folder to a verified skill, then routes plugin, CLI, MCP, and permission questions to the more appropriate guide.
Where do Antigravity Skills live?
The exact location depends on whether you want the skill available to one project or to your user account. Follow the current official documentation for the product surface you are using, then confirm the active workspace and account before debugging discovery. A common mistake is creating a valid SKILL.md in a directory that the current agent session never scans.
Start with project scope when a skill depends on repository scripts, local conventions, or a particular deployment process. Use user scope for a general workflow that you can test across several repositories. Keep project-specific paths and secrets out of a user-wide skill, and do not copy a community skill into a sensitive repository until you have read every referenced file.
| Scope | Typical location | Best for | First check |
|---|---|---|---|
| Project | .agents/skills/<skill-name>/ | Repository-specific workflows, scripts, and conventions | Open the same workspace that owns the skill and inspect the active branch. |
| User | Your configured user skills directory | Reusable workflows shared across personal projects | Confirm the signed-in profile and the user-level path documented for the current release. |
| Reference files | references/, scripts/, assets/ below the skill | Long checklists, helper scripts, examples, and supporting material | Read the skill instructions before executing any helper. |
| External collection | A reviewed Git repository or official catalog | Discovering community workflows without pretending they are built in | Inspect publisher, license, commits, dependencies, and requested permissions. |
How to create an Antigravity Skill with SKILL.md
Create the smallest useful skill first. Pick one job such as checking a static-site release, reviewing a migration, or preparing a test plan. Give the folder a stable lowercase name, then write a short description that tells the agent what the skill does and when it should be selected. If the description is vague, the skill may never be discovered; if it is too broad, it may be selected for work it cannot safely complete.
Keep the main file readable. Put the workflow, constraints, expected evidence, and stop conditions in SKILL.md. Move long examples or narrow reference material into child files and tell the agent when to read them. A skill that asks the agent to run a command should name the command, explain the expected output, and say what to do when the result is different.
- Choose one taskWrite the user decision the skill helps with, not a list of every tool in your stack.
- Create the folderUse a stable name and keep the skill inside the project or user scope you intend to test.
- Write frontmatterInclude a clear name and description so discovery can match the task naturally.
- Add the workflowList inputs, ordered steps, evidence to collect, safety boundaries, and the definition of done.
- Test with a small taskAsk for a dry run or read-only check first, inspect the output, and only then allow write operations.
---
name: sitemap-release-check
description: Check a static sitemap before a release and report missing URLs, bad canonicals, and stale lastmod values.
---
# Sitemap release check
1. Read the project instructions and identify the source sitemap.
2. Inspect the route and the generated HTML before changing files.
3. Run the project's validation command with UTF-8 output.
4. Report evidence and stop before destructive cleanup.
Read references/checklist.md only when the repository uses the extended audit rules.
The example is a structure illustration, not a promise that every release uses the same folder name or command. Match the current Google documentation and your repository conventions before publishing a skill.
How the agent uses a skill
Discovery usually starts with the skill name and description. When a task looks like a match, the agent should read the main instructions and then load only the references needed for that task. This progressive-disclosure pattern keeps the first context small and makes it easier to see which details influenced the answer. It also gives you a natural review point: inspect the skill file before you trust the workflow it proposes.
A useful skill describes its own limits. Say whether it is read-only, which directories are in scope, which commands are safe, what requires confirmation, and what evidence should be saved. If the task changes a repository, require a final diff review and a clean status check. If the skill touches external services, name the official endpoint or source and avoid silently substituting a mirror.
The first run should be boring. Ask the agent to inventory files, explain the proposed plan, or validate a harmless fixture. Treat a surprising command, unexplained network request, or request for a token as a stop signal rather than an invitation to widen permissions.
Match
The task wording and the description point to the same recognizable workflow.
Read
The agent loads the main skill instructions and only the references relevant to the current task.
Plan
The skill exposes assumptions, write scope, commands, and stopping conditions before action.
Verify
The result includes concrete files, URLs, test output, or other evidence rather than a vague success claim.
Review
You inspect the diff, permissions, and external effects before making the workflow routine.
Skills vs rules, plugins, and MCP
The phrase “Antigravity customization” covers several different surfaces. A new page is useful only when the boundary is clear. Use a skill for a repeatable task procedure, a rule for a persistent instruction that should shape many tasks, a plugin or extension for product capabilities and integrations, and MCP for a tool or data connection. They can work together, but they should not be described as interchangeable.
The related keyword antigravity rules has enough demand for its own future research, while antigravity plugins already maps to the site's Extensions guide. For this page, keep the comparison practical: decide what belongs in the skill file, link to the relevant existing guide, and avoid duplicating a complete MCP or CLI tutorial here.
| Surface | Primary job | Use it when |
|---|---|---|
| Skill | Teach a repeatable workflow with inputs, steps, references, and verification | The task has a recognizable start, finish, and evidence trail. |
| Rule | Keep a persistent preference, constraint, or project instruction in scope | The instruction should influence many different tasks. |
| Plugin or extension | Add a product integration, command surface, language feature, or UI capability | You need a host integration rather than a written procedure. |
| MCP server | Expose tools or resources from a local or remote service | The workflow needs a controlled data or action boundary outside the skill text. |
Install and verify a community skill safely
A GitHub collection can be useful, but a search result is not a trust signal. Before copying a skill, inspect the repository history, license, referenced scripts, package files, network calls, and required credentials. Read the full SKILL.md and any linked reference or script files. A short skill can still ask an agent to run a destructive command if you do not inspect the details.
After installation, verify discovery in the smallest workspace that reproduces the intended task. Start with a read-only request and ask the agent to explain which skill it selected and why. Compare the expected files with the actual diff. If a skill depends on a CLI, plugin, or MCP server, test that dependency separately so a failure is not misdiagnosed as a skill-discovery problem.
- Read the sourceCheck the publisher, license, commit history, references, scripts, dependencies, and external endpoints.
- Copy into a test scopeUse a disposable repository or a project-level folder before making the skill user-wide.
- Run a read-only promptAsk for an inventory, explanation, or dry-run report before allowing edits or shell actions.
- Inspect evidenceConfirm the selected skill, files read, commands proposed, and output match your intent.
- Promote carefullyOnly share the skill more broadly after the workflow is predictable and its permissions are documented.
- Do not place API keys, browser session data, or production credentials in a skill file.
- Keep delete, deploy, payment, messaging, and account-administration actions behind manual review.
- Pin or review dependencies when a skill calls a script, package manager, or external service.
- Use version control so a generated change can be inspected and reversed.
- Treat an unfamiliar network request as a reason to stop and investigate.
Version and official-source check
This project is a software download site, so the version gate was completed before publishing the guide. On August 19, 2026, the official Antigravity documentation and download flow were checked for the current product lines. The desktop line recorded by this site is Antigravity 2.0 v2.8.1 with Antigravity IDE v2.5.5; the CLI guide was synchronized to v1.1.14. Skills behavior can change separately from installer versions, so use the official Skills documentation as the final authority.
The download call to action remains an official-page fallback. No permanent binary URL, package size, checksum, or safety-scan result is invented here. Historical v1.13.3 and v2.2.1 pages remain archives and are not presented as the current release.
Antigravity Skills FAQ
What is an Antigravity Skill?
It is a reusable set of instructions, usually organized around a SKILL.md file, that helps an agent perform a specialized workflow consistently. It teaches procedure; it does not automatically grant permission to run every command.
How do I add Skills to Antigravity?
Create or copy a named skill folder into the project or user scope documented for the current Antigravity release. Confirm that the folder contains a readable SKILL.md, then test discovery in a small workspace with a read-only request before allowing edits.
How do I create a SKILL.md?
Choose one narrow task, create a stable folder, add name and description frontmatter, then document inputs, steps, references, safety boundaries, and the definition of done. Move long material into references or scripts and explain when it should be read.
Can I use Claude Skills in Antigravity?
Do not assume that a skill written for another agent product is drop-in compatible. Review its folder structure, frontmatter, commands, paths, and permission assumptions; adapt it to Antigravity and test it before treating it as a native workflow.
What is the difference between Antigravity Skills and Rules?
A skill is usually a task procedure that activates for a recognizable job. A rule is a persistent instruction or constraint that should influence many tasks. If you need a repeatable checklist, start with a skill; if you need a standing preference, research the current rules format.
Are Antigravity Skills safe?
A skill file is not automatically safe or official. Read the source and every referenced script, test it in a disposable or low-risk project, keep secrets out of the file, and require review for destructive, network, credential, deployment, or account actions.
Where can I find Antigravity Skills on GitHub?
Search for a repository or collection whose publisher, license, history, files, dependencies, and requested permissions you can inspect. Treat GitHub as a discovery source, not proof that a skill is maintained or safe.
Do Skills replace plugins, CLI commands, or MCP servers?
No. Skills describe workflows, plugins and extensions add host integrations, CLI commands provide terminal operations, and MCP servers expose tools or resources. Link the surfaces together only when the task genuinely needs them.
Official sources
- Google Antigravity Skills documentation — Official Skills concepts, structure, discovery, and usage guidance.
- Google Antigravity IDE Skills documentation — IDE-specific Skills behavior and current product terminology.
- Google Antigravity Rules documentation — Use this source when the question is about persistent rules rather than task Skills.
- Google Antigravity CLI Skills and plugins — CLI-specific boundary for plugins and Skills.
- Google Antigravity download — Official platform and installer selection; use it for current package verification.