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

@careerchain/stdd

v1.0.0

Published

STDD (Spec and Test Driven Development) を既存・新規プロジェクトに導入する CLI

Readme

@careerchain/stdd

STDD (Spec and Test Driven Development) を既存・新規どちらのプロジェクトにも 1 コマンドで導入する CLI です。

.claude/(skill / agent / hook)・.stdd.config.ymldocs/ を現在のディレクトリに配置します。

使い方

cd my-project        # 既存プロジェクト、または新規の空ディレクトリ
npx @careerchain/stdd init   # STDD 一式を現在のディレクトリに導入
claude               # Claude Code を起動

起動後、Claude に「STDD を導入して」と伝えると、setup-stdd スキルが新規 / 既存を自動判定し、 適切な駆動スキル(新規=starting-new-with-stdd / 既存=introducing-stdd)へ委譲します。

コマンド

npx @careerchain/stdd init [options]

グローバルにインストール(npm i -g @careerchain/stdd)した場合は stdd init として実行できます。

| option | 説明 | | --- | --- | | --name <name> | .stdd.config.ymlproject.name(既定: ディレクトリ名) | | --force | tailoring 済み(編集された)STDD ファイルも最新へ上書きする | | --yes, -y | 対話プロンプトをスキップし既定値で進める | | --help, -h | ヘルプを表示 | | --version, -v | バージョンを表示 |

挙動

.claude/ディレクトリ単位ではなくファイル単位で非破壊マージします。既存の Claude 設定や ユーザー自作の skill / agent を汚染しません。

  • .claude/(skill / agent / hook / rules): STDD が配布するファイルだけを作成・更新します。
    • ユーザー自作ファイル(STDD パスと衝突しない)はそのまま保持。
    • STDD パスにユーザーが置いた同名ファイルは上書きせず skip(手動確認を促す)。
    • ユーザーが編集(tailoring)した STDD ファイルは保持(最新化したい場合のみ --force)。
    • 配布から外れた旧 STDD ファイル(未編集)は掃除します。
  • .claude/settings.json: deep-mergepermissions.allow / enabledMcpjsonServers / hooks は union、スカラー競合はユーザー値を優先し、STDD の不足設定のみ追記します。
  • .stdd.config.yml / .mcp.json: 無ければ生成、既存は保持。
  • docs/: 無ければ作成。

STDD 由来の明示

導入物は以下の 2 系統で「STDD 由来」と判別できます。

  • .claude/.stdd/manifest.json: STDD が導入した全ファイルの相対パス・sha256source: "stdd" を記録(更新時の差分・編集検出・将来のアンインストールに利用)。
  • frontmatter マーカー: 配布される各 skill / agent の先頭に source: stdd を付与。

ライセンス

Apache License 2.0