๐บ Watch the video version of this article
Introduction
AI coding assistants have exploded in 2025-2026. Claude Code, Cursor, Gemini CLI, GitHub Copilot, Codex CLI โ the list keeps growing. But here's the dirty secret: out of the box, these tools are generalists. They know a lot about everything, but they don't know your company's deployment protocol, your preferred testing framework, or your team's architecture patterns.
That's where agentic skills come in. And one project has assembled the largest open-source collection of them: Antigravity Awesome Skills.[1]
With 946+ battle-tested skills that work across 10+ AI coding tools, this is the single biggest upgrade you can make to your AI-assisted development workflow โ and it installs in under 60 seconds.
1. What Are Agentic Skills?
Agentic skills are small markdown files that teach AI agents how to perform specific tasks. Think of them as instruction manuals โ not code that runs automatically, but knowledge the AI reads and applies contextually.
When you use Claude Code and type /brainstorming help me plan a SaaS, the agent reads the brainstorming skill file to understand exactly how to structure creative ideation. When you ask Cursor @react-best-practices review my component, it loads the React skill and applies battle-tested patterns.
The key insight: skills are declarative, not imperative. They contain expert knowledge โ best practices, step-by-step workflows, command examples, error handling patterns โ that the AI agent applies using its own reasoning. This makes them incredibly flexible compared to rigid plugins or extensions.
Why this matters for developers:
- Consistency โ Your AI follows the same patterns every time, not hallucinating different approaches per session
- Team alignment โ Share skills across your team so everyone's AI codes the same way
- Expertise on demand โ Don't know CloudFormation? The skill does. Don't know penetration testing? There's a skill for that.
- Tool-agnostic โ Write once, use across Claude Code, Cursor, Gemini CLI, and more
The standard format across tools is a SKILL.md file (or AGENTS.md, CLAUDE.md, .cursorrules depending on the tool). Antigravity standardizes on SKILL.md and maps it to each tool's expected path.[2]
2. The Antigravity Collection
Antigravity Awesome Skills (currently at Release 6.3.1) is a curated, open-source library of 946 high-performance agentic skills designed to work across all major AI coding assistants.[1] It's maintained by sickn33 and includes official skills from Anthropic, OpenAI, Google, Microsoft, Vercel, and Supabase.
The project's tagline says it all: "Transform your AI assistant into a full-stack digital agency."
Supported Tools (10+)
| Tool | Type | How to Invoke | Skill Path |
|---|---|---|---|
| ๐ฃ Claude Code | CLI | /skill-name help me... | .claude/skills/ |
| ๐ต Gemini CLI | CLI | Use skill-name... | .gemini/skills/ |
| ๐ข Codex CLI | CLI | Use skill-name... | .codex/skills/ |
| ๐ Kiro IDE | IDE | /skill-name or auto | ~/.kiro/skills/ |
| ๐ Cursor | IDE | @skill-name in chat | .cursor/skills/ |
| ๐ฉต GitHub Copilot | Extension | Paste content manually | N/A |
| โช OpenCode | CLI | opencode run @skill-name | .agents/skills/ |
| ๐ธ AdaL CLI | CLI | Auto-loads on demand | .adal/skills/ |
| ๐ด Antigravity IDE | IDE | Agent mode | ~/.gemini/antigravity/skills/ |
This cross-tool compatibility is a massive advantage. You write skills once and they work everywhere. If you switch from Claude Code to Gemini CLI, your skills come with you.
Skill Categories (9 Domains)
The 946 skills are organized into specialized domains covering the entire software development lifecycle:
| Category | Skills | Focus | Examples |
|---|---|---|---|
| ๐๏ธ Architecture | 73 | System design, ADRs, C4, scalable patterns | architecture, c4-context, senior-architect |
| ๐ผ Business | 50+ | Growth, pricing, CRO, SEO, go-to-market | copywriting, pricing-strategy, seo-audit |
| ๐ค Data & AI | 80+ | LLM apps, RAG, agents, analytics | rag-engineer, prompt-engineer, langgraph |
| ๐ป Development | 200+ | Language mastery, frameworks, code quality | typescript-expert, python-patterns, react-patterns |
| ๐ General | 100+ | Planning, docs, product ops, writing | brainstorming, doc-coauthoring, writing-plans |
| โ๏ธ Infrastructure | 100+ | DevOps, cloud, serverless, CI/CD | docker-expert, aws-serverless, vercel-deployment |
| ๐ Security | 80+ | AppSec, pentesting, vuln analysis | api-security, sql-injection-testing, vulnerability-scanner |
| ๐งช Testing | 60+ | TDD, test design, QA workflows | test-driven-development, testing-patterns |
| โ๏ธ Workflow | 50+ | Automation, orchestration, agents | workflow-automation, inngest, trigger-dev |
3. Installation & Setup
Installation is remarkably simple. One command, works for any tool:
Option A: npx (Recommended)
# Default: installs to ~/.gemini/antigravity/skills
npx antigravity-awesome-skills
# Tool-specific installs:
npx antigravity-awesome-skills --claude # โ .claude/skills/
npx antigravity-awesome-skills --cursor # โ .cursor/skills/
npx antigravity-awesome-skills --gemini # โ .gemini/skills/
npx antigravity-awesome-skills --codex # โ .codex/skills/
npx antigravity-awesome-skills --kiro # โ .kiro/skills/
# Custom path:
npx antigravity-awesome-skills --path ./my-skills
That's it. One command. No API keys, no configuration, no build step. The installer handles everything, and if you've already installed, running it again does a git pull to update.[3]
Option B: Git Clone
# For Claude Code:
git clone https://github.com/sickn33/antigravity-awesome-skills.git .claude/skills
# For Cursor:
git clone https://github.com/sickn33/antigravity-awesome-skills.git .cursor/skills
Option C: Kiro IDE GUI Import
Kiro IDE users can import individual skills through the GUI: open the Agent Steering & Skills panel, click + โ Import a skill โ GitHub, and paste the skill URL.[4]
git clone -c core.symlinks=true https://github.com/sickn33/antigravity-awesome-skills.git
4. Notable Skills & Bundles
With 946 skills, finding what you need could be overwhelming. That's where bundles come in โ curated collections organized by role.[5]
Curated Bundles
๐ The Essentials Starter Pack
For everyone โ install these first. Includes concise-planning, lint-and-validate, git-pushing, kaizen (continuous improvement), and systematic-debugging.
Best for: Anyone getting started
๐ Web Wizard Pack
Modern web development: frontend-design, react-best-practices, nextjs-best-practices, tailwind-patterns, form-cro, and seo-audit.
Best for: Frontend and full-stack developers
๐ก๏ธ Security Engineer Pack
Pentesting and auditing: ethical-hacking-methodology, burp-suite-testing, top-web-vulnerabilities, linux-privilege-escalation, cloud-penetration-testing.
Best for: Security professionals and DevSecOps
โก Full-Stack Developer Pack
End-to-end development: senior-fullstack, frontend-developer, backend-dev-guidelines, database-design-expert, and api-design-patterns.
Best for: Full-stack developers shipping products
๐๏ธ Web Designer Pack
Pixel-perfect experiences: ui-ux-pro-max, 3d-web-experience, canvas-design, mobile-design, and scroll-experience.
Best for: UI/UX designers and creative developers
Important: Bundles are NOT separate installations. When you install the repo, you get all 946 skills. Bundles are just curated recommendations to help you know which skills to start using first.[5]
Standout Individual Skills
๐ง brainstorming
Transforms vague ideas into validated designs through disciplined reasoning. Use before any creative or constructive work โ features, architecture, product planning.
๐๏ธ senior-architect
A master software architect that reviews system designs, evaluates trade-offs, writes ADRs, and applies patterns like DDD, CQRS, and event-driven architecture.
๐ systematic-debugging
Structured debugging methodology that walks through root cause analysis, hypothesis testing, and resolution verification โ debug like a 20-year veteran.
๐ค rag-engineer
Build production-grade Retrieval-Augmented Generation systems โ vector stores, embedding strategies, chunking, reranking, and evaluation.
โ๏ธ ethical-hacking-methodology
The comprehensive ethical hacking playbook โ reconnaissance, scanning, exploitation, post-exploitation, and reporting.
5. How to Actually Use Them
Once installed, using skills is dead simple. You just reference them naturally in conversation with your AI agent:[6]
# Claude Code
>> /brainstorming help me plan a SaaS for restaurant inventory management
# Cursor
@react-best-practices review this component for performance issues
# Gemini CLI
Use the systematic-debugging skill to help me find the memory leak in this server
# Codex CLI
Use lint-and-validate on the src/ directory
The AI reads the referenced skill file, loads the expert knowledge, and applies it to your request. No special syntax โ just tell the AI what skill to use and what you need.
Workflows: Skills in Sequence
Beyond individual skills, Antigravity also supports workflows โ ordered sequences of skills for complex goals:[7]
- Ship a SaaS MVP โ brainstorming โ architecture โ senior-fullstack โ testing-patterns โ git-pushing
- Security Audit โ ethical-hacking-methodology โ vulnerability-scanner โ api-security โ security-auditor
- Build an AI Agent System โ rag-engineer โ prompt-engineer โ langgraph โ testing-patterns
Workflows are documented in docs/WORKFLOWS.md and also available as machine-readable JSON for automation.
6. Why This Is a Game-Changer
If you're using Claude Code or Cursor without agentic skills, you're leaving massive productivity on the table. Here's why the Antigravity collection specifically matters:
1. Instant expertise across 9 domains. You don't need to be a security expert to run a thorough security audit. You don't need to know CloudFormation to write production-ready templates. The skills carry the expert knowledge; the AI applies it.
2. Consistency at scale. Without skills, every AI session starts fresh. The AI might structure a React component differently each time. With skills, you get consistent, battle-tested patterns โ every time, every team member.
3. Cross-tool portability. Switch from Claude Code to Gemini CLI? Your skills come with you. This is huge in a market where new AI coding tools launch monthly.
4. Official backing. These aren't random community scripts. The collection includes official skills from Anthropic (Claude's creator), OpenAI, Google DeepMind, Vercel, and Supabase. That's production-grade quality.[1]
5. Zero lock-in. It's MIT-licensed, open-source, and installable in one command. No vendor lock-in, no subscriptions, no API keys needed for the skills themselves.
7. Alternatives & Competitors
| Project | Skills Count | Supported Tools | Key Differentiator |
|---|---|---|---|
| Antigravity Awesome Skills | 946+ | 10+ (Claude, Cursor, Gemini, Codex, Kiro, Copilot, etc.) | Largest collection, bundles, workflows, official skills |
| VoltAgent Awesome Agent Skills[8] | 380+ | Claude, Codex, Gemini, Cursor, Antigravity | Strong community curation, official dev team skills |
| heilcheng Awesome Agent Skills[9] | Varies | Claude, Copilot, VS Code, Codex, Antigravity | Tutorials and educational focus |
Antigravity's main advantages over alternatives: sheer scale (946 vs 380), curated bundles for different roles, workflow support for multi-step processes, and the widest tool compatibility (10+ tools vs 5-6). It also includes a local interactive web app for browsing and searching skills.
8. Community & Contributing
Antigravity Awesome Skills is fully open-source under the MIT license.[10] The project welcomes contributions:
- Submit new skills โ Follow the SKILL.md format and submit a PR
- Improve existing skills โ Better instructions, more examples, bug fixes
- Create bundles โ Curate skill collections for new roles or use cases
- Build workflows โ Design multi-skill execution sequences
- Report issues โ Found a skill that doesn't work? Open an issue
The project also accepts support via Buy Me a Coffee and GitHub stars. Given the scope of the collection (946 skills across 9 domains), community contribution is essential for keeping skills current as tools and frameworks evolve.
9. Getting Started Today
Here's your 5-minute action plan:
- Install:
npx antigravity-awesome-skills --claude(or--cursor,--gemini, etc.) - Verify:
test -d .claude/skills && echo "Installed!" - Pick a bundle: Read
docs/BUNDLES.mdand find your role - Try your first skill:
"Use @brainstorming to plan a SaaS MVP" - Explore: Launch the interactive web app with
START_APP.bat(or run it in your terminal)
That's it. In under 60 seconds, your AI coding assistant goes from a generalist to a domain expert with access to 946 specialized skills. Whether you're building a SaaS MVP, auditing security, designing architecture, or writing better tests โ there's a skill for that.
References
- Antigravity Awesome Skills โ GitHub Repository โ github.com/sickn33/antigravity-awesome-skills
- Universal SKILL.md Format โ Antigravity Compatibility Docs โ Compatibility & Invocation
- Antigravity Installation Guide โ Installation Section
- Kiro IDE Skill Import โ Kiro IDE Import Guide
- Antigravity Skill Bundles โ docs/BUNDLES.md
- Antigravity Usage Guide โ docs/USAGE.md
- Antigravity Workflows โ docs/WORKFLOWS.md
- VoltAgent Awesome Agent Skills โ github.com/VoltAgent/awesome-agent-skills
- heilcheng Awesome Agent Skills โ github.com/heilcheng/awesome-agent-skills
- MIT License โ Antigravity Awesome Skills โ LICENSE
- Antigravity Skill Catalog โ CATALOG.md โ Full list of 946 skills
- Claude Code Documentation โ docs.anthropic.com