Skip to main content
Want to get started quickly? See the Quickstart guide. This page covers all installation methods and platform-specific details.

Installation methods

There are three ways to install Antigravity Awesome Skills:
  1. npx (recommended): One-line installation with automatic tool detection
  2. git clone: Manual installation to any directory
  3. Kiro IDE GUI: Import individual skills via the IDE interface
The npx installer automatically clones or updates the repository to the correct location for your AI assistant.

Default installation (Antigravity global)

npx antigravity-awesome-skills
This installs to ~/.gemini/antigravity/skills (Antigravity global path).
If the directory already exists, the installer runs git pull to update skills to the latest version.

Tool-specific installations

Use flags to install for specific AI assistants:
# Explicit Antigravity installation (same as default)
npx antigravity-awesome-skills --antigravity
Path: ~/.gemini/antigravity/skillsInvocation: Use @skill-name... in agent mode

Custom path installation

Install to any directory using the --path flag:
# Workspace-specific (e.g., .agent/skills for Antigravity workspace)
npx antigravity-awesome-skills --path .agent/skills

# Custom location
npx antigravity-awesome-skills --path ~/my-custom-skills

404 error fallback

If you see a 404 error, use the GitHub package fallback:
npx github:sickn33/antigravity-awesome-skills

View all options

npx antigravity-awesome-skills --help

Option B: git clone installation

Manually clone the repository to your preferred location.

Platform-specific paths

# Default npx path
git clone https://github.com/sickn33/antigravity-awesome-skills.git ~/.gemini/antigravity/skills
This repository uses symlinks for official skills. On Windows, you need to enable symlink support:
Windows users: Enable Developer Mode or run Git as Administrator before cloning.
Option 1: Enable Developer Mode (recommended)
  1. Open Settings → Update & Security → For developers
  2. Enable “Developer Mode”
  3. Clone normally
Option 2: Clone with symlinks enabled
git clone -c core.symlinks=true https://github.com/sickn33/antigravity-awesome-skills.git .agent/skills

Option C: Kiro IDE GUI import

Kiro IDE users can import individual skills through the GUI:
1

Open Agent Steering & Skills panel

Navigate to the Agent Steering & Skills panel in Kiro IDE.
2

Click import

Click +Import a skillGitHub
3

Paste skill URL

Enter the GitHub URL for a specific skill:
https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/[skill-name]
Example:
https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/brainstorming
This imports one skill at a time. For bulk installation, use npx or git clone.

Verify installation

After installation, verify skills are accessible:
test -d ~/.gemini/antigravity/skills && echo "Skills installed!"
You should see “Skills installed!” in your terminal.

Invocation by platform

Once installed, invoke skills using platform-specific syntax:
ToolTypeInvocation ExamplePath
Claude CodeCLI>> /skill-name help me....claude/skills/
Gemini CLICLIUse skill-name....gemini/skills/
Codex CLICLIUse skill-name....codex/skills/
Kiro CLICLIAuto-loads on-demandGlobal: ~/.kiro/skills/ · Workspace: .kiro/skills/
Kiro IDEIDE/skill-name or auto-loadsGlobal: ~/.kiro/skills/ · Workspace: .kiro/skills/
AntigravityIDEUse @skill-name... in agent modeGlobal: ~/.gemini/antigravity/skills/ · Workspace: .agent/skills/
CursorIDE@skill-name in chat.cursor/skills/
OpenCodeCLIopencode run @skill-name.agents/skills/
AdaL CLICLIAuto-loads on-demand.adal/skills/
GitHub CopilotExtManual copy-pasteN/A
Most modern tools use the @skill-name syntax. When in doubt, try that first!

Update existing installation

Automatic updates (Web App method)

The Web App automatically fetches and merges the latest skills every time you open it:
# Double-click or run in terminal
START_APP.bat

Manual update

Re-run the npx installer:
npx antigravity-awesome-skills
If the directory exists, it runs git pull automatically.

Troubleshooting

Solution: Install to the tool-specific path using installer flags:
# For Claude Code
npx antigravity-awesome-skills --claude

# For Cursor
npx antigravity-awesome-skills --cursor

# For custom path
npx antigravity-awesome-skills --path .agent/skills
Solution: Use the GitHub package fallback:
npx github:sickn33/antigravity-awesome-skills
Solution:
  1. Restart your IDE/CLI
  2. Verify installation path matches your tool
  3. Check skills exist: ls ~/.gemini/antigravity/skills/
  4. Try explicit tool flag: npx antigravity-awesome-skills --cursor
Solution: Remove the directory and reinstall:
rm -rf ~/.gemini/antigravity/skills
npx antigravity-awesome-skills

Next steps

Quickstart

Run your first skill in under 5 minutes

Browse bundles

Explore curated skill collections by role

Usage guide

Learn how to use skills effectively

View all skills

Browse the complete catalog of 968+ skills

Build docs developers (and LLMs) love