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

skillcn

v0.0.6

Published

A community-driven library of reusable, modular skills for AI agents and automation workflows

Readme

skillcn

Version Downloads Github Actions Make a PR Typescript Formatted with Biome

A community-driven library of reusable, modular agent Skills for AI agents and automation workflows.

Designed for use with modern AI coding environments including Claude Code, Cursor, Windsurf, GitHub Copilot, Trae, and open-source tools like OpenCode and Cline.

What are Skills?

Skills are collections of instructions, scripts, and resources that an AI Agent can load dynamically to improve performance on specialized tasks. They teach the AI Agent how to complete specific tasks in a repeatable, high-quality way, whether that’s creating distinctive UI components, building robust APIs, or following strict brand guidelines.

Each skill is self-contained within its own folder and includes a SKILL.md file that defines the instructions and metadata used by the AI Agent.

Why skillcn?

  • 📦 Standardized: A consistent format for agent instructions that works across different AI tools.
  • 🧩 Modular: Don't bloat your context. Install only the specific skills your project needs.
  • 🤝 Community-Driven: Benefit from shared prompt engineering best practices without reinventing the wheel.

For more information, check out: agentskills.io

Install

Install a skill with your preferred package manager:

Using PNPM:

pnpx skillcn add [skill]

Using Bun:

bunx --bun skillcn add [skill]

Using NPM:

npx skillcn add [skill]

Usage Examples

Local Skills (Bundled)

Install a single skill:

pnpx skillcn add frontend-design

Install multiple skills at once:

pnpx skillcn add frontend-design astro-builder

List available skills:

pnpx skillcn list

Preview installation (dry run):

pnpx skillcn add frontend-design --dry-run

GitHub Skills (Remote)

Install a skill from a GitHub repository:

pnpx skillcn add https://github.com/user/repo

Preview GitHub installation (dry run):

pnpx skillcn add https://github.com/user/repo --dry-run

How It Works

When you install a skill:

  1. skillcn copies the skill files to your project's .agents/skills directory
  2. Each skill contains its implementation, documentation, and configuration
  3. Your AI agent can now use that skill's capabilities
your-project/
├── .agents/
│   └── skills/
│       └── frontend-design/
│           └── SKILL.md
│       └── astro-builder/
│           └── SKILL.md
├── src/
└── package.json

Available Commands

| Command | Description | | ------------------------------- | -------------------------------- | | skillcn add <skill...> | Install one or more local skills | | skillcn add <github-url> | Install skill from GitHub repo | | skillcn list or skillcn ls | List all available local skills | | skillcn add <skill> --dry-run | Preview what would be installed |

Contributing

We welcome contributions! Whether it's:

  • 🆕 Adding new skills
  • 🐛 Fixing bugs
  • 📖 Improving documentation
  • 💡 Suggesting features

Please see Contributing.md for details on our code of conduct and the process for submitting pull requests.

Creating a New Skill

Have an idea for a skill? Check out our Skill Creation Guide to learn how to:

  1. Structure your skill
  2. Write documentation
  3. Submit it to the collection

Security

If you discover any security related issues, please email author instead of using the issue tracker.

Changelog

Please see the Changelog for more information on what has changed recently.

Acknowledgments

Built with:

License

Please see the LICENSE for more information.