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

skilltree-cli

v0.2.1

Published

Visual skill tree viewer for Claude Code and other AI tool skills installed on your machine.

Downloads

237

Readme

Skill Tree

A visual skill tree viewer for AI coding tools. Scans skills installed on your machine and displays them in a game-inspired dark interface — browse by category, inspect details, and spot overlapping skills at a glance.

Usage

npx skilltree-cli

That's it. The scanner runs, your browser opens, and the skill tree renders automatically.

What it scans

Skill Tree looks for installed skills in these locations:

Global (user-level)

| Location | Source | |---|---| | ~/.claude/skills/ | Claude Code global skills | | ~/.claude/plugins/marketplaces/ | Claude marketplace plugins | | ~/.claude/plugins/cache/.../skills/ | Installed Claude plugins | | ~/.cursor/skills/ | Cursor editor skills | | ~/.config/opencode/skills/ | OpenCode skills | | ~/.codex/skills/ | Codex skills | | ~/.agents/skills/ | Generic agent skills |

Project-level (current directory)

| Location | Source | |---|---| | .claude/skills/ | Claude Code project skills | | .cursor/skills/ | Cursor project skills | | .opencode/skills/ | OpenCode project skills | | .github/skills/ | GitHub project skills | | .agents/skills/ | Generic agent project skills |

No API keys or accounts required. Everything runs locally on your machine.

What you get

  • All discovered skills in one place, organised by category
  • A detail panel per skill showing full description, triggers, file path, and source
  • Overlap detection — skills that serve similar purposes are flagged and cross-linked
  • Summary stats at the top (skills, categories, overlapping)
  • Sound effects and a splash screen because why not

Requirements

  • Node.js 18 or later

Local development

# Install dependencies
npm install

# Run the scanner then start the dev server (uses your real skills)
npm run dev:real

# Start the dev server with mock data (no scanner needed)
npm run dev

How it works

generate.js scans the skill directories on your machine and writes a public/skills.json file. The React front end reads that file and renders the tree. When you run npx skilltree-cli, a CLI wrapper handles both steps and opens the result in your browser automatically.