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

@fitskill/f2chub-cli

v0.3.10

Published

F2CHub SkillHub CLI - 一键安装和管理 AI Skill

Readme

f2chub CLI

F2CHub SkillHub CLI - 一键安装和管理 AI Skill

功能特性

  • 多平台自动探测(OpenClaw、WorkBuddy)
  • 用户自定义安装路径
  • f2c 短命令别名
  • 自动依赖安装(Node.js / Python)

安装

npm install -g @fitskill/f2chub-cli

命令

安装 Skill

# 自动探测平台安装
f2chub install <skill-name>

# 指定平台安装
f2chub install -p openclaw <skill-name>
f2chub install -p workbuddy <skill-name>

# 强制重新安装
f2chub install -f <skill-name>

使用 f2c 别名

f2c skill install <skill-name>
f2c skill install -p openclaw <skill-name>
f2c skill list
f2c skill info <skill-name>

管理 Skill

f2chub list                  # 列出已安装
f2chub info <skill-name>     # 查看详情
f2chub update <skill-name>   # 更新
f2chub uninstall <skill-name> # 卸载
f2chub search [query]        # 搜索

配置管理

# 查看当前配置
f2chub config list

# 设置平台安装路径
f2chub config set openclaw.path ~/my-custom/skills

# 重置为默认路径
f2chub config reset openclaw

平台支持

| 平台 | Mac 路径 | Windows 路径 | |------|---------|-------------| | OpenClaw | ~/.openclaw/skills | ~/.openclaw/skills | | WorkBuddy | ~/.workbuddy/skills | ~/.workbuddy/skills | | 兜底 | ~/.f2chub/skills | ~/.f2chub/skills |

路径解析优先级

  1. 用户配置 (~/.f2chub/config.yaml)
  2. 内置默认配置(随 npm 包分发)

配置示例

# 自定义 OpenClaw 安装路径
f2chub config set openclaw.path ~/workspace/skills

# 查看配置
f2chub config list

# 恢复默认
f2chub config reset openclaw

开发

# 安装依赖
npm install

# 本地测试
node bin/f2chub.js --help
node bin/f2chub.js install --help

# npm link 本地调试
npm link
f2chub --help
f2c skill --help

License

MIT