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

dbmad

v1.0.0

Published

Don't Be MAD - BMAD Method Claude Code commands installer

Downloads

9

Readme

dbmad - Don't Be MAD 🚀

BMAD Method Claude Code commands installer

npm version License: MIT

Install BMAD Method commands in any project to supercharge your development workflow with Claude Code. The BMAD Method (Breakthrough Method of Agile AI-driven Development) provides specialized AI agents that work as your high-powered development team.

What is BMAD?

BMAD Method transforms AI-assisted coding into a structured project development methodology. It provides:

  • 🧠 7 Specialized AI Agents - From Analyst to Developer
  • 📋 Structured Workflow - Ideation to implementation
  • Quality Assurance - Built-in checklists and validation
  • 🔄 Flexible Architecture - Works in any project

Quick Start

# Install BMAD commands in your project
npx dbmad init

# Or install globally
npm install -g dbmad
dbmad init

This creates:

  • .claude/commands/ - Claude Code custom commands
  • .bmad/ - Project state and configuration

Available Commands

After installation, use these commands in Claude Code:

  • /project:bmad - Main orchestrator
  • /project:do - Execute specific tasks
  • /project:next - Get workflow recommendations

CLI Usage

# Initialize BMAD in current project
dbmad init

# Install with agent files
dbmad init --agents

# Update to latest version
dbmad update

# Add/remove specific commands
dbmad add status
dbmad remove export

# List installed commands
dbmad list

# Validate installation
dbmad validate

# Configure settings
dbmad config

Options

dbmad init [options]

  • -f, --force - Overwrite existing files
  • -a, --agents - Include BMAD agent files
  • -c, --commands <commands...> - Specific commands to install

dbmad update [options]

  • -b, --backup - Backup before updating

Configuration

Configuration is stored in .bmad/config.json:

{
  "version": "1.0.0",
  "commands": {
    "prefix": "project:",
    "enabled": ["bmad", "do", "next"]
  },
  "agents": {
    "included": true,
    "location": ".bmad/agents"
  },
  "workflow": {
    "default": "standard",
    "phases": ["ideation", "planning", "design", "development", "delivery"]
  }
}

BMAD Workflow

graph LR
    A[Idea] --> B[Analyst]
    B --> C[PM]
    C --> D[Architect]
    D --> E[PO]
    E --> F[SM]
    F --> G[Dev]
    G --> H[Delivery]

Agents & Their Roles

  1. Analyst - Research, ideation, project briefs
  2. PM - Product requirements, epics, planning
  3. Architect - System design, technical architecture
  4. Design Architect - UI/UX, frontend architecture
  5. PO - Validation, story creation, prioritization
  6. SM - Sprint planning, story refinement
  7. Dev - Implementation, testing, delivery

Project Structure

After initialization:

your-project/
├── .claude/
│   └── commands/
│       ├── project:bmad.md
│       ├── project:do.md
│       └── project:next.md
├── .bmad/
│   ├── config.json
│   ├── state/
│   │   └── current.json
│   └── agents/          # Optional
└── .gitignore          # Updated

Programmatic Usage

const dbmad = require('dbmad');

// Initialize BMAD
await dbmad.init({
  force: false,
  agents: true,
  commands: ['bmad', 'do', 'next']
});

// Update configuration
await dbmad.updateConfig('.bmad', {
  workflow: {
    customPhases: ['research', 'design', 'build', 'deploy']
  }
});

// Validate installation
const result = await dbmad.validate();
console.log('Valid:', result.valid);

Requirements

  • Node.js >= 14.0.0
  • Claude Code extension
  • Git repository (recommended)

Troubleshooting

Commands not showing in Claude Code

  1. Ensure .claude/commands/ directory exists
  2. Restart Claude Code
  3. Run dbmad validate to check installation

Permission errors

  • Run with appropriate permissions
  • Check directory write access

Missing agent files

  • Use dbmad init --agents to include agent files
  • Or copy manually from BMAD-METHOD repository

Contributing

Contributions welcome! Please read our Contributing Guide.

License

MIT © BMAD Method Contributors

Links


Don't Be MAD, Be GLAD you're using BMAD! 😄