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

claudecast-cc

v0.1.0

Published

Claude Code plugin for model-agnostic prompt generation and review

Readme

ClaudeCast

A Claude Code plugin that turns Claude into a prompt compiler — Claude maps your codebase, generates targeted model-agnostic prompts, and reviews the output. You paste the prompts into cheaper models (Gemini, GPT, etc.) for bulk code generation. Claude handles the thinking; commodity models handle the typing.

Why

Claude is great at understanding codebases but expensive for writing boilerplate. ClaudeCast exploits this gap: Claude spends tokens on high-leverage analysis (mapping, planning, reviewing) and produces self-contained prompts that any LLM can execute — no tool use, no API keys, no vendor lock-in.

Install

npx claudecast

This copies ClaudeCast commands, agents, and hooks into ~/.claude/ where Claude Code auto-discovers them. Existing plugins (GSD, etc.) are untouched.

Requires: Claude Code installed, Node.js >= 16.7.0

Commands

| Command | What it does | Status | |---------|-------------|--------| | /cc:map | Analyze codebase structure, patterns, and conventions | Phase 2 | | /cc:plan | Generate model-agnostic prompts from the codebase map | Phase 3 | | /cc:queue | Manage prompt queue — list, reorder, copy, skip, track | Phase 4 | | /cc:review | Review generated code against prompt specifications | Phase 5 |

How It Works

/cc:map          Codebase → structured map (.state/current-map.json)
    ↓
/cc:plan         Map → ordered prompt sequence (.state/prompt-queue.json)
    ↓
/cc:queue        Copy prompts → paste into Gemini/GPT/etc.
    ↓
/cc:review       Generated code → verdict (PASSED / GAPS_FOUND / HUMAN_NEEDED)

Each prompt is self-contained: file paths, context snippets, input/output contracts, and inline examples — everything the target model needs without access to your repo.

Configuration

On first use, ClaudeCast creates .claudecast/config.json in your project:

{
  "granularity": "auto",
  "review_depth": "standard",
  "target_models": ["gemini-2.5-pro", "gpt-4o", "claude-sonnet"],
  "max_prompt_tokens": 32000
}

Edit directly or via CLI:

node ~/.claude/claudecast/bin/cc-tools.js config-set granularity '"per-feature"'
node ~/.claude/claudecast/bin/cc-tools.js config-get

Project Structure

claudecast/
├── bin/install.js              # Zero-dependency installer
├── package.json                # npm manifest (npx claudecast)
└── src/
    ├── commands/cc/            # Slash commands (/cc:map, /cc:plan, etc.)
    ├── agents/                 # Subagents (cc-mapper, cc-planner, cc-reviewer)
    ├── hooks/cc-statusline.js  # Status line hook
    └── claudecast/
        ├── bin/cc-tools.js     # CLI utility (config, state, artifact discovery)
        ├── defaults/config.json
        └── VERSION

Compatibility

ClaudeCast uses the cc: namespace for commands and cc- prefix for agents/hooks. It coexists with GSD, feature-dev, and any other Claude Code plugin without conflicts.

License

MIT