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

cursor-sdd

v1.1.3

Published

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

Downloads

160

Readme

cursor-sdd-package

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

インストール

# 推奨(都度実行・インストール不要)
npx cursor-sdd@latest

# 依存に入れたい場合(必要な時に自分で実行する)
npm i -D cursor-sdd

実行時にプロジェクトの .cursor/ フォルダにファイルがコピーされます。

依存として入れた場合の実行

npm i -D cursor-sdd しただけでは .cursor/ は変更しません。セットアップは明示的に実行してください:

npx cursor-sdd

強制上書き

既存の .cursor/ がある場合は同名ファイルがスキップされます。強制上書きする場合:

npx cursor-sdd --force

セットアップ

rules/frontend.mdには現在ルールは記載されていません。 みなさんが普段使用しているルールを記載してください。 ファイルの名称はみなさんで変更していただいてもOKですが、各ルールではfrontend.mdで読み込んでいるので、frontend.mdで検索して、徐々にファイル名を変更 or ファイル追加した方が良いと思います。

使い方

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

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

/init の使い分け

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

含まれるファイル

.cursor/
├── commands/          # Cursor コマンド定義
│   ├── init.md
│   ├── requirements.md
│   ├── requirements-import.md
│   ├── design.md
│   ├── check-design.md
│   ├── tasks.md
│   ├── impl.md
│   ├── status.md
│   └── difference-check.md
├── rules/             # AI ルール・ガイドライン
│   ├── artifacts-generation.md
│   ├── design-principles.md
│   ├── design-review.md
│   ├── design-discovery-full.md
│   ├── design-discovery-light.md
│   ├── ears-format.md
│   ├── frontend.md
│   ├── gap-analysis.md
│   ├── implementation.md
│   ├── tasks-generation.md
│   └── tasks-parallel-analysis.md
└── templates/
    ├── artifacts/     # テーブル定義テンプレート
    │   ├── artifacts_rules.md
    │   ├── create-data-model.md
    │   ├── create-feature-list.md
    │   └── create-table-definition.md
    └── specs/         # 仕様書テンプレート
        ├── init.json
        ├── requirements-init.md
        ├── requirements.md
        ├── design.md
        ├── tasks.md
        └── research.md

ワークフロー

/init → /requirements → /design → /tasks → /impl
                ↑                    ↓
            /status ←←←←←←←←←←←←←←←←