Open Agent Hub plugin marketplace
npx claudepluginhub guanyang/open-agent-hubUnified capability management center for Skills, Agents, and Commands.
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.
.
├── .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 | .codex/skills/ | ~/.codex/skills/ |
| Cursor | IDE | ✅ Full | .cursor/skills/ | ~/.cursor/skills/ |
| GitHub Copilot | Extension | ⚠️ Partial | .github/skills/ | ~/.copilot/skills/ |
| OpenCode | CLI | ✅ Full | .opencode/skills/ | ~/.config/opencode/skills/ |
| Windsurf | IDE | ✅ Full | .windsurf/skills/ | ~/.codeium/windsurf/skills/ |
| Trae | IDE | ✅ Full | .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/
Enable skills by default in all projects. Run the corresponding command based on the tool; common examples:
| Tool Name | Global Installation Command (macOS/Linux) |
|---|---|
| General | mkdir -p ~/.agent/skills && ln -s ~/antigravity-skills/skills/* ~/.agent/skills/ |
| Claude Code | mkdir -p ~/.claude/skills && ln -s ~/antigravity-skills/skills/* ~/.claude/skills/ |
| Antigravity | mkdir -p ~/.gemini/antigravity/skills && ln -s ~/antigravity-skills/skills/* ~/.gemini/antigravity/skills/ |
| Gemini | mkdir -p ~/.gemini/skills && ln -s ~/antigravity-skills/skills/* ~/.gemini/skills/ |
| Codex | mkdir -p ~/.codex/skills && ln -s ~/antigravity-skills/skills/* ~/.codex/skills/ |
If you primarily use Claude Code, you can install with one click via the plugin marketplace (this method automatically handles skill loading):
# 1. Start Claude Code
# 2. Add the plugin marketplace
/plugin marketplace add guanyang/antigravity-skills
# 3. Install the plugin from the marketplace
/plugin install antigravity-skills@antigravity-skills
Enter @[skill-name] or /skill-name in the chat box to invoke them, for example:
/canvas-design Help me design a 16:9 blog cover about "Deep Learning"
pdf2docx, pandas, etc.).Many skills in this project originate from excellent open-source communities. To keep in sync with upstream repositories, you can update them in the following ways: