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

bmad-buff-system

v2.0.0

Published

BMAD-BUFF: Revolutionary Multi-LLM Orchestration System for 10x Faster AI-Driven Development

Readme

BMAD-BUFF System 🚀

Revolutionary Multi-LLM Orchestration for 10x Faster AI-Driven Development

npm version License: MIT Node.js Version

🎯 What is BMAD-BUFF?

BMAD-BUFF is an advanced orchestration system built on top of the BMAD-METHOD™ that intelligently distributes development tasks across multiple specialized LLMs (Claude, GPT, Gemini, Perplexity) to achieve unprecedented development speed and quality.

Key Features

  • 🧠 Multi-LLM Orchestration: Automatically routes tasks to the most suitable LLM
  • ⚡ 10x Faster Development: Parallel execution across multiple AI providers
  • 💰 Cost Optimization: Uses cheaper models for simple tasks, premium for complex
  • 🔄 ROMA Integration: Recursive task decomposition and orchestration
  • 🎭 BUFF Routing: Intelligent load balancing across providers
  • 🚀 YOLO Mode: Skip confirmations while maintaining quality
  • 📊 Vector Database: Enhanced context with ChromaDB/Vectra

🏗️ Architecture

BMAD-BUFF System
├── ROMA Orchestrator (Task Decomposition)
├── BUFF Router (LLM Selection)
├── Agent Spawner (Specialized Agents)
└── Vector Database (Context Enhancement)

📦 Installation

npm install -g bmad-buff-system

Or clone and install locally:

git clone https://github.com/papuman/bmad-buff-system.git
cd bmad-buff-system
npm install
npm run setup

🔧 Configuration

  1. Create a .env file in expansion-packs/bmad-buff/:
# Required API Keys
OPENAI_API_KEY=your_openai_key
GEMINI_API_KEY=your_gemini_key
PERPLEXITY_API_KEY=your_perplexity_key

# Optional
ANTHROPIC_API_KEY=your_anthropic_key  # Only if not using Claude Code
  1. The system automatically detects and uses available LLMs based on configured API keys.

🚀 Usage

Basic Usage

const { BMADWorkflow } = require('bmad-buff-system');

const workflow = new BMADWorkflow({
  project: 'Build AI-powered app',
  requirements: ['auth', 'api', 'frontend', 'ml-pipeline']
});

await workflow.execute();

CLI Usage

# Start BMAD workflow
bmad start "Build a social media analytics platform"

# Enable YOLO mode (skip confirmations)
bmad start --yolo "Create REST API with auth"

# Use specific LLM strategy
bmad start --strategy multi-llm "Complex project"

🎯 LLM Specialization

BMAD-BUFF automatically assigns tasks to specialized LLMs:

| Task Type | Preferred LLM | Why | |-----------|--------------|-----| | Code Implementation | Claude Opus | Best for complex coding | | Architecture Design | Gemini Pro | Deep thinking & planning | | Strategic Planning | GPT-5 | Advanced reasoning | | Research & Docs | Perplexity | Real-time web search | | Quick Validation | Gemini Flash | Fast execution | | Frontend | Claude Sonnet | UI/UX development | | Simple Tasks | GPT-3.5 | Cost-effective |

📊 Performance Benefits

Multi-LLM vs Single-LLM

  • 4x better rate limit capacity - Distribute load across providers
  • 60% faster execution - Parallel processing
  • 30% cost reduction - Smart model selection
  • 99.9% uptime - Fallback chains ensure reliability

🔄 Workflow Example

// BMAD-BUFF automatically:
// 1. Decomposes your project into tasks
// 2. Assigns optimal LLM to each task
// 3. Spawns specialized agents
// 4. Executes in parallel
// 5. Manages dependencies

const project = {
  name: "E-commerce Platform",
  tasks: [
    "Design database schema",      // → Gemini Pro
    "Build authentication API",     // → Claude Opus
    "Create React components",      // → Claude Sonnet
    "Research payment gateways",    // → Perplexity
    "Write unit tests",            // → Claude Opus
    "Generate documentation"       // → Perplexity
  ]
};

// All handled automatically!
await bmadBuff.execute(project);

🛠️ Advanced Features

YOLO Mode

Skip confirmations while maintaining quality:

workflow.enableYolo(); // Move fast, break nothing

Vector Database Integration

Enhanced context with persistent memory:

workflow.enableVectorDB({
  type: 'chromadb',
  collections: ['patterns', 'solutions']
});

Custom Agent Templates

Define specialized agents:

workflow.registerAgent({
  name: 'SecurityExpert',
  model: 'gpt-4',
  skills: ['penetration-testing', 'code-audit']
});

📈 Monitoring & Analytics

Track your development metrics:

  • Tasks completed per hour
  • LLM usage distribution
  • Cost optimization savings
  • Performance bottlenecks

🤝 Contributing

We welcome contributions! Please see CONTRIBUTING.md for details.

📄 License

MIT License - see LICENSE for details.

🙏 Acknowledgments

  • Built on top of the BMAD-METHOD™ framework
  • Inspired by ROMA and Codebuff methodologies
  • Built for the Claude Code community
  • Powered by OpenAI, Anthropic, Google, and Perplexity

🚨 Support


Built with ❤️ by Javier Carrillo (papuman)

Revolutionizing AI-driven development, one task at a time.