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

skilluse

v0.10.0

Published

CLI tool for managing and installing AI Coding Agent Skills

Readme

Skilluse CLI

A decentralized Skills Registry CLI for AI Coding Agents.

SkillUse enables teams to discover, install, create, and publish skills across multiple AI agents (Claude Code, Cursor, Windsurf, etc.). It treats skills as first-class packages distributed through GitHub repositories—supporting both public community skills and private organizational knowledge.

See the main README for design philosophy and the design document for technical details.

Installation

# npm (recommended)
npm install -g skilluse

# or shell script (macOS/Linux)
curl -fsSL https://skilluse.dev/install.sh | bash

Quick Start

# 1. Add a skill repository (supports GitHub URLs)
skilluse repo add owner/skill-repo
skilluse repo add https://github.com/owner/skill-repo

# 2. Install a skill
skilluse install code-review

Commands

Authentication

| Command | Description | |---------|-------------| | skilluse | Show status (user, repos, installed count) | | skilluse login | Authenticate with GitHub | | skilluse logout | Clear stored credentials |

Repository Management

| Command | Description | |---------|-------------| | skilluse repo list | List configured repositories | | skilluse repo add <repo> | Add a skill repository (supports URLs) | | skilluse repo remove <name> | Remove a repository | | skilluse repo use <name> | Set default repository | | skilluse repo edit <name> | Edit repository settings |

Skill Management

| Command | Description | |---------|-------------| | skilluse search <keyword> | Search for skills in default repo | | skilluse repo skills | List all skills in default repo | | skilluse install <skill> | Install from configured repo | | skilluse install <github-url> | Install from GitHub URL | | skilluse install <skill> --global | Install globally | | skilluse uninstall <skill> | Remove installed skill | | skilluse upgrade [skill] | Upgrade skill(s) with interactive selection | | skilluse upgrade --yes | Upgrade all skills without prompting | | skilluse list | List installed skills | | skilluse list --outdated | Show skills with updates |

Example with GitHub URL:

skilluse install https://github.com/owner/repo/tree/main/skills/code-review

Agent Management

| Command | Description | |---------|-------------| | skilluse agent | List/select agent interactively | | skilluse agent <name> | Switch to specified agent |

Supported agents: claude, cursor, windsurf, codex, copilot, cline, roo, aider, continue

Authentication

| Repository Type | Login Required | |-----------------|----------------| | Public repo | No | | Private repo | Yes |

Skilluse uses GitHub App OAuth for authentication.

First-Time Login

  1. Run skilluse login
  2. Enter the code shown in your browser
  3. Install the GitHub App when prompted
  4. Select repository access (all or specific repos)

Managing Repository Access

Modify access at: https://github.com/settings/installations

Logging Out

skilluse logout

Install Locations

| Scope | Path | |-------|------| | Local | ./.claude/skills/<name>/ | | Global | ~/.claude/skills/<name>/ |

Security

  • User tokens stored in JSON file with restricted permissions (0600)
  • Location follows OS conventions via env-paths

Environment Variables

| Variable | Description | |----------|-------------| | SKILLUSE_GITHUB_CLIENT_ID | Override GitHub App client ID (dev only) |