Claude-skill-registry convert-other-to-antigravity-skills
Converts existing skills to the Antigravity standard (Project-root relative paths, uv dependency management). Use this when adding new skills or fixing existing ones to run properly in the Antigravity environment.
install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/convert-other-to-antigravity-skills" ~/.claude/skills/majiayu000-claude-skill-registry-convert-other-to-antigravity-skills && rm -rf "$T"
manifest:
skills/data/convert-other-to-antigravity-skills/SKILL.mdsource content
Convert Skills to Antigravity Standard
This skill automatically updates a skill's
SKILL.md file to follow the Antigravity project standards.
Prerequisites
This skill uses
uv for dependency management.
- Initialize
project (if not already done):uv
uv init .
- Add dependencies (No external packages required for this skill):
# uv add [package]
- Run the skill using
:uv run
uv run [script_path] ...
Features
- Path Correction: Updates
or relative.claude/skills
paths toscripts/
..agent/skills/<skill-name>/... - UV Integration: Replaces
commands withpython3
.uv run - Prerequisites: Adds the standard
setup guide to the top of the skill documentation.uv
Usage
To convert a target skill, run the conversion script from the project root:
uv run .agent/skills/convert-other-to-antigravity-skills/scripts/convert.py <target-skill-name>
Examples
Convert a newly added skill named
my-new-skill:
uv run .agent/skills/convert-other-to-antigravity-skills/scripts/convert.py my-new-skill
Convert a skill by path:
uv run .agent/skills/convert-other-to-antigravity-skills/scripts/convert.py .agent/skills/legacy-skill