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

blmhub

v1.0.0

Published

blmhub CLI - AI 能力开发与管理工具 (AI Capability Development & Management Tool)

Readme

blmhub CLI

AI 能力开发与管理工具

安装

# 从 npm 安装(推荐)
npm install -g blmhub

# 或者从源码安装
git clone https://gitee.com/taiyuan-qian-tu-wu-xian/demo-data.git
cd cli && npm install && npm run build && npm link

使用说明

认证

⚠️ 注意: blmhub login 是登录你的 blmhub 平台,不是 npm 账号

# 登录 blmhub 平台
blmhub login

# 查看当前登录状态
blmhub whoami

# 登出
blmhub logout

资源管理

# 初始化项目
blmhub init -t skill

# 创建新资源
blmhub add skill -n my-skill -d "描述"

# 校验配置
blmhub validate

# 搜索资源
blmhub search "puppeteer"

# 查看资源详情
blmhub info @scope/my-skill

# 拉取资源到本地
blmhub pull my-skill -v 1.0.0

发布

# 推送资源到平台(需要先 blmhub login)
blmhub push -v 1.0.0 -m "首次发布"

# 提交审核
blmhub push --submit

Hub 管理

# 添加外部 Hub
blmhub hub add -n company-hub -u https://hub.company.com

# 同步 Hub 资源
blmhub hub sync -n company-hub

命令列表

| 命令 | 说明 | |------|------| | login | 登录 blmhub 平台 | | logout | 登出 | | whoami | 查看登录信息 | | init | 初始化项目 | | add | 创建新资源 | | validate | 校验配置 | | push | 推送资源 | | pull | 拉取资源 | | search | 搜索资源 | | info | 查看详情 | | list | 列出已安装 | | hub | Hub 管理 | | config | 配置管理 |

配置

配置文件位置:~/.blmhub/config.json

{
  "apiUrl": "https://your-blmhub-server.com",
  "token": "your-auth-token",
  "hubs": {
    "default": "https://your-blmhub-server.com"
  }
}

开发

# 安装依赖
npm install

# 构建
npm run build

# 本地测试
node dist/index.js --help

License

MIT