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

universal-skills

v3.1.0

Published

MCP server and CLI tool for discovering and installing skills from GitHub repositories

Readme

Universal Skills

npm version npm downloads License: MIT

Universal Skills brings Anthropic's Skills feature to any AI coding agent that supports MCP. Skills are markdown files containing specialized knowledge that can be dynamically loaded into your agent's context only when needed.

How to Use Skills

For a real-world example on how I personally use skills see Creating a Skill.

Why I built this

A week ago, I reverse engineered Claude Code's skills. A day ago, I spotted this repo openskills which implements skills for other coding agents. Their approach works but is suboptimal. That's why I decided to build a functional equivalent to Claude Code's skills based on MCP. See why not use openskills for details.

Installation

Add the skills server to Codex using the MCP add command:

codex mcp add skills -- npx universal-skills mcp

Add the skills server to Claude Code using the MCP add command:

claude mcp add --transport stdio skills -- npx universal-skills mcp

Add the skills server to your OpenCode configuration by creating or editing the opencode.json file in your project root:

{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "skills": {
      "type": "local",
      "command": ["npx", "universal-skills", "mcp"],
      "enabled": true
    }
  }
}

For opencode I had to be quite explicit in instructing the agent to load a skill. I will have a look into their default instructions to improve that.

This should also work fine with Cursor and other Agent's that support MCP. Just not tested yet.

Skill Directory Structure

Skills are automatically discovered from four directories in priority order (first match wins):

  1. yourproject/.agent/skills/ - Project-specific skills
  2. yourproject/.claude/skills/ - Project-specific skills
  3. ~/.claude/skills/ - Global skills
  4. ~/.agent/skills/ - Global skills

Each skill is a directory containing a SKILL.md file:

.agent/skills/
├── git/
│   └── SKILL.md
└── postgres/
    └── SKILL.md

Priority Resolution: If the same skill name exists in multiple directories, the one from the higher priority directory wins. This allows you to override global skills with project-specific versions.

Custom Skill Directories

Add additional directories to recursively search for skills using --skill-dir (can be specified multiple times):

codex mcp add skills -- npx universal-skills mcp --skill-dir ~/.claude/plugins

Download and install specific skills

Install a skill from a GitHub repository:

# Interactive mode (prompts for all options)
npx universal-skills install

# With all options
npx universal-skills install --repo https://github.com/user/repo --repo-dir skills/my-skill --local-dir ~/.claude/skills

FAQ

For frequently asked questions, see the FAQ documentation.