This repository contains a collection of custom "skills" for Antigravity, designed to automate common development tasks and enforce standardized workflows.
-
Download / Clone
- Clone this repository:
git clone https://github.com/krishnakanthb13/antigravity_global_skills.git
- OR Download the ZIP file and extract it.
- Clone this repository:
-
Setup Global Skills
- Navigate to your Antigravity global configuration folder:
- Windows:
C:\Users\%USERNAME%\.gemini\antigravity\skills\ - Mac/Linux:
~/.gemini/antigravity/skills/
- Windows:
- Move: Copy the contents of the unzipped folder/repo directly into
skills. - Result: You should see folders like
code_reviewand.agentdirectly insideskills.
- Navigate to your Antigravity global configuration folder:
You can invoke these skills in three ways:
-
Slash Commands (Recommended) Simply type
/in the chat to see a list of available commands. Select the one you want to run.- Example:
/code_review
- Example:
-
Natural Language Describe what you want to do using keywords from the skill description.
- Example: "Can you review this code for bugs?" (Triggers
code_review)
- Example: "Can you review this code for bugs?" (Triggers
-
Explicit Instruction Tell Antigravity specifically which skill to use.
- Example: "Run the release_helper skill."
- /[skill_name]/SKILL.md: The definition and instructions for a specific skill.
- /.agent/workflows/: Contains the markdown files that map Slash Commands (e.g.,
/my_command) to specific skills.
To create a new skill, simply run:
/create_skill
- Idea to Action (
/idea_to_action)- Converts raw concepts into execution plans with schedules, risk analysis, and founder-level filtering.
- Daily Log (
/daily_log)- Scans session work and appends a bulleted summary to
WORK_LOG.md.
- Scans session work and appends a bulleted summary to
- List Features (
/list_features)- Generates a comprehensive, prompt-based feature list for recreating the app.
- Software Architecture (
/software_architecture)- Guide for quality-focused software architecture and best practices.
- Code Review (
/code_review)- Comprehensive code analysis, bug hunting, and integrity testing checklist.
- Debug Issue (
/debug_issue)- Run a strict 5-step debugging protocol (Isolate -> Repr -> Log -> Fix -> Verify).
- Enhance UI (
/enhance_ui)- Upgrade UI styling and run integrity tests to ensure no code regression.
- Optimize Codebase (
/optimize_codebase)- Checks for large files (>2k lines) and refactors them into modular folders.
- Create Launcher (
/create_launcher)- Generate cross-platform launchers (.bat/.sh) with dependency checks and graceful shutdown.
- Create Skill (
/create_skill)- The meta-skill to interactively build new skills and automatically generate their slash commands.
- Frontend Design (
/frontend_design)- Create distinctive, production-grade frontend interfaces with high design quality.
- UI/UX Pro Max (
/ui_ux_pro_max)- UI/UX design intelligence with searchable database of patterns, styles, and stacks.
- Web Performance Optimization (
/web_performance_optimization)- Optimize website and web application performance including loading speed, Core Web Vitals, and bundle size.
- Scaffold Tests (
/add_tests)- Generates unit and regression test shells for existing code.
- Test Runner (
/run_tests)- Executes the test suite and analyzes results.
- Security Audit (
/security_audit)- Scans codebase for vulnerabilities and updates
SECURITY.md.
- Scans codebase for vulnerabilities and updates
- Document API (
/api_docs)- Generates API documentation (endpoints, requests, responses).
- Update Docs (
/update_docs)- Systematically updates
README.md,CODE_DOCUMENTATION.md, andDESIGN_PHILOSOPHY.md.
- Systematically updates
- Open Source Prep (
/open_source_prep)- Prepares a repo for public release: genericizes usernames, checks licenses, and verifies integrity.
- Release Helper (
/release_helper)- Auto-increments versions, writes emoji-rich
RELEASE_NOTES.md, and drafts social media posts.
- Auto-increments versions, writes emoji-rich
- Generate Release Image (
/generate_release_image)- Creates or edits modern, promotional assets for new versions and saves them to
assets/.
- Creates or edits modern, promotional assets for new versions and saves them to
- Repo Infographic (
/repo_infographic)- Generates a clear, themed infographic of the repository and links it in README.md.
For a complete guide on defining, sharing, and using skills, please refer to the official documentation: 🔗 https://antigravity.google/docs/skills
Key Concepts:
- Skills are specialized instruction sets stored as markdown files (
SKILL.md) with YAML frontmatter. - They "teaching" the agent how to perform specific, repeatable tasks.
- Workflows (stored in
.agent/workflows) act as triggers or aliases (Slash Commands) for these skills.
This repository was bootstrapped using a recursive "Meta-Skill" approach:
- Manual Bootstrap: We manually defined the first skill,
create_skill, which contains the logic to write files and folder structures. - Automation: Once
create_skillexisted, we used it to generate every other skill in this list (e.g.,code_review,release_helper). - Result: A self-expanding system where the agent uses its own tools to extend its capabilities.
Every skill follows this strict markdown structure:
---
name: [skill_name]
description: [Short 1-sentence description used by the AI router]
---
# [Human Readable Title]
## Workflow
1. [Step 1]
2. [Step 2]...