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

@orchestrit/bmm

v0.1.1

Published

Orchestr.it BMM CLI (installer bootstrap)

Readme

BMM-API Module

BMAD Platform API Integration for BMM Workflows

This module extends the base BMM (BMAD Method Module) with API integration capabilities, enabling remote document storage via the BMAD Platform API.

Features

  • 🌐 Remote Storage - Documents upload to BMAD Platform API
  • 📝 All Workflows Enhanced - Analysis, Planning, Solutioning, Implementation, Testing
  • 🔄 Graceful Fallback - Works offline with local storage
  • 🎨 Asset Management - Diagrams and wireframes upload as assets

Requirements

  • BMAD with BMM module installed (Get BMAD)
  • BMAD Platform API (optional, for remote storage)

Installation

@orchestrit/bmm CLI

This repo also includes a small npm CLI package at the repo root.

npx @orchestrit/bmm install

For now, install only prints a placeholder message. We'll add the real installation steps next.

Publish to npm

From the repo root:

npm login
npm publish --access public

Option 1: Using degit (Recommended)

# Download the module into your existing BMAD installation
npx degit codeflyer/bmad-bmm-api/.bmad/bmm-api .bmad/bmm-api
npx degit codeflyer/bmad-bmm-api/.github/agents .github/agents --force

Option 2: Git Clone

# Clone and extract module
git clone https://github.com/codeflyer/bmad-bmm-api.git /tmp/bmm-api
cp -r /tmp/bmm-api/.bmad/bmm-api .bmad/
cp -r /tmp/bmm-api/.github/agents .github/agents
rm -rf /tmp/bmm-api

Post-Installation: Apply the Module

Copy the module files to overlay on your BMM:

cp -r .bmad/bmm-api/* .bmad/bmm/

Configuration

After installation, add to .bmad/bmm/config.yaml:

# BMAD Platform API Configuration
api_base_url: 'http://localhost:3000/api/v1'
project_key: 'your-project-key'

Enhanced Workflows

| Phase | Workflows | |-------|-----------| | Analysis | product-brief, research (market/domain/technical) | | Planning | create-ux-design | | Solutioning | architecture, implementation-readiness | | Implementation | dev-story, sprint-planning, retrospective, code-review, create-story | | Quick Flow | create-tech-spec, quick-dev | | Diagrams | create-diagram, create-dataflow, create-flowchart, create-wireframe | | Documentation | document-project (full-scan, deep-dive) | | Testing | test-design, nfr-assess, trace, test-review |

Documentation

See docs/api-integration.md for full API documentation.

Module Contents

bmm-api/
├── _module-installer/
│   └── install-config.yaml    # Module metadata
├── docs/
│   └── api-integration.md     # Full API documentation
├── workflows/                 # API-enhanced workflow files
│   ├── 1-analysis/
│   ├── 2-plan-workflows/
│   ├── 3-solutioning/
│   ├── 4-implementation/
│   ├── bmad-quick-flow/
│   ├── diagrams/
│   ├── document-project/
│   └── testarch/
├── config.yaml
└── README.md

Version

  • Module Version: 1.0.0
  • Base BMM Compatibility: 1.x

Author

codeflyer