Support keyword: antigravity cli skills

Antigravity CLI skills

Skills are reusable agent workflows, so migration is not just a file copy. Confirm scope, project context, and behavior before relying on them.

Updated on 2026-05-27. Independent guide. Use official Google links for downloads and account actions.

What users are really asking

When users search for antigravity cli skills, they usually want to know whether their Gemini CLI custom workflows still work. A useful answer should explain skill scope, workspace instructions, and test prompts rather than only defining the word "skill".

Skills can encode powerful habits: how to debug, how to write docs, how to deploy, how to review code, or how to use internal tools. That makes them valuable, but also risky when moved into a new agent environment without testing.

Skills migration checklist

  1. Inventory global skills and project-specific skills separately.
  2. Keep project-specific skills inside the project when possible.
  3. Check whether the project uses AGENTS.md, GEMINI.md, or both.
  4. Run each skill on a harmless prompt before using it for edits.
  5. Remove stale references to tools, paths, or commands that no longer exist.
  6. Document which skills are safe for read-only tasks and which can trigger writes or external actions.

Global vs workspace skills

Skill typeBest forRisk if misplaced
Global skillGeneral workflows you use across many projects.Project-specific assumptions leak everywhere.
Workspace skillOne repo, product, or deployment workflow.The CLI may miss it if the path or context file is wrong.
Instruction fileStable repo rules, test commands, and coding conventions.Outdated instructions can steer the agent into wrong commands.

After migration, keep a small smoke-test prompt for each important skill. The prompt should prove that the skill loads, understands the workspace, and does not assume an old command name or path. If the skill can trigger writes, package installs, or external tool calls, test it in a branch and pair it with the permissions guide before using it on a real task.

Sources: official Google Antigravity product pages, Google Antigravity CLI documentation, and the Google Developers transition announcement. This site is an independent guide and is not affiliated with Google.

FAQ

Do skills migrate automatically?

Do not assume that. Inventory, move, and test skills explicitly.

Should every skill be global?

No. Project-specific skills should stay close to the workspace so they do not affect unrelated projects.

How do I know a skill works?

Run it on a harmless read-only prompt, then test a small edit in a disposable branch.

Related Antigravity CLI pages