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

skills-browser

v0.1.10

Published

Local web UI for managing AI agent skills through the skills CLI.

Downloads

173

Readme

Skills Browser

Local web UI for browsing, installing, updating, and removing AI agent skills through the upstream skills CLI.

Skills Browser gives you a visual dashboard over your installed skills — see what's installed, discover new skills from skills.sh, preview catalog details, install with one click, and keep everything up to date. It wraps the upstream skills CLI so that npx skills remains the source of truth for installed state.

Features

  • Dashboard — view all installed skills grouped by agent, with status indicators
  • Scope filters — switch between all, project, and global installations
  • Catalog search — search the skills.sh catalog and preview skill details before installing
  • One-click install — install catalog or direct-source skills into project or global scope
  • Installed skill details — inspect metadata and rendered SKILL.md instructions
  • Updates — update individual managed skills
  • Remove — remove skills from your agents
  • Resilient refresh — preserve the last successful dashboard state when a refresh fails
  • Dark and light mode — persisted preference, with dark mode as the default
  • Single binary — compile to a standalone executable with bun build --compile

Usage

Skills Browser requires Bun >= 1.3.13.

npx skills-browser start

The app starts at http://localhost:1996 by default.

Options:

npx skills-browser start --host localhost --port 1996 --auto

--auto opens the local URL in your browser after the server starts. HOST and PORT environment variables can set the defaults when flags are not provided.

Development

bun install
bun run dev

The dev server starts at http://localhost:1996.

bun run dev embeds the upstream skills CLI bundle, builds Tailwind CSS, and runs the server through portless run --name sb while the CSS watcher keeps src/web/.generated/globals.css up to date.

Before committing

bun run lint
bun run typecheck
bun run test

Build Single Binary

bun run build

Output:

dist/skills-browser

Run it:

./dist/skills-browser start

Architecture

  • Runtime: Bun HTTP server + Hono API (src/cli.ts)
  • API: Hono routes for dashboard, install/remove/update, search, catalog details, and installed SKILL.md reads (src/server/hono-app.ts)
  • Client: React 19 SPA with TanStack Router (src/web/)
  • Shared: Types and schemas (src/features/skills/)
  • Styling: Tailwind v4 CSS generated from src/web/styles/globals.css
  • Build: Embedded skills bundle, generated CSS, and single binary via bun build --compile

See TECH.md for details.

Contributing

See CONTRIBUTING.md for development setup and guidelines.

License

MIT — see LICENSE for details.