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

tsumiki

v0.0.6

Published

A CLI tool for install tsumiki commands

Readme

Tsumiki - AI駆動開発支援フレームワーク

TsumikiはAI駆動開発のためのフレームワークです。要件定義から実装まで、AIを活用した効率的な開発プロセスを提供します。

インストール

Tsumikiを使用するには、次のnpxコマンドでインストールしてください:

npx tsumiki install

このコマンドを実行すると、.claude/commands/ にTsumikiのClaude Codeスラッシュコマンドがインストールされます。

概要

Tsumikiは以下の2つのコマンドで構成されています:

  • kairo - 要件定義から実装までの包括的な開発フロー
  • tdd - テスト駆動開発(TDD)の個別実行

Kairoコマンド

Kairoは要件定義から実装までの開発プロセスを自動化・支援します。以下の開発フローを支援します:

  1. 要件定義 - 概要から詳細な要件定義書を生成
  2. 設計 - 技術設計文書を自動生成
  3. タスク分割 - 実装タスクを適切に分割・順序付け
  4. TDD実装 - テスト駆動開発による品質の高い実装

利用可能なコマンド

Kairoコマンド(包括的開発フロー)

  • kairo-requirements - 要件定義
  • kairo-design - 設計文書生成
  • kairo-tasks - タスク分割
  • kairo-implement - 実装実行

TDDコマンド(個別実行)

  • tdd-requirements - TDD要件定義
  • tdd-testcases - テストケース作成
  • tdd-red - テスト実装(Red)
  • tdd-green - 最小実装(Green)
  • tdd-refactor - リファクタリング
  • tdd-verify-complete - TDD完了確認

リバースエンジニアリングコマンド

  • rev-tasks - 既存コードからタスク一覧を逆生成
  • rev-design - 既存コードから設計文書を逆生成
  • rev-specs - 既存コードからテスト仕様書を逆生成
  • rev-requirements - 既存コードから要件定義書を逆生成

クイックスタート

包括的な開発フロー

# 1. 要件定義
/kairo-requirements

# 2. 設計
/kairo-design

# 3. タスク分割
/kairo-tasks

# 4. 実装
/kairo-implement

個別TDDプロセス

/tdd-requirements
/tdd-testcases
/tdd-red
/tdd-green
/tdd-refactor
/tdd-verify-complete

リバースエンジニアリング

# 1. 既存コードからタスク構造を分析
/rev-tasks

# 2. 設計文書の逆生成(タスク分析後推奨)
/rev-design

# 3. テスト仕様書の逆生成(設計文書後推奨)
/rev-specs

# 4. 要件定義書の逆生成(全分析完了後推奨)
/rev-requirements

開発環境のクリーンアップ

# 開発環境をクリーンアップ
/clear

詳細なマニュアル

使用方法の詳細、ディレクトリ構造、ワークフロー例、トラブルシューティングについては MANUAL.md を参照してください。