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

skill-base-cli

v1.0.11

Published

Skill Base CLI - 命令行工具,用于搜索、安装、更新和发布 AI Agent Skills

Readme

Skill Base CLI

语言: English | 中文

命令行工具,用于搜索、安装、更新和发布 AI Agent Skills。

安装

npm install -g skill-base-cli

或使用 npx 直接运行:

npx skill-base-cli <command>

环境配置

CLI 默认连接 http://localhost:8000,可通过环境变量修改:

export SKB_BASE_URL=https://your-skill-base-server.com

命令

认证

# 登录
skb login

# 登出
skb logout

Skill 管理

# 搜索 Skill
skb search <keyword>

# 安装 Skill
skb install <skill_id>
skb install <skill_id>@<version>
skb install <skill_id> -d ./target-dir

# 查看和管理本地已安装 Skill
skb list
skb ls

# 交互式更新 Skill
skb update <skill_id>
skb update <skill_id> -d ./target-dir

# 发布 Skill
skb publish <directory>
skb publish <directory> --name "Skill Name" --description "Description"
skb publish <directory> --changelog "版本说明"

快速开始

# 1. 登录
skb login

# 2. 搜索
skb search vue

# 3. 安装
skb install vue-best-practices

# 4. 查看和管理本地已安装 Skill
skb list

# 5. 交互式选择版本和目录进行更新
skb update vue-best-practices

# 6. 发布自己的 Skill
skb publish ./my-skill --changelog "初始版本"

更新行为

  • skb install 会记录 Skill 实际安装到的目录,供后续 skb update 使用
  • skb list / skb ls 会列出本地所有已记录 Skill,并允许继续执行更新、删除本地文件、清除配置记录
  • skb update <skill_id> 会先列出版本、changelog、提交人,再列出该 Skill 已记录的安装目录供多选
  • 如果要绕过本地记录,也可以继续使用 skb update <skill_id> -d <directory>

发布要求

  • 目录必须包含 SKILL.md 文件
  • 文件夹名称将作为 skill_id
  • namedescription 可从 SKILL.md 自动提取

系统要求

  • Node.js >= 18.0.0

License

MIT