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

claude-kickstart

v1.0.0

Published

Claude Code環境を対話式ヒアリングでパーソナライズし、ワンライナーでセットアップするインストーラー

Readme

claude-kickstart

Claude Code環境を対話式ヒアリングでパーソナライズし、ワンライナーでセットアップするインストーラー。

中小スタートアップ向け。「これ入れて」の一言で、最適化されたAIエージェント開発環境が完成する。

インストール

ワンライナー(簡易)

curl -sL https://raw.githubusercontent.com/crdl-co/claude-kickstart/main/install.sh | bash

安全な実行方法(推奨)

curl -sL https://raw.githubusercontent.com/crdl-co/claude-kickstart/main/install.sh -o install.sh
curl -sL https://raw.githubusercontent.com/crdl-co/claude-kickstart/main/checksums.txt -o checksums.txt
shasum -a 256 -c checksums.txt && bash install.sh

ローカルから実行

git clone https://github.com/crdl-co/claude-kickstart.git
cd claude-kickstart
bash install.sh

何がインストールされるか

| カテゴリ | 内容 | |---------|------| | ~/CLAUDE.md | プロジェクト共通ルール(スタック・DB・ロール別にカスタマイズ) | | ~/.claude/settings.json | hooks, permissions, deny list(既存設定とマージ) | | ~/.claude/agents/ | AIエージェント定義(4-6体、スタックに応じて選択) | | ~/.claude/rules/ | ワークフロールール(1-3ファイル、チーム運用に応じて選択) | | ~/.claude/hooks/ | 自動化hookスクリプト(10個) | | プラグイン | superpowers, pr-review-toolkit, frontend-design, code-simplifier | | AgentShield | Claude Code設定のセキュリティスキャナー |

ヒアリングの流れ

インストーラーは8つの質問であなたの環境を把握し、最適な設定を生成する。

  1. 名前 — CLAUDE.mdのUser Contextに記載
  2. 会社名 — 同上
  3. 役割 — ソロ開発 / テックリード / メンバー / 非エンジニア
  4. 技術スタック — Next.js, React Native, Vue, Python, Rails, Go, Swift, Flutter(複数選択可)
  5. DB — Supabase, Firebase, PostgreSQL, AWS, MySQL
  6. パッケージマネージャ — pnpm, npm, yarn, bun
  7. Codex利用 — はい / いいえ
  8. チーム運用 — はい / いいえ

オプションフラグ

| フラグ | 説明 | |--------|------| | --dry-run | プレビューモード。ファイルを書き込まずに何が生成されるか確認 | | --rollback | 直前のバックアップからsettings.jsonを復元 | | --reconfigure | ヒアリングをやり直す(前回の設定を無視) | | --version | バージョン表示 | | --help | ヘルプ表示 |

既存環境との共存

  • settings.json — 既存設定とマージ(hooks, permissions, deny listを追記。既存は上書きしない)
  • CLAUDE.md — 既存がある場合はdiff表示。上書き/スキップ/バックアップを選択
  • agents/rules — 同名ファイルは上書き確認プロンプト
  • バックアップ~/.claude/backups/ に自動保存(直近5世代保持)

カスタマイズ

インストール後、以下を自由に編集できる:

  • ~/CLAUDE.md — プロジェクト固有のルールを追加
  • ~/.claude/agents/ — エージェント定義を調整
  • ~/.claude/rules/ — ワークフロールールを変更
  • ~/.claude/hooks/*.sh — hookスクリプトをカスタマイズ

含まれるhooks

| Hook | タイミング | 機能 | |------|-----------|------| | session-start | セッション開始時 | ブランチ・未コミット変更を表示 | | block-no-verify | Bash実行前 | --no-verify をブロック | | block-config-edit | ファイル編集前 | linter/formatter設定変更をブロック | | block-unnecessary-docs | ファイル作成前 | 不要なドキュメントファイル作成をブロック | | auto-format | ファイル編集後 | Prettierで自動フォーマット | | typecheck | TS編集後 | TypeScript型チェック | | console-log-check | ファイル編集後 | console.log残存警告 | | pre-compact | コンテキスト圧縮前 | ブランチ・コミット情報を保存 | | stop-console-check | レスポンス後 | 変更ファイルのconsole.logチェック |

パイプラインパターン(チーム運用向け)

チーム運用を選択すると、Worker/Manager品質ゲートパターンのテンプレートが含まれる。

詳細は ~/.claude/examples/ を参照:

  • pipeline-content.md — コンテンツ制作パイプライン例
  • pipeline-feature.md — 機能開発パイプライン例

前提条件

  • Node.js >= 18
  • Git
  • macOS または Linux

(不足している場合はインストーラーが案内する)

ライセンス

MIT

開発元

クレイドル株式会社