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.
npm install -g @webeleon/johnny-bmadcd your-bmad-project
johnny-bmadThat's it. Johnny will:
- Check your sprint status
- Let you pick an epic
- For each story: create it, implement it, review it, commit it
- Repeat until the epic is done
| 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) |
--batch |
-b |
Create all stories first, review each one, then exit (no implementation) |
--dev-only |
-d |
Skip story creation, implement existing stories only |
--help |
-h |
Show help message |
# Examples
johnny-bmad # Start sequential workflow (default)
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
johnny-bmad --batch # Create and review stories before implementing
johnny-bmad --dev-only # Implement pre-created stories
johnny-bmad --batch --yolo # Create stories without review prompts- BMAD Project with
_bmad/folder - Claude Code CLI (
claudecommand in PATH) - Node.js 18+
- Git (optional, for auto-commits)
This project uses the BMAD methodology. To install the required framework:
# TODO: User to provide installation commandsThe _bmad/ framework files are gitignored - each developer installs their own copy.
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.
Progress saves to .johnny-bmad-state.json. If interrupted:
johnny-bmad --resume # Pick up where you left offgit clone https://github.com/webeleon/johnny-bmad.git
cd johnny-bmad
bun installbun run dev # Watch mode
bun run build # Build to dist/
bun test # Run tests
npx . # Test locallysrc/
├── index.ts # CLI entry
├── orchestrator.ts # Main workflow
├── agents/ # SM, Story, Dev, Reviewer
├── claude/ # CLI spawning & prompts
├── git/ # Commit operations
└── utils/ # Logging, file parsing
See CONTRIBUTING.md for the full contribution protocol — including how to propose, claim, and implement work using the BMAD workflow.
Questions? Issues? Join the Webeleon Discord.
MIT