๐ŸŽฏ

advanced-evaluation

๐ŸŽฏSkill

from guanyang/antigravity-skills

VibeIndex|
What it does

Based on the repository's structure and description of skills as modular capabilities for solving complex problems, I infer that the "advanced-evaluation" Claude Code skill likely: Performs compre...

๐Ÿ“ฆ

Part of

guanyang/antigravity-skills(47 items)

advanced-evaluation

Installation

git cloneClone repository
git clone https://github.com/guanyang/antigravity-skills.git ~/antigravity-skills
Add MarketplaceAdd marketplace to Claude Code
/plugin marketplace add guanyang/antigravity-skills
Install PluginInstall plugin from marketplace
/plugin install antigravity-skills@antigravity-skills
๐Ÿ“– Extracted from docs: guanyang/antigravity-skills
5Installs
-
AddedFeb 4, 2026

Skill Details

SKILL.md

Overview

# Antigravity Skills

[็ฎ€ไฝ“ไธญๆ–‡](README.zh-CN.md) | [English](README.md)

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.

๐Ÿ“‚ Directory Structure

```

.

โ”œโ”€โ”€ .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

```

๐Ÿ”Œ Compatibility

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.

๐Ÿ“– Quick Start

1. Prepare the Skills Library

First, clone this repository locally (it is recommended to place it in a fixed location for global reference):

```bash

git clone https://github.com/guanyang/antigravity-skills.git ~/antigravity-skills

```

2. Install Skills (Symlink Method)

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.

#### ๐Ÿ”น Method A: Project Level Installation

Enable skills only for the current project. Run in your project root:

```bash

mkdir -p .agent/skills

ln -s ~/antigravity-skills/skills/* .agent/skills/

```

#### ๐Ÿ”น Method B: Global Level Installation

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/ |

#### ๐Ÿ”น Method C: Claude Plugin Installation (Claude Code Only)

If you primarily use Claude Code, you can install with one click via the plugin marketplace (this method automatically handles skill loading):

```bash

# 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

```

3. Using Skills

Enter @[skill-name] or /skill-name in the chat box to invoke them, for example:

```text

/canvas-design Help me design a 16:9 blog cover about "Deep Learning"

```

4. More Information

  • View Manual: For detailed usage, please refer to [docs/Antigravity_Skills_Manual.en.md](docs/Antigravity_Skills_Manual.en.md).
  • Environment Dependencies: Some skills rely on Python environments; please ensure your system has necessary libraries installed (e.g., pdf2docx, pandas, etc.).

๐Ÿ”„ Keeping in Sync

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:

  1. Configuration: The skills_sources.json file in the root directory is pre-configured with the upstream repositories for major skills and usually does not need manual adjustment.
  2. Run Sync:

You can choose to sync all skills or just a specific one:

```bash

# Sync all configured sources

./scripts/sync_skills.sh

# Sync only a specific source (e.g., anthropics-skills)

./scripts/sync_skills.sh anthropics-skills

```

The script will automatically pull the latest code and update the corresponding skill directories.

> Note: The ui-ux-pro-max skill has a special directory structure and does not support automatic synchronization via script for now. Please use its official installation command uipro init --ai antigravity to install or update.

๐Ÿš€ Integrated Skills (Total: 50)

๐ŸŽจ Creative & Design

These skills focus on visual expression, UI/UX design, and artistic creation.

  • @[algorithmic-art]: Create algorithmic and generative art using p5.js code.
  • @[canvas-design]: Create posters and artworks (PNG/PDF output) based on design philosophies.
  • @[json-canvas]: Create and edit JSON Canvas files (.canvas) with nodes, edges, and groups (commonly used in Obsidian).
  • @[frontend-design]: Create high-quality, production-grade frontend interfaces and Web components.
  • @[ui-ux-pro-max]: Professional UI/UX design intelligence, providing full design schemes for colors, fonts, layouts, etc.
  • @[web-artifacts-builder]: Build complex, modern Web apps (based on React, Tailwind, Shadcn/ui).
  • @[theme-factory]: Generate matching themes for documents, slides, HTML, etc.
  • @[brand-guidelines]: Apply Anthropic's official brand design specifications (colors, typography, etc.).
  • @[remotion]: Best practices for Remotion - Video creation in React.
  • @[slack-gif-creator]: Create high-quality animated GIFs optimized specifically for Slack.

๐Ÿ› ๏ธ Development & Engineering

These skills cover the full lifecycle of coding, testing, debugging, and code review.

  • @[test-driven-development]: Test-Driven Development (TDD) - write tests before implementation code.
  • @[systematic-debugging]: Systematic debugging for resolving bugs, test failures, or abnormal behaviors.
  • @[webapp-testing]: Use Playwright for interactive testing and verification of local web applications.
  • @[receiving-code-review]: Handle code review feedback using technical verification rather than blind modification.
  • @[requesting-code-review]: Proactively initiate code reviews to verify code quality before merging or completion.
  • @[finishing-a-development-branch]: Guide the finalization of a development branch (merges, PRs, cleanups, etc.).
  • @[subagent-driven-development]: Coordinate multiple sub-agents to perform independent development tasks in parallel.

๐Ÿ“„ Documentation & Office

These skills are used for handling professional documents and office needs in various formats.

  • @[doc-coauthoring]: Guide users through collaborative writing of structured do

More from this repository10

๐ŸŽฏ
frontend-design๐ŸŽฏSkill

Designs distinctive, production-grade frontend interfaces with creative aesthetics, generating polished web components and UI that avoid generic AI looks.

๐ŸŽฏ
theme-factory๐ŸŽฏSkill

Generates professional, pre-designed color and font themes for slides, docs, and other artifacts with instant visual styling.

๐ŸŽฏ
systematic-debugging๐ŸŽฏSkill

Systematically investigates root causes of technical issues by carefully reproducing problems, analyzing errors, and gathering comprehensive diagnostic evidence before proposing any fixes.

๐ŸŽฏ
ui-ux-pro-max๐ŸŽฏSkill

Generates comprehensive UI/UX design recommendations with 50+ styles, 21 color palettes, font pairings, and best practices across multiple tech stacks.

๐ŸŽฏ
brainstorming๐ŸŽฏSkill

Guides collaborative brainstorming by systematically exploring ideas, refining requirements, and designing solutions through structured, incremental dialogue.

๐ŸŽฏ
canvas-design๐ŸŽฏSkill

Generates unique design philosophies and transforms them into visually stunning artworks in .png and .pdf formats, emphasizing original artistic expression.

๐ŸŽฏ
brand-guidelines๐ŸŽฏSkill

Applies Anthropic's brand colors, typography, and design standards to visual artifacts for consistent corporate identity.

๐ŸŽฏ
skill-creator๐ŸŽฏSkill

Guides users through creating specialized skills that extend Claude's capabilities with domain-specific knowledge and workflows.

๐ŸŽฏ
notebooklm๐ŸŽฏSkill

Queries Google NotebookLM notebooks to retrieve source-grounded, citation-backed answers from Gemini using browser automation and library management.

๐ŸŽฏ
web-artifacts-builder๐ŸŽฏSkill

Builds complex, multi-component Claude.ai HTML artifacts using React, Tailwind CSS, and shadcn/ui, with automated initialization and bundling scripts.