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

vibe-cmd

v0.0.21

Published

AI駆動開発支援パッケージ - プロジェクト概要、社内ナレッジ、タスク管理を統合

Readme

vibe-cmd

AI駆動開発向けコマンドラインツール。プロジェクト内のドキュメントとコマンドを効率的に管理し、Claude CodeやCursorと連携してAI開発を支援します。

インストール

npm install -g vibe-cmd

使い方

1. 初期化

vc init

プロジェクトに設定ファイル(vc.config.json)と必要なディレクトリ(.vc/)を作成します。

2. メインコマンド実行

vc

このコマンドを実行すると:

  1. コマンド選択 - 設定されたコマンドから実行したいものを選択
  2. サブコマンド入力 - 設定されている場合、順番に質問に回答
  3. アシスタント選択 - Claude CodeまたはCursorを選択
  4. 自動実行 - 選択したAIツールで@ファイル参照付きでコマンドが実行される

設定ファイル(vc.config.json)

{
  "docsDirectory": ".vc",
  "commands": [
    {
      "コマンド名": {
        "description": "コマンドの説明",
        "docs": [
          ".vc/commands/コマンド名.md",
          ".vc/domain/**/*.md",
          ".vc/spec/**/*.md"
        ],
        "sub-commands": [
          {
            "name": "サブコマンド名",
            "question": "質問文",
            "answers": ["選択肢1", "選択肢2"]
          },
          {
            "name": "別のサブコマンド",
            "question": "入力式の質問文"
          }
        ]
      }
    }
  ]
}

設定項目

  • docsDirectory: ドキュメントディレクトリ名(デフォルト: .vc
  • description: コマンドの説明
  • docs: 参照するドキュメントファイルのパス(glob形式対応)
  • sub-commands: サブコマンドの配列(オプション)
    • name: サブコマンド名
    • question: 質問文
    • answers: 選択肢の配列(指定すると選択式、未指定で入力式)

ドキュメント管理

# 全コマンドの一覧表示
vc docs list

# 特定のコマンドのドキュメント表示
vc docs list --command <コマンド名>

使用例

# 1. プロジェクトを初期化
vc init

# 2. メインコマンドを実行
vc

# 3. 対話式でコマンドとサブコマンドを選択
# 4. Claude CodeまたはCursorが自動起動

AI開発環境との連携により、プロジェクトのドキュメントを自動参照しながら効率的な開発が可能になります。