Agent skill
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 this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/data/convert-other-to-antigravity-skills
SKILL.md
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
uvproject (if not already done):
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
.claude/skillsor relativescripts/paths to.agent/skills/<skill-name>/.... - UV Integration: Replaces
python3commands withuv run. - Prerequisites: Adds the standard
uvsetup guide to the top of the skill documentation.
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
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?