by guanyang
Empower agents with professional capabilities in specific fields (such as full-stack development, complex logic planning, multimedia processing, etc.) through modular Skills definitions, allowing agents to solve complex problems systematically like human experts.
# Add to your Claude Code skills
git clone https://github.com/guanyang/antigravity-skillsEmpower agents with professional capabilities in specific fields (such as full-stack development, complex logic planning, multimedia processing, etc.) through modular Skills definitions, allowing agents to solve complex problems systematically like human experts.
.
âââ .claude-plugin/ # Claude plugin configuration files
âââ skills/ # Antigravity Skills library
â âââ skill-name/ # Individual skill directory
â â âââ SKILL.md # Core skill definition and Prompt (Required)
â â âââ scripts/ # Scripts relied upon by the skill (Optional)
â â âââ examples/ # Skill usage examples (Optional)
â â âââ resources/ # Templates and resources relied upon by the skill (Optional)
âââ docs/ # User manual and documentation guides
âââ scripts/ # Maintenance scripts
âââ skills_sources.json # Skills synchronization source config
âââ skills_index.json # Skills metadata index
âââ spec/ # Specification documents
âââ template/ # New skill template
âââ README.md
Antigravity Skills follow the universal SKILL.md format and can work seamlessly with any AI coding assistant that supports Agentic Skills:
| Tool Name (Agent) | Type | Compatibility | Project Path | Global Path |
| :--- | :--- | :--- | :--- | :--- |
| Antigravity | IDE | â
Full | .agent/skills/ | ~/.gemini/antigravity/skills/ |
| Claude Code | CLI | â
Full | .claude/skills/ | ~/.claude/skills/ |
| Gemini CLI | CLI | â
Full | .gemini/skills/ | ~/.gemini/skills/ |
| Codex | CLI | â
Full | | |
| | IDE | â
Full | | |
| | Extension| â ī¸ Partial | | |
| | CLI | â
Full | | |
| | IDE | â
Full | | |
| | IDE | â
Full | | |
.codex/skills/~/.codex/skills/.cursor/skills/~/.cursor/skills/.github/skills/~/.copilot/skills/.opencode/skills/~/.config/opencode/skills/.windsurf/skills/~/.codeium/windsurf/skills/.trae/skills/~/.trae/skills/[!TIP] Most tools will automatically discover skills in
.agent/skills/. For maximum compatibility, please clone/copy into this directory.
First, clone this repository locally (it is recommended to place it in a fixed location for global reference):
git clone https://github.com/guanyang/antigravity-skills.git ~/antigravity-skills
We strongly recommend using Symbolic Links (Symlink) for installation, so that when you update this repository via git pull, all tools will automatically sync the latest features.
Enable skills only for the current project. Run in your project root:
mkdir -p .agent/skills
ln -s ~/antigravity-skills/skills/* .agent/skills/