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-bolt

v1.0.1

Published

Claude Code project management framework — 16 slash commands to build full apps without losing control. In-session execution, plan-vs-actual reconciliation, context window management, versioned iterations.

Readme

BOLT — Claude Code Project Management Framework

From idea to production with Claude Code. BOLT is a lightweight project management framework for Claude Code that keeps everything in-session (no subagents for building), uses 16 slash commands, and enforces mandatory plan-vs-actual reconciliation after every build.

Install

Option 1: npm (recommended)

npx claude-bolt

That's it. This clones the repo and installs 16 commands to ~/.claude/commands/bolt/.

Option 2: git clone

git clone https://github.com/Trade-With-Claude/bolt-framework.git
cd bolt-framework
./install.sh

This copies the 16 command files to ~/.claude/commands/bolt/.

Upgrade

cd bolt-framework
git pull
./install.sh

Then in your project, if the structure changed:

/bolt:upgrade

This updates the command files in ~/.claude/commands/bolt/ — your project files are never touched.

Quick Start

/bolt:init Dimension    # Create project folder + IDEA.md
# Fill in .bolt/v1/IDEA.md with your vision
/bolt:discover          # Deep Q&A about your project
/bolt:research          # Deep technical research
/bolt:roadmap           # Break into phases
/bolt:plan 1            # Plan first phase
/bolt:build 1           # Build it
/bolt:close             # UNIFY — close the loop (mandatory)

Workflow

init → discover → research → roadmap → plan → build → close
                                        ↑                  |
                                        └──────────────────┘
                                           (next phase)

All phases done? → /bolt:next → new version cycle

Commands

| Command | Description | |---------|-------------| | /bolt:init <name> | Create project folder with .bolt/ structure | | /bolt:discover | Deep Q&A for project understanding | | /bolt:research | Parallel agent-driven technical research | | /bolt:roadmap | Break project into phases | | /bolt:plan <N> | Plan phase N with tasks and criteria | | /bolt:build <N> | Execute phase plan with inline verification | | /bolt:close | UNIFY — reconcile plan vs actual | | /bolt:next | Tag version, start next iteration | | /bolt:push | Quick save — git add, commit, push | | /bolt:upgrade | Migrate older .bolt/ to latest schema | | /bolt:status | Show progress, suggest next action | | /bolt:resume | Reload context after returning | | /bolt:pause | Full handoff before leaving | | /bolt:clear | Quick context save when window is heavy | | /bolt:verify | Optional UAT walkthrough | | /bolt:help | Command reference |

Design Principles

  • No subagents — everything runs in-session (~3k tokens saved per avoided subagent)
  • 16 commands — lean but complete
  • Mandatory UNIFY/bolt:close after every /bolt:build
  • 2-3 tasks per plan — fits in ~50% context window
  • One next action — every command suggests exactly one next step
  • Context brackets — adapts behavior as context fills up
  • Versioned iterations — v1, v2, v3... with git tags for easy rollback

Project Structure

After /bolt:init, your project gets:

my-project/
├── .bolt/
│   ├── SCHEMA            # Schema version (for upgrades)
│   ├── PROJECT.md        # Living doc — persists across versions
│   ├── STATE.md          # Tracks current version
│   └── v1/
│       ├── IDEA.md       # Your vision for v1
│       ├── ROADMAP.md    # Phases with requirements
│       ├── STATE.md      # V1 progress
│       └── phases/
│           └── 01-name/
│               ├── 01-01-PLAN.md
│               └── 01-01-SUMMARY.md

Version Management

/bolt:next              # Tag v1, create v2 folder
git checkout v1         # Go back to v1 anytime
/bolt:upgrade           # Migrate old projects to new structure

Session Management

| Situation | Command | |-----------|---------| | Leaving for hours/days | /bolt:pause — full handoff | | Context getting heavy | /bolt:clear — quick save | | Coming back | /bolt:resume — reload context | | Lost or confused | /bolt:status — see where you are | | Save progress | /bolt:push — git commit + push |