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

overskill

v2.2.0

Published

Overskill CLI - manage skills across repositories

Readme

Overskill

Overskill is a AI coding agent skills manager that lets you keep skills in sync across repositories. It gives you a single place to write, version, and sync the instruction files that guide tools like Claude Code, Cursor, Codex, and Windsurf — then apply them to any repository with one command. Learn more at overskill.jacobchaselubitz.com.

Why Overskill?

  • Write once, use everywhere. Create a skill once and add it to as many repositories as you need. When you improve it, update every project in seconds.
  • Agent-agnostic. Skills are plain markdown files. They work with any agent that can read markdown — no plugin API, no vendor lock-in.
  • Transparent and auditable. Skills live in your project as visible files you can read, diff, and review like any other code.
  • Works offline. Once synced, skills are local files with no runtime dependency on external services.

Upgrading

Run skill upgrade in each repository that uses Overskill. This migrates your global registry (if needed) and updates the project to the latest format — moving skills to .claude/skills/, removing .skills.lock, and syncing everything.

cd your-project
skill upgrade

How it works

Overskill maintains a global registry on your machine (in ~/.overskill/registry/). When you create or import a skill, it's saved there. When you run skill add and skill sync in a repository, Overskill writes the skills into .claude/skills/<slug>/SKILL.md and generates a SKILLS_INDEX.md in that same directory.

.claude/skills/ is the single source of truth for all agents. Overskill configures your IDE to point agents at .claude/skills/SKILLS_INDEX.md so they can discover available skills. Run skill init and Overskill will set this up in your agent config files (CLAUDE.md, AGENTS.md, .cursor/rules/).

Documentation

  1. Getting Started — Install Overskill and add it to your first project
  2. Configuration — View and change global settings like your default editor
  3. Managing Skills in a Repository — Initialize a repo, import existing skills, create new ones, add and remove skills
  4. Syncing and Updating — Check installed versions, sync skills, and update to the latest
  5. Editing Skills — Edit a skill, publish a new version, and apply changes to a project
  6. Command Reference — Full list of commands and flags

Quick start

# Install
npm install -g overskill

# Or install with Homebrew
brew tap jchaselubitz/tap
brew install overskill
  
# Initialize in a project
cd your-project
skill init

# Import skills you've already written for Claude, Cursor, or Codex
skill import

# Or create a new skill from scratch
skill new my-skill

# Add skills to the project
skill add my-skill

# Modify a skill
skill open my-skill    # opens in your editor
skill save my-skill    # saves changes to the registry
skill sync             # run in any project that uses this skill

License

MIT