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

@tomaskral/skillmanager

v1.1.0

Published

A CLI tool for installing and updating [Claude Code](https://docs.anthropic.com/en/docs/claude-code) skills from local paths or GitHub URLs.

Downloads

395

Readme

skillmanager

A CLI tool for installing and updating Claude Code skills from local paths or GitHub URLs.

Why

The ~/.claude/skills/ directory is becoming a standard path for AI coding assistants to discover reusable skills. Claude Code uses it natively, and other tools like Cursor are adopting the same convention. However, there is no built-in way to install skills into this directory from external sources, and more importantly, no way to keep them up to date as upstream skill repositories evolve.

skillmanager fills that gap. It handles installation from local paths or GitHub URLs, tracks provenance via metadata, and provides an update mechanism that detects upstream changes by comparing git commit SHAs.

How it works

Skills are installed into ~/.claude/skills/ where Claude Code can discover and use them.

Prerequisites

Quick start (no install needed)

Run directly with npx:

npx @tomaskral/skillmanager@latest install https://github.com/owner/repo/tree/main/path/to/skill

Installation

If you prefer a persistent install:

npm install -g @tomaskral/skillmanager

After a global install, use skillmanager directly instead of npx @tomaskral/skillmanager@latest.

Usage

The examples below use npx for convenience. If you installed globally, replace npx @tomaskral/skillmanager@latest with skillmanager.

Install a skill

From a local path:

npx @tomaskral/skillmanager@latest install ~/Code/my-plugins/skills/my-skill
npx @tomaskral/skillmanager@latest install ./plugins/jira-utils/skills/use-jira-cli

From a GitHub URL (use the tree URL for the skill directory):

npx @tomaskral/skillmanager@latest install https://github.com/owner/repo/tree/main/path/to/skill

If the skill already exists, use --force to overwrite:

npx @tomaskral/skillmanager@latest install ./path/to/skill --force

Preview what would happen without making changes:

npx @tomaskral/skillmanager@latest install ./path/to/skill --dry-run

Uninstall a skill

npx @tomaskral/skillmanager@latest uninstall my-skill

Preview what would be removed without making changes:

npx @tomaskral/skillmanager@latest uninstall my-skill --dry-run

Update installed skills

Update a single skill:

npx @tomaskral/skillmanager@latest update my-skill

Update all installed skills:

npx @tomaskral/skillmanager@latest update --all

Force re-install even if already up to date:

npx @tomaskral/skillmanager@latest update my-skill --force

Details

  1. Install copies a skill directory into ~/.claude/skills/<skill-name>/. The source directory must contain a SKILL.md file. A .metadata.json file is written alongside the skill to track where it came from and what commit it was installed from.

  2. Update reads .metadata.json from installed skills and compares the stored git commit against the current commit at the source (local git HEAD or GitHub API). If a newer commit is found, the skill is re-copied.

GitHub installs

GitHub sources are specified as https://github.com/owner/repo/tree/branch/path/to/skill. The tool downloads the branch tarball and extracts only the target subdirectory.

Set the GITHUB_TOKEN environment variable to authenticate API requests and avoid rate limits:

export GITHUB_TOKEN=ghp_...

Metadata tracking

Each installed skill gets a .metadata.json file containing:

  • Source typegithub or local
  • Source location — URL or filesystem path
  • Git commit SHA — used for change detection during updates
  • Timestampsinstalled_at and updated_at

Options reference

| Flag | Description | |------|-------------| | --force | Overwrite an existing skill or force re-install even if up to date | | --dry-run | Show what would happen without making changes | | --all | Update all installed skills (update command only) | | --help | Show help message |