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.

#tutorial#getting-started#skill-management#developer-tools

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

FeatureThis repoTypical skill repos
Install methodnpx CLI installerManual copy or git clone
Skill count1,400+5-50
Tool supportClaude Code, Cursor, Gemini, Codex, Kiro, 5+ moreUsually 1-2
CurationRole-based bundles, execution workflowsFlat list
Filtering--category, --risk, --tags flagsNone

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:

BundleIncludesBest for
EssentialsCore workflow skillsEveryone
Full-Stack DeveloperFrontend + backend + DevOpsWeb developers
Security EngineerCybersecurity + ethical hackingSecurity teams
QA & TestingTesting + automationQA engineers
OSS MaintainerGit workflow + code review + docsOpen source

Browse all bundles in the repo's docs/users/bundles.md.

Skill Categories at a Glance

CategoryCountHighlights
Cybersecurity51Ethical hacking, Metasploit, OWASP, pentesting
Development33TDD, React patterns, debugging, architecture
Integrations & APIs25Stripe, Firebase, Supabase, Twilio, Discord
AI Agents & LLM31LangGraph, CrewAI, RAG, prompt engineering
Marketing & Growth23SEO, CRO, copywriting, launch strategy
Creative & Design10UI/UX, frontend design, D3 visualization
Maker Tools11Micro-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.md in the repo for the complete skill registry before installing.
  • The web catalog at the project's GitHub Pages offers a searchable interface.
  • Use --risk safe when 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.