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

@webeleon/johnny-bmad

v0.2.0

Published

CLI tool to automate BMAD implementation phase using Claude Code

Readme

johnny-bmad

TL;DR: Automates the BMAD implementation phase, one epic at a time.

Inspired by Ralph - because every BMAD project deserves an assistant who never sleeps.

Johnny BMAD orchestrates multiple Claude Code sessions to implement your stories from sprint planning through code review and commit. Just point it at your BMAD project, pick an epic, and watch it work.

Usage

Install

npm install -g @webeleon/johnny-bmad

Run

cd your-bmad-project
johnny-bmad

That's it. Johnny will:

  1. Check your sprint status
  2. Let you pick an epic
  3. For each story: create it, implement it, review it, commit it
  4. Repeat until the epic is done

CLI Options

| Option | Short | Description | |--------|-------|-------------| | --resume | -r | Auto-resume from saved state without prompting | | --verbose | -v | Enable debug output for troubleshooting | | --max-iterations N | -m N | Max dev-review cycles per story (default: 10) | | --yolo | -y | Auto-complete stories when max iterations reached (no prompt) | | --help | -h | Show help message |

# Examples
johnny-bmad                 # Start fresh or prompt to resume if state exists
johnny-bmad --resume        # Auto-resume from last session
johnny-bmad -v              # Verbose output for debugging
johnny-bmad -m 5            # Limit to 5 dev-review cycles per story
johnny-bmad --yolo          # YOLO mode: auto-mark stories done at max iterations
johnny-bmad -m 3 -y         # 3 iterations max, auto-complete if stuck

Requirements

  • BMAD Project with _bmad/ folder
  • Claude Code CLI (claude command in PATH)
  • Node.js 18+
  • Git (optional, for auto-commits)

How It Works

SM Agent (opus)           → Check sprint status
        ↓
User selects epic
        ↓
┌─────────────────────────────────────────┐
│  For each story:                        │
│                                         │
│  Story Creator (opus)  → Create story   │
│          ↓                              │
│  Dev Agent (sonnet)    → Implement      │
│          ↓                              │
│  Reviewer (opus)       → Code review    │
│          ↓                              │
│  Git commit (if passed)                 │
└─────────────────────────────────────────┘

Stories loop through dev → review until the reviewer marks them done. Default max is 10 iterations per story, then you're prompted to continue, skip, or abort. Use --yolo to auto-complete stuck stories instead of prompting.

State Persistence

Progress saves to .johnny-bmad-state.json. If interrupted:

johnny-bmad --resume  # Pick up where you left off

Development

Setup

git clone https://github.com/webeleon/johnny-bmad.git
cd johnny-bmad
bun install

Commands

bun run dev          # Watch mode
bun run build        # Build to dist/
bun test             # Run tests
npx .                # Test locally

Project Structure

src/
├── index.ts              # CLI entry
├── orchestrator.ts       # Main workflow
├── agents/               # SM, Story, Dev, Reviewer
├── claude/               # CLI spawning & prompts
├── git/                  # Commit operations
└── utils/                # Logging, file parsing

Contributing

  1. Fork it
  2. Create your branch (git checkout -b feature/amazing)
  3. Commit your changes
  4. Push to the branch
  5. Open a PR

Support

Questions? Issues? Join the Webeleon Discord.

License

MIT