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

@skillsplane/cli

v0.1.2

Published

SkillsPlane CLI for GitHub-first plugin marketplace maintenance

Downloads

199

Readme

✈️ SkillsPlane

npm version License: Apache-2.0

English | 日本語 | 简体中文

🧩 把多个插件仓库整理成 一个由团队维护的 marketplace repo,让 Claude Code、Codex、GitHub Copilot CLI 和 Cursor 可以直接使用。

它不是个人用的技能安装器(gh skill 等工具更适合这种场景),也不是公开注册表,更不是面向终端用户的发布服务。

为什么团队会用它

  • 不用每个项目各自挑选插件。
  • 可以在一个地方统一审查插件来源仓库的变化。
  • 同一份批准后的 marketplace 可以复用到多个项目。
  • 批准、更新和回滚都可以放在 Git 里完成。

它不做什么

  • 个人用技能安装器
  • 公开 marketplace 或注册表
  • 面向终端用户的搜索与发布流程
  • 运行时网关或插件宿主

安装

npm install -g @skillsplane/cli

安装后会同时得到 splnskillsplane 两个命令。下面的示例使用 spln

快速开始

mkdir my-marketplace
cd my-marketplace
spln add anthropics/claude-code
spln list

会生成什么

.
├── spln.json
├── spln/
│   └── anthropics/claude-code/
│       ├── code-review/
│       └── feature-dev/
├── .claude-plugin/marketplace.json
├── .agents/plugins/marketplace.json
├── .github/plugin/marketplace.json
└── .cursor-plugin/marketplace.json

SkillsPlane 会把导入的插件保存在仓库里,并为你选择的受支持应用生成 marketplace files。

把这个仓库提交下来之后,就可以在多个项目中复用。

命令

  • add <source> — 导入 GitHub 仓库或本地目录
  • list — 查看当前 marketplace repo 里有什么
  • manage — 选择要保留的插件 / 内容,以及要生成到哪些受支持应用
  • sync — 在不接受新的插件 version 的情况下重新生成 marketplace files
  • update — 审查插件来源仓库的变化并刷新 marketplace

受支持的应用

  • Claude Code
  • Codex
  • GitHub Copilot CLI
  • Cursor

新的 marketplace 默认会为这四个应用做好准备。

  • 默认 target: claudecodexcopilot-clicursor
  • 仓库内的阻塞校验: 对 Claude Code、Codex、GitHub Copilot CLI、Cursor 执行 artifact / contract 校验
  • 手动 smoke: 提供可选的 consumer marketplace 手动工作流,用于 Claude Code、Codex、GitHub Copilot CLI
  • Cursor 说明: 本仓库通过生成产物校验来保证 Cursor 支持,而不是依赖 consumer CLI smoke
  • CI 说明: SkillsPlane 管理的是 marketplace 产物,不会生成 GitHub Actions 工作流

文档