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 🙏

© 2025 – Pkg Stats / Ryan Hefner

cursor-sdd

v1.0.12

Published

Cursor SDD (Spec-Driven Development) - AI-powered spec templates, rules and commands for Cursor IDE

Readme

cursor-sdd

Cursor IDE 向けの Spec-Driven Development (SDD) テンプレート、ルール、コマンド集。

インストール

npx install cursor-sdd

インストール時に自動的にプロジェクトの .cursor/ フォルダにファイルがコピーされます。対話可能な環境では「新規のPJを立ち上げる / 既存PJにアサインする」を選択できます。

モード指定

  • 対話プロンプト: npx install cursor-sdd 実行時に new / assign を選択
  • 非対話や CI: npx install cursor-sdd --mode assign または環境変数 CURSOR_SDD_MODE=assign
  • 省略時デフォルト: new

手動セットアップ

既存の .cursor/ がある場合は自動コピーがスキップされます。強制上書きする場合:

npx cursor-sdd --force

使い方

Cursor IDE で以下のコマンドが使えるようになります:

| コマンド | 説明 | |---------|------| | /init | プロジェクト仕様の初期化 | | /requirements | 要件定義書の生成 | | /design | 技術設計書の作成 | | /tasks | タスクの生成 | | /impl | 実装の開始 | | /status | 進捗確認 | | /check-design | 設計のレビュー | | /difference-check | 差分チェック |

/init の使い分け

  • PJ全体を初期化: /init <プロジェクト説明>
  • 個別画面/機能を初期化: /init --feature billing-history <画面の説明>
    • --feature / -f で指定したキーが .cursor/<PJ名>/<feature> ディレクトリとして作成されます
    • 以降の /requirements などは <PJ名>/<feature> を引数に渡してください(例: /requirements my-project/billing-history

含まれるファイル

.cursor/
├── (assign 用の内容をコピーする場合は assign/ 配下がコピーされます)
├── commands/          # Cursor コマンド定義
│   ├── init.md
│   ├── requirements.md
│   ├── design.md
│   ├── tasks.md
│   ├── impl.md
│   ├── status.md
│   ├── check-design.md
│   └── difference-check.md
├── rules/             # AI ルール・ガイドライン
│   ├── design-principles.md
│   ├── design-review.md
│   ├── design-discovery-full.md
│   ├── design-discovery-light.md
│   ├── ears-format.md
│   ├── gap-analysis.md
│   ├── tasks-generation.md
│   └── tasks-parallel-analysis.md
└── templates/         # 仕様書テンプレート
    └── specs/
        ├── init.json
        ├── requirements-init.md
        ├── requirements.md
        ├── design.md
        ├── tasks.md
        └── research.md

assign モード時に配布したいファイルはリポジトリ直下の `assign/` に配置してください(例: `assign/commands`, `assign/rules`, `assign/templates`)。

ワークフロー

/init → /requirements → /design → /tasks → /impl
                ↑                    ↓
            /status ←←←←←←←←←←←←←←←←
  1. /init - プロジェクトの基本情報を設定
  2. /requirements - ユーザーストーリーと要件を定義
  3. /design - 技術設計書を作成
  4. /tasks - 実装タスクを生成
  5. /impl - タスクを実装
  6. /status - 進捗を確認

License

MIT

cursor-sdd-package