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

skillbook

v0.4.0

Published

📖 スキルの書 — RPG-style AI agent skill set manager. Search, equip, and share SKILL.md files for Claude Code, Cursor, Copilot, and more.

Readme

📖 スキルの書 — The SkillBook

RPGスタイルのAIエージェント・スキルセット管理プラットフォーム。

概要

「スキルの書」は、AIエージェント(Claude Code, Codex, Cursor等)のSkillsを探す・装備する・合成する・共有するためのプラットフォームです。RPGの装備システムのメタファーを使い、業務に合わせたスキルセットの切り替えを直感的に行えます。

クイックスタート

# 初期化
npx skillbook init claude-code

# スキルを追加
npx skillbook add code-review
npx skillbook add design-army

# スキルセットを作成
npx skillbook create dev-set --skills code-review,design-army --desc "開発セット"

# 装備!
npx skillbook equip dev-set

# 別のセットに切り替え
npx skillbook unequip
npx skillbook equip sales-kit

コマンド一覧

| コマンド | 説明 | |---------|------| | init [agent] | プロジェクト初期化(default: claude-code) | | add <name> | 新規スキルをストアに追加 | | import <path\|url> | ローカル/Gitからスキルをインポート | | install <npm-pkg> | npmからスキルをインストール | | create <set> | スキルセットを作成 | | equip <set> | スキルセットを装備(アクティブ化) | | unequip | 装備解除 | | fork <set> | スキルセットをフォーク | | agent [name] | エージェント切替 | | publish <set> | npm publish用パッケージ準備 | | list | スキル・セット一覧 | | status | 現在の状態表示 |

対応エージェント

claude-code, codex, cursor, copilot, gemini, goose, kiro, roo, windsurf

仕組み

~/.skillbook/
  store/          ← 全スキルの実体(SKILL.md + リソース)
  sets/           ← スキルセット定義(JSON)
  config.json     ← 設定(使用エージェント、プロジェクト等)

.claude/skills/   ← シンボリックリンク(equip時に自動生成)
  code-review → ~/.skillbook/store/code-review
  design-army → ~/.skillbook/store/design-army

equip コマンドはシンボリックリンクの張り替えだけで動作。バックエンド不要。

プロジェクト構成

skillbook/
  cli/            ← CLI ツール(Node.js)
  backend/        ← GCP Cloud Run API(Express + Firestore)
  web/            ← Webカタログ(静的HTML)
  deploy.sh       ← GCPデプロイスクリプト
  docs/           ← ドキュメント

GCPデプロイ

# 前提: gcloud CLI 認証済み
chmod +x deploy.sh
./deploy.sh YOUR_PROJECT_ID asia-northeast1

デプロイされるもの:

  • Cloud Run (API): スキル検索・レビュー・インストール追跡
  • Cloud Run (Web): RPGテーマのカタログサイト
  • Firestore: スキル・セット・レビュー・統計データ

三層アーキテクチャ

| Layer | 内容 | 例 | |-------|------|-----| | Layer 1: 素材 | 個別スキル | code-review, design-army | | Layer 2: 合成 | 名前付きスキルセット | @user/sales-kit | | Layer 3: 組織 | 企業テンプレート | @company/onboarding |

スキルセットの作成と公開

# セット作成
npx skillbook create my-set --skills code-review,git-basics --desc "My custom set"

# npm publish用のパッケージを生成
npx skillbook publish my-set --scope your-npm-scope

# 生成されたディレクトリに移動して公開
cd skillbook-my-set && npm publish

License

MIT