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

skhub

v0.13.1

Published

CLI for installing AI agent skills from Agent Skill Hub

Readme

skhub

The official CLI for Agent Skill Hub. Install and manage reusable AI agent skills and skillsets in your project or globally.

Requirements

  • Node.js 20 or newer

Installation

npm install --global skhub

Or run it without installing:

npx skhub <command>

Quick start

# Install a skill
skhub add <username/skill>

# Install a skillset
skhub add --skillset @username/skillset

# List installed skills
skhub list

# Search public skills
skhub search <query>

# Check one project scope, then the global scope
skhub doctor
skhub doctor --global

Skills are recorded in skills.json at the detected project root and installed into .agents/skills. Use --target claude or --target both to install for Claude Code as well. With --target both, --link-mode symlink means Link intent: skhub prefers a relative symbolic link and may use a Windows directory junction. Use --link-mode copy when .claude needs an independent real directory. Add --global to use the global manifest at ~/.skhub/skills.json.

skhub never falls back to copy silently. Interactive add and link can ask once before mutation. For unattended operations, use the explicit copy mode for add or link, or pass --allow-copy to sync, update, and doctor --fix to authorize fallback while still preferring Link.

Do not downgrade to a CLI version that predates --link-mode while copy-mode installs are present. Older versions can replace the .claude copy with a symlink during sync or update, discarding changes made only in that copy.

Commands

| Command | Description | | ------------------- | ------------------------------------------------------------- | | add | Install a skill, skillset, or GitHub repository | | list | List installed skills | | remove | Remove an installed skill | | sync | Reinstall the versions recorded in the manifest | | link | Normalize unmanaged .agents and .claude skills | | update | Update installed skills and sync skillsets | | dash | Open the localhost dashboard for global skills | | doctor | Check one scope's manifests, Links, copies, and files offline | | search / find | Search public skills | | create --skillset | Create a skillset from installed skills | | login | Sign in through the browser | | whoami | Show the current account | | logout | Sign out |

Run skhub <command> --help for command options. Full documentation is available at doc.agentskillhub.dev.

Local dashboard

skhub dash
skhub dash --no-open
skhub dash --port 7542

dash starts a foreground server on 127.0.0.1 and presents the global manifest, installed files, unmanaged directories, and doctor findings in a local browser UI. The API uses a new in-memory token on every run. Stop the server with Ctrl+C.

Configuration

  • SKHUB_API_URL overrides the API base URL.
  • The default API is https://agentskillhub.dev.

Development

pnpm install
pnpm dev:cli -- --help
pnpm test:cli
pnpm build:cli

License

Copyright © Agent Skill Hub. All rights reserved.

This package is proprietary and is not open source. No permission is granted to copy, modify, distribute, or use this software except as authorized by Agent Skill Hub.