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

cc-starter

v1.1.0

Published

Claude Code Project Kickstart — scaffolds an optimized dev environment with token-saving scripts, COCOMO estimation, and interactive plugin setup

Readme

cc-starter

Claude Code Project Kickstart — One command to set up Claude Code like a pro.

npm version License: MIT


The Problem

You open Claude Code on a new project and start from scratch. No rules, no memory, no structure. Every session you re-explain the same things. You read entire files when you only need the types. You have no idea what your project costs.

The Solution

npx cc-starter

One command. Interactive wizard. Full setup in 30 seconds.


📦 What You Get

| What | Description | |------|-------------| | .claude/rules/ | Battle-tested working rules (task tracking, verification, git discipline) | | .claude/memory/ | Persistent memory system — Claude remembers across sessions | | CLAUDE.md | Auto-generated project overview with detected tech stack | | scripts/stats/vibe-code.js | Token-saving extraction tool (types, tree, imports, functions) | | scripts/stats/vibe-stats.js | Track and measure your token savings | | scripts/stats/cocomo.js | COCOMO-II project cost estimation | | scripts/stats/project-report.js | Visual HTML statistics report | | AI Operating System | Optional developer profile — role, experience, communication style | | Plugin presets | One-click installation of best Claude Code plugins |


🔥 Token Savings — The Killer Feature

Traditional: Read entire 500-line file          → ~2,000 tokens
cc-starter:  Extract only types and signatures  → ~200 tokens

That's 90% savings per file read. Over a session, that's thousands of tokens.

Instead of Claude reading entire files, vibe-code.js extracts only what matters:

node scripts/stats/vibe-code.js types src/api.ts      # Just the interfaces
node scripts/stats/vibe-code.js tree src/              # Directory overview
node scripts/stats/vibe-code.js imports src/app.tsx    # Dependency graph
node scripts/stats/vibe-code.js functions lib/utils.ts # Function signatures

📊 COCOMO Estimation

Know what your project is worth — before the client asks.

COCOMO-II Project Estimation
════════════════════════════════

Lines of Code:
  TypeScript    32,450
  CSS            4,210
  ─────────────────────────
  Total         36,660

Estimation (Semi-Detached):
  Effort:        9.8 Person-Months
  Schedule:      5.9 Months
  Team Size:     1.7 Developers
  Cost:       €47,040 (at €80/h)

🔌 Plugin Presets

| Preset | Plugins | Best For | |--------|---------|----------| | Minimal | superpowers | Solo devs, getting started | | Standard | + feature-dev, pr-review-toolkit | Most projects | | Full | + frontend-design, ui-ux-pro-max, claude-seo | Frontend-heavy projects | | Custom | Pick your own | Power users |

Plugins are installed via claude mcp add — no manual config needed.


🧠 AI Operating System (optional)

Personalize Claude to your working style. The wizard asks for your role, experience level, and communication preference — then auto-derives smart defaults (no beginner explanations for seniors, architecture focus for tech leads, etc.).

Saved as .claude/memory/user_profile.md — not committed to git.


🚀 Installation

# New project
mkdir my-app && cd my-app
npx cc-starter

# Existing project
cd my-existing-project
npx cc-starter

Requirements: Node.js 18+, Claude Code CLI (optional, for plugin installation)


⚔️ Comparison

| Feature | cc-starter | TheDecipherist | serpro69 | cloudnative-co | |---------|:---:|:---:|:---:|:---:| | Token-saving scripts | ✅ | ❌ | ❌ | ❌ | | COCOMO estimation | ✅ | ❌ | ❌ | ❌ | | HTML project report | ✅ | ❌ | ❌ | ❌ | | Interactive wizard | ✅ | ✅ | ❌ | ✅ | | Plugin installation | ✅ | ❌ | ❌ | ❌ | | Memory system | ✅ | ❌ | ❌ | ❌ | | Tech stack detection | ✅ | ❌ | ❌ | ✅ | | Zero dependencies in output | ✅ | ✅ | ❌ | ✅ | | AI Operating System | ✅ | ❌ | ❌ | ❌ |


🔍 How It Works

npx cc-starter
├─ Detect tech stack (TypeScript, Next.js, ...)
├─ Interactive wizard (name, rate, plugins)
├─ Optional: personalize Claude (role, style)
├─ Scaffold .claude/ + scripts/ + CLAUDE.md
├─ Install selected plugins
└─ Ready to code!

The wizard detects your project's language, framework, and package manager — then generates a tailored CLAUDE.md and rule set. All output files are plain text with zero runtime dependencies.


🤝 Contributing

PRs welcome. See LICENSE for details.


Author

Built by Lars Fanter — from real-world experience building production apps with Claude Code.