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

skillflux

v0.1.1

Published

SkillFlux curated skill marketplace — installer CLI and MCP package manager

Readme

SkillFlux Pack(精选 Skill 市场)

本目录实现 docs/specs/skillflux-pack-design.md v0.3 中的 Bootstrap Kit 与 P0/P1 能力。

SkillFlux 是官方 curated skill marketplace + npm installer + MCP package manager,不是远程执行环境,也不是用户上传平台。

产品原则

Global bootstrap:
  skillflux CLI + skillflux mcp start
  skillflux-manager(全局)
  ~/.skillflux/config.json
  ~/.skillflux/cache/

Project usage:
  skillflux.json
  .skillflux/skills/<skill-id>/
  .skillflux/installed.json

快速开始

cd skillflux-pack
npm install
npm run build

# 全局 bootstrap(MCP + manager skill)
node dist/bin/skillflux.js install --agent cursor

# 诊断
node dist/bin/skillflux.js doctor

在 agent 内(fixture 模式):

  1. auth.status → active
  2. skill.install({ id: "demo-skill", scope: "project" })
  3. 检查 ./skillflux.json./.skillflux/installed.json

CLI 命令

npx -y skillflux install
npx -y skillflux install --agent cursor --scope user
npx -y skillflux doctor
npx -y skillflux uninstall
skillflux mcp start    # MCP server(agent 通过此命令启动)

MCP 工具

| 工具 | 用途 | |---|---| | auth.start / auth.status | 设备登录与授权状态 | | billing.checkout | 托管支付链接 | | pack.search / pack.info | 搜索与查看 catalog | | skill.install | 按项目安装(默认 project scope) | | skill.update | 更新(支持 force 覆盖本地修改) | | skill.list / skill.remove | 列出/移除项目 skills | | doctor | 诊断 bootstrap 与项目状态 |

工具返回结构化 JSON:

{ "ok": true, "message": "...", "data": {} }
{ "ok": false, "code": "AUTH_REQUIRED", "message": "...", "nextAction": { "tool": "auth.start" } }

MCP 注册

安装时写入稳定命令(经 ~/.skillflux/bin/skillflux shim):

{
  "command": "~/.skillflux/bin/skillflux",
  "args": ["mcp", "start"]
}

目录结构

skillflux-pack/
├── bootstrap/skillflux-manager/
├── skills/demo-skill/
├── pack.json
├── src/cli/          # installer
├── src/mcp/          # MCP server + tools
└── src/lib/          # project manifest, lockfile, runtime

阶段

  • P0 ✅ Bootstrap + fixture demo-skill + 项目 scope 安装
  • P1 ✅ 结构化 tool 响应、skillflux mcp start、hash/atomic、冲突检测
  • P2 ✅ Registry API 骨架(functions/api/
  • P3 SSO + 托管支付
  • P4 多 agent 矩阵 + 从 skillflux.json 恢复