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-visio

v1.0.0

Published

Visualize BMAD Method epics & user stories with AI-powered git commit matching

Readme

bmad-visio

Visualize BMAD Method epics and user stories from structured .md files on a localhost dashboard. Optionally uses local AI (Transformers.js) to match git commits to stories.

Quick Start

npx bmad-visio

Run from your project root. Auto-detects BMAD structure:

  • _bmad-output/planning-artifacts/ + _bmad-output/implementation-artifacts/ (new BMAD)
  • docs/sprint-artifacts/epics/ + docs/sprint-artifacts/stories/ (old BMAD)

Features

  • Epic overview — Grid of all epics with story counts and progress
  • Kanban board — Stories in 4 columns: To Do → Active → Review → Done
  • Drag & drop — Move stories between columns, writes status back to .md files
  • Story detail — Acceptance criteria, tasks with checkboxes, progress ring
  • Live editing — Toggle AC and tasks directly, updates files on disk
  • Git commit matching — AI-powered mapping of commits to stories (optional)

AI Commit Matching

Install the optional dependency for commit-to-story matching:

npm install @huggingface/transformers

The dashboard will then:

  1. Parse your git history
  2. Embed stories and commits with all-MiniLM-L6-v2
  3. Re-rank ambiguous matches with zero-shot NLI (mobilebert-uncased-mnli)
  4. Persist mappings in bmad-visio/gitmap.json
  5. Show related commits on each story's detail page

First run downloads models (~180MB total). Everything runs locally, no API keys needed.

Options

npx bmad-visio [path] [options]

Arguments:
  path              Project root (default: .)

Options:
  -p, --port <n>    Port number (default: 3333)
  --no-git          Skip git commit matching
  --debug           Dump parsed data as JSON and exit
  -h, --help        Show help

Status Mapping

| BMAD Status | Board Column | | -------------------------- | ---------------- | | backlog, ready-for-dev | To Do | | in-progress | Active | | review | Ready for Review | | done | Done |

License

MIT