Antigravity Claude Skills banner
jswortz jswortz

Antigravity Claude Skills

Development community

Description

**Motivation**: A skill management system for the Gemini 3 framework that is interchangeable with the Claude skills frameworks and samples. It allows you to seamlessly ingest and use skills from the b

Installation

This entry records only its repository, not the path inside it, so there is no exact command to give. Open the source below and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

README

Antigravity Skills Manager

**Motivation**: A skill management system for the Gemini 3 framework that is interchangeable with the Claude skills frameworks and samples. It allows you to seamlessly ingest and use skills from the broader ecosystem as native Antigravity Workflows or Rules.

**Resources**:

![Demo of CRUD operations](crud_demo.gif)

This project provides a system to bootstrap **Antigravity Workflows** and **Rules** from external skill repositories.

Installation

**Prerequisites**:

  • Python 3.8+
  • uv (recommended) or pip

**Install from source (Development)**:

git clone https://github.com/jwortz/antigravity-claude-skills.git
cd antigravity-claude-skills
uv pip install -e .

**Install globally (CLl Tool)**: To make the `antigravity-skills` command available everywhere in your terminal:

# from within the directory
uv tool install .

# or directly from git
uv tool install git+https://github.com/jwortz/antigravity-claude-skills.git

Usage

Once installed, you can use the `antigravity-skills` command from anywhere.

Managing Sources

**Add a Skill Source** (e.g., Anthropics Skills Repo):

antigravity-skills add-source https://github.com/anthropics/skills

**List Sources**:

antigravity-skills list-sources

Ingesting Skills

**Ingest a skill as an Antigravity Workflow:**

antigravity-skills ingest webapp-testing --as workflow

**Ingest a skill as a Workspace Rule:**

antigravity-skills ingest webapp-testing --as rule --scope workspace
  • With Activation:
    antigravity-skills ingest webapp-testing --as rule --scope workspace --activation glob --glob "**/*.test.js"

**Ingest a skill as a Global Rule:**

antigravity-skill