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

agent-skills-panel

v1.0.3

Published

A zero-dependency visual dashboard for managing agent skills across Claude, Hermes, OpenClaw, and project-level skill sources.

Readme

Agent Skill Manager

A zero-dependency visual dashboard for managing your agent skills.

可视化面板,轻松管理电脑本地的 Agent Skills。

Retro File Manager UI Python 3.6+ No Dependencies License MIT

Features

  • Single file, zero dependencies — Just Python, no pip install needed
  • Retro file manager UI — Clean, nostalgic dashboard in your browser
  • Search & filter — Find skills instantly by name or description
  • Category sidebar — Browse by type: Dev, Product, Business, Team, Career, Tools, Thinking
  • Click to open — Open any skill folder in Finder / Explorer / Files
  • Delete skills — Remove unwanted skills directly from the UI
  • Bilingual — English & Chinese UI, auto-detected from system locale
  • Cross-platform — macOS, Linux, Windows

Quick Start

macOS / Linux

curl -O https://raw.githubusercontent.com/xinzechao/claude-skill-manager/main/app.py
python3 app.py

Windows (PowerShell)

Invoke-WebRequest -Uri "https://raw.githubusercontent.com/xinzechao/claude-skill-manager/main/app.py" -OutFile app.py
python app.py

That's it. Single file, your browser opens automatically.

Tip: On some systems python3 is called python — use whichever works for you.

Other ways to install

git clone https://github.com/xinzechao/claude-skill-manager.git
cd claude-skill-manager
python3 app.py        # macOS / Linux
python app.py         # Windows
# macOS / Linux
git clone https://github.com/xinzechao/claude-skill-manager.git ~/my-tools/skill-manager
python3 ~/my-tools/skill-manager/app.py

# Windows (PowerShell)
git clone https://github.com/xinzechao/claude-skill-manager.git $HOME\my-tools\skill-manager
python $HOME\my-tools\skill-manager\app.py

It's a single file — you can also download app.py from the GitHub page and put it anywhere you like. Then run:

python3 /path/to/app.py       # macOS / Linux
python C:\path\to\app.py      # Windows

Usage

python3 app.py                 # Start with defaults (auto language, auto port)
python3 app.py --port 9000     # Use a specific port
python3 app.py --lang en       # Force English UI
python3 app.py --lang zh       # Force Chinese UI
python3 app.py --no-open       # Don't auto-open browser

Keyboard Shortcuts

| Key | Action | |-----|--------| | / | Focus search box | | Esc | Close dialogs |

How It Works

The dashboard scans these directories for agent skills:

  • ~/.claude/skills/ — Installed skills
  • ~/.claude/commands/ — Custom commands

Each skill is a folder containing a SKILL.md file. The manager reads these to display skill metadata.

Requirements

  • Python 3.6+
  • No external dependencies

License

MIT