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

claude-skills-list

v1.0.1

Published

A Claude Code skill to dynamically list all available skills from multiple sources

Readme

skills-list

📊 动态查看所有可用的 Claude Code Skills - 一个 skill 管理/发现工具

npm version License: MIT GitHub

功能

  • 🔍 动态扫描 - 自动发现所有已安装的 skills
  • 📂 多来源支持 - 项目本地、用户级、插件级
  • 🏷️ 智能分类 - 按用途自动归类展示
  • 📊 统计汇总 - 显示总数和分类统计

为什么需要这个?

目前 Claude Code 没有内置命令来查看所有可用的 skills。

  • GitHub Issue #12140 - 官方功能请求仍未实现
  • 现有工具(如 plugin-manager)只能列出从 GitHub 安装的技能
  • skills-list 填补了这个空白,可以列出所有来源的技能

安装

方式 1: npm 安装(推荐)

# 项目级安装
npm install claude-skills-list

# 全局安装(所有项目可用)
npm install -g claude-skills-list

方式 2: curl 一键安装

项目级安装(仅当前项目可用):

curl -sSL https://raw.githubusercontent.com/Ming-H/skills-list/main/install.sh | bash

用户级安装(所有项目可用):

curl -sSL https://raw.githubusercontent.com/Ming-H/skills-list/main/install.sh | bash -s -- --global

方式 3: 手动复制

项目级

mkdir -p .claude/skills
curl -o .claude/skills/skills-list.md https://raw.githubusercontent.com/Ming-H/skills-list/main/SKILL.md

用户级

mkdir -p ~/.claude/skills
curl -o ~/.claude/skills/skills-list.md https://raw.githubusercontent.com/Ming-H/skills-list/main/SKILL.md

方式 4: 使用 skillset 工具

skillset install Ming-H/skills-list

使用方法

安装后,在 Claude Code 中直接询问:

有哪些skills?
查看skills列表
什么技能可用?

示例输出

📊 Skills 完整列表

━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

## 📂 项目本地 Skills (14个)
> 来源: .claude/skills/

| # | Skill | 描述 |
|---|-------|------|
| 1 | content-research-writer | 深度研究与写作,带引用验证 |
| 2 | copywriting | 营销文案写作 |
| 3 | copy-editing | 文章编辑润色 |
| 4 | scriptwriting | 中文剧本创作 |
| 5 | platform-adaptation | 多平台适配(小红书/公众号/知乎) |

## 👤 用户级 Skills (1个)
> 来源: ~/.claude/skills/

| # | Skill | 描述 |
|---|-------|------|
| 1 | commit | 规范化 Git 提交 |

## 🔌 插件级 Skills (16+个)
> 来源: Claude Code 插件系统

### vercel
| # | Skill | 描述 |
|---|-------|------|
| 1 | vercel:deploy | 部署到 Vercel |
| 2 | vercel:logs | 查看 Vercel 日志 |

### code-review
| # | Skill | 描述 |
|---|-------|------|
| 1 | code-review:code-review | 代码审查 PR |

━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

**总计**: 31+ 个技能

扫描范围

| 来源 | 路径 | 说明 | |------|------|------| | 项目本地 | .claude/skills/ | 当前项目专属技能 | | 用户级 | ~/.claude/skills/ | 跨项目共享技能 | | 插件级 | Claude Code 插件系统 | 通过插件安装的技能 |

相关资源

License

MIT © Ming-H