@rmyndharis/antigravity-skills
v1.0.0
Published
The Antigravity Skill Vault CLI - Install agent skills to your workspace
Readme
Antigravity Skill Vault
A curated collection of Agent Skills for Google Antigravity, ported from the Claude Code Agents repository.
This vault transforms the extensive Claude Code ecosystem into Antigravity Skills, providing your agent with repeatable workflows, domain expertise, and specialized tools.
🚀 Overview
This repository contains 300+ specialized skills across software development, operations, security, and business domains. Each skill is a directory-based package that teaches Antigravity's agent how to perform specific tasks.
What's Included?
The skills are derived from three types of Claude Code components, all unified into the Antigravity Skill format:
- Domain Skills (e.g.,
k8s-manifest-generator,async-python-patterns): Specialized knowledge packages. - Specialist Agents (e.g.,
backend-architect,security-auditor): Persona-based instruction sets for complex reasoning. - Commands & Workflows (e.g.,
full-stack-orchestration-full-stack-feature,conductor-implement): Structured, multi-step procedures.
📂 Categories
Skills are flattening into the skills/ directory, but cover these broad categories:
💻 Development & Languages
- Python:
python-pro,fastapi-pro,async-python-patterns,uv-package-manager - JavaScript/TypeScript:
typescript-pro,react-modernization,nextjs-app-router-patterns - Systems:
rust-pro,golang-pro,memory-safety-patterns - Mobile:
frontend-mobile-development,react-native-architecture
☁️ Infrastructure & Operations
- Kubernetes:
kubernetes-architect,helm-chart-scaffolding,gitops-workflow - Cloud:
cloud-infrastructure,terraform-module-library,cost-optimization - CI/CD:
cicd-automation,github-actions-templates,gitlab-ci-patterns
🔒 Security & Quality
- Security:
security-auditor,sast-configuration,owasp-prevention - Code Quality:
code-review-ai,code-refactoring,technical-debt-management - Testing:
unit-testing,tdd-workflows,e2e-testing-patterns
🔄 Workflows & Architecture
- Conductor:
conductor-implement,context-driven-development(Context-Driven Development) - Architecture:
c4-architecture,microservices-patterns,api-design-principles - Orchestration:
full-stack-orchestration,incident-response
📊 Data & AI
- Data Engineering:
data-engineer,spark-optimization,dbt-transformation-patterns - AI/ML:
ml-pipeline-workflow,prompt-engineering-patterns,rag-implementation
🛠️ How to Use
When a conversation starts, Antigravity loads the metadata (name & description) from all skills. ANTIGRAVITY automatically activates a skill when your request matches its description.
Examples:
- "Help me design a REST API for a user service" → Activates
api-design-principlesandbackend-architect. - "Scaffold a new FastAPI project" → Activates
python-development-python-scaffold. - "Review this PR for security issues" → Activates
security-scanning-security-hardeningorsecurity-auditor. - "Start a new feature track for login" → Activates
conductor-new-track.
You can install skills in two scopes:
- Workspace scope (project-specific):
<workspace-root>/.agent/skills/ - Global scope (available in all projects):
~/.gemini/antigravity/skills/
Using npx (Recommended)
You can easily install skills directly from the repository without cloning it manually.
1. List available skills:
Check which skills are available in the vault before installing:
npx github:rmyndharis/antigravity-skill-vault list2. Install a specific skill to your current project:
npx github:rmyndharis/antigravity-skill-vault install <skill-name>
# Example:
npx github:rmyndharis/antigravity-skill-vault install bash-pro3. Install a skill globally:
npx github:rmyndharis/antigravity-skill-vault install <skill-name> --global
# Example:
npx github:rmyndharis/antigravity-skill-vault install bash-pro --global4. Check installed skills:
# List local specific skills
npx github:rmyndharis/antigravity-skill-vault installed
# List globally installed skills
npx github:rmyndharis/antigravity-skill-vault installed --global5. Update installed skills:
# Update a specific skill
npx github:rmyndharis/antigravity-skill-vault update <skill-name>
# Update ALL installed skills
npx github:rmyndharis/antigravity-skill-vault update
# Update global skills
npx github:rmyndharis/antigravity-skill-vault update --global6. Install ALL skills:
# To your current workspace
npx github:rmyndharis/antigravity-skill-vault install --all
# Globally
npx github:rmyndharis/antigravity-skill-vault install --all --globalManual Installation
If you prefer to clone the repository:
Option A — Install to a workspace
mkdir -p .agent/skills
cp -R /path/to/antigravity-skill-vault/skills/<skill-name> .agent/skills/Option B — Install globally
mkdir -p ~/.gemini/antigravity/skills
cp -R /path/to/antigravity-skill-vault/skills/<skill-name> ~/.gemini/antigravity/skills/Note: After copying skills, restart your agent session so Antigravity re-detects them.
➕ Adding New Skills
- Create a folder:
skills/<skill-name>/ - Add
SKILL.md(required) - (Optional) Add helpers:
scripts/,references/,assets/
SKILL.md Template
---
name: <skill-name>
description: <one sentence describing when to use this skill>
---
# <Skill Title>
## Use this skill when
- ...
## Do not use this skill when
- ...
## Instructions
1. ...
2. ...📜 License
MIT License. See LICENSE file for details.
Original content © Claude Code Agents. Ported to Antigravity Skills.
