npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

skills-gallery

v2.0.0

Published

The all-in-one gallery of 1,672+ AI agent skills — browse, discover, and install skills from any AI agent tool

Downloads

160

Readme


Skills Gallery is the definitive collection of AI agent skills. One command installs access to 1,672+ skills organized across 49 categories — everything from frontend development to security auditing, from creative coding to multi-agent orchestration. Compatible with 60+ AI agent tools.

⚡ Quick Install — Every Package Manager

| Package Manager | Install Command | |----------------|-----------------| | npm | npm install -g skills-gallery | | yarn | yarn global add skills-gallery | | pnpm | pnpm add -g skills-gallery | | bun | bun add -g skills-gallery | | npx (no install) | npx skills-gallery | | curl | curl -fsSL https://raw.githubusercontent.com/uthumany/Skills-Gallery/master/scripts/install.sh \| bash | | pip | pip install skills-gallery | | uv | uv tool install skills-gallery |

# One command, every skill
npx skills-gallery

🎯 Why Skills Gallery?

  • 1,600+ Skills — The largest collection of AI agent skills on the internet
  • 49 Categories — Organized by domain: Dev, Design, AI, Security, DevOps, and more
  • Multi-Platform — Install via npm, yarn, pnpm, bun, pip, uv, or curl
  • Zero Config — Works instantly after install
  • Beautiful CLI — Colorful terminal UI with interactive browsing
  • Programmatic API — Require/import the catalog in your own tools
  • Always Growing — Community contributions welcome

📂 Category Breakdown

| 🤖 AI & ML | 187 | ML & AI Engineering, Self-Evaluation & Reflection, Reasoning & Decision Making | | 🎨 Design & UX | 137 | UI/UX Design, Creative Coding, Branding & Design | | 💻 Development | 203 | Frontend Development, Backend Development, Software Architecture | | ☁️ Cloud & DevOps | 165 | Cloud Platforms, DevOps & CI/CD, Monitoring & Observability | | 🔒 Security | 58 | Security & Permissions | | 📝 Content & Docs | 221 | Content Creation, Communication & Summarization, Knowledge Management | | 🔗 APIs & Automation | 148 | API Integration, Tool Use & Function Calling, Workflow Automation | | 🌐 Web & Search | 82 | Web Browsing & Research, Information Retrieval & Search, Browser Automation | | 🧠 Agent Systems | 178 | Memory & Context, Multi-Agent Coordination, Planning & Goal Setting | | 📊 Data & Analytics | 85 | Data Analysis & Visualization, Database Management | | 📱 Social & Media | 69 | Social Media, Email & Marketing, Voice & Audio | | 💼 Business & Productivity | 119 | Project Management, CRM & Sales, E-Commerce | | 🖥️ Desktop & Gaming | 10 | Game Development |

🔧 Compatible With 60+ AI Agent Tools

Skills Gallery integrates seamlessly with 60+ AI agent tools across every platform — autonomous agents, CLI tools, IDEs, and web-based environments. One skill catalog, everywhere you work.


🤖 Autonomous Agentic AI Agents

| Tool | Tool | Tool | |------|------|------| | Google Antigravity | Manus | Hermes Agent | | OpenManus | Open-Agent | agenticSeek | | Open Human | OWL | OpenHands | | Lemon AI | GWL | Oclai | | AiPy | Pi.dev | Codex |


⌨️ CLI Autonomous Agents

| Tool | Tool | Tool | |------|------|------| | Gemini CLI | OpenCLI | OpenClaw | | OpenCode | QWEN Code | Aider | | Warp | Claude Code | Crush | | Amp | Goose | Droid | | OWL CLI | agenticSeek CLI | Codex CLI |


🖥️ IDE Autonomous Agents

| Tool | Tool | Tool | |------|------|------| | VS Code | Cline | Claude Code | | Aider | OpenHands | OpenCode IDE | | QWEN Code Studio | Codex IDE | Gemini Code Assist | | DeepSeek IDE | Warp IDE | Amp IDE | | Crush IDE | Goose IDE | Droid Studio |


🌐 Web Autonomous Agents

| Tool | Tool | Tool | |------|------|------| | lovable.dev | DeepSeek GUI | Pi.dev | | OpenManus Web | Open-Agent Web | agenticSeek Web | | Lemon AI Web | Oclai Web | Open Human Web | | OWL Web | OpenHands Web | browser-use | | GWL Web | Manus Web | Google Antigravity Web |


🚀 Usage

Interactive Mode

skills-gallery                # Full interactive browser
skg                           # Short alias

Command Line

skills-gallery list             # Browse all categories
skills-gallery search "docker"  # Search skills
skills-gallery category devops  # Browse a category
skills-gallery stats            # View gallery stats
skills-gallery install <name>   # Install a skill via hermes CLI

Python API

from skills_gallery import load_catalog
catalog = load_catalog()
print(catalog['total_skills'])  # 1672
for cat in catalog['categories']:
    print(cat['name'], cat['count'])

Node.js API

const gallery = require('skills-gallery');
console.log(gallery.stats());       // { total_skills, total_categories }
console.log(gallery.listCategories()); // All categories
console.log(gallery.search('react'));  // Search results

📁 Project Structure

Skills-Gallery/
├── README.md                   # You are here
├── LICENSE                     # MIT License
├── CHANGELOG.md                # Release history
├── CONTRIBUTING.md             # How to contribute
├── CODE_OF_CONDUCT.md          # Community standards
├── SECURITY.md                 # Security policy
├── pyproject.toml              # Python package config
├── package.json                # npm package config
├── cli.js                      # Node.js CLI entry point
├── index.js                    # Node.js API
├── skills_gallery/             # Python package
│   ├── __init__.py
│   ├── cli.py                  # Python CLI
│   └── data/                   # Skills catalog data
├── scripts/
│   └── install.sh              # curl-based installer
├── data/
│   ├── skills-catalog.json     # Complete skills catalog
│   └── category-summary.md     # Category overview
├── .github/
│   ├── ISSUE_TEMPLATE/
│   │   ├── bug_report.md
│   │   └── feature_request.md
│   └── PULL_REQUEST_TEMPLATE.md
└── assets/
    └── banner.svg

🏷️ GitHub Topics

hermes-agent ai-skills agent-skills ai-agents cli-tool terminal developer-tools automation skill-management uthuman-inc multi-agent ai-engineering devops security frontend backend ml-engineering creative-coding npm-package python-package

🤝 Contributing

We welcome contributions! See CONTRIBUTING.md for:

  • How to add new skills
  • Code style guide
  • Pull request process
  • Development setup

📄 License

MIT © uthuman Inc

⭐ Star History

If you find this useful, please star the repo to help others discover it!