Apr 20, 2026
Browse and Install 1,400+ Agent Skills with One Command
How to use sickn33/antigravity-awesome-skills to install a curated library of skills via npm, with role-based bundles and multi-tool support.
Most skill repos are collections you browse and copy manually. The sickn33/antigravity-awesome-skills repo takes a different approach: it ships an npm installer that places 1,400+ skills directly where your tool expects them, supports 10+ AI coding assistants, and offers role-based bundles so you start with a focused subset instead of everything at once.
What Sets This Apart
| Feature | This repo | Typical skill repos |
|---|---|---|
| Install method | npx CLI installer | Manual copy or git clone |
| Skill count | 1,400+ | 5-50 |
| Tool support | Claude Code, Cursor, Gemini, Codex, Kiro, 5+ more | Usually 1-2 |
| Curation | Role-based bundles, execution workflows | Flat list |
| Filtering | --category, --risk, --tags flags | None |
The library aggregates skills from 60+ upstream sources including official repos from Anthropic, OpenAI, Google, Supabase, Vercel Labs, Microsoft, and Hugging Face.
Installation
The fastest way to get started:
# Default install for Claude Code
npx antigravity-awesome-skills --claude
# Install for other tools
npx antigravity-awesome-skills --cursor
npx antigravity-awesome-skills --gemini
npx antigravity-awesome-skills --codex
# Install to a custom path
npx antigravity-awesome-skills --path .claude/skills
The installer does a shallow clone by default for faster first-run. Skills land in the correct directory for your tool. Restart your agent to pick them up.
Filtered Installs
Installing 1,400+ skills at once can overwhelm your agent's context. Use filters to install only what you need:
# Only development and backend skills
npx antigravity-awesome-skills --claude --category development,backend
# Only safe-risk skills (no destructive operations)
npx antigravity-awesome-skills --claude --risk safe,none
# Combine filters
npx antigravity-awesome-skills --claude --category development,frontend --risk safe
Role-Based Bundles
The repo includes curated bundles for common roles. Instead of picking individual skills, start with a bundle:
| Bundle | Includes | Best for |
|---|---|---|
| Essentials | Core workflow skills | Everyone |
| Full-Stack Developer | Frontend + backend + DevOps | Web developers |
| Security Engineer | Cybersecurity + ethical hacking | Security teams |
| QA & Testing | Testing + automation | QA engineers |
| OSS Maintainer | Git workflow + code review + docs | Open source |
Browse all bundles in the repo's docs/users/bundles.md.
Skill Categories at a Glance
| Category | Count | Highlights |
|---|---|---|
| Cybersecurity | 51 | Ethical hacking, Metasploit, OWASP, pentesting |
| Development | 33 | TDD, React patterns, debugging, architecture |
| Integrations & APIs | 25 | Stripe, Firebase, Supabase, Twilio, Discord |
| AI Agents & LLM | 31 | LangGraph, CrewAI, RAG, prompt engineering |
| Marketing & Growth | 23 | SEO, CRO, copywriting, launch strategy |
| Creative & Design | 10 | UI/UX, frontend design, D3 visualization |
| Maker Tools | 11 | Micro-SaaS, browser extensions, Telegram bots |
Real Workflow: Start as a Full-Stack Developer
# Install the full-stack developer bundle
npx antigravity-awesome-skills --claude --category development,frontend,backend,infrastructure
Then in your project:
I need to build a REST API with authentication. Use TDD approach.
The installed skills guide the agent through structured TDD, API design, and authentication patterns without you specifying each step.
Real Workflow: Security Audit
# Install security skills only
npx antigravity-awesome-skills --claude --category cybersecurity
Run an OWASP Top 10 audit on this codebase.
The agent uses the installed ethical hacking and OWASP skills to perform a structured security review.
Tips
- Start with a filtered install. Full 1,400+ installs can slow down your agent's startup and consume context window space.
- Check
CATALOG.mdin the repo for the complete skill registry before installing. - The web catalog at the project's GitHub Pages offers a searchable interface.
- Use
--risk safewhen working on production codebases to avoid installing skills that perform destructive operations.
When Not to Use This
Skip this if you need only 2-3 specific skills. The overhead of browsing 1,400+ skills is unnecessary when you know exactly what you want. Install individual skills from their original repos instead. This library is best when you want a broad toolkit installed quickly.
Looking for specific skills? Browse the SkillMap leaderboard to find the right tool for your workflow.