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

@melnicorn/bmad-dash

v1.0.2

Published

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

Downloads

384

Readme

bmad-dash

An unofficial, experimental dashboard for the BMAD Method.

Visualize BMAD epics, user stories, and the full set of planning documents (PRD, architecture, briefs, UX designs, specs, retrospectives, and more) from a project's .md files on a localhost dashboard. Optionally uses local AI (Transformers.js) to match git commits to stories.

Screenshots

bmad-dash is a fork of bmad-visio by William Mesiti, extended with full document visibility, cross-linking, sprint-status integration, and filtering.

Quick Start

npx @melnicorn/bmad-dash

Run from your project root. It reads your BMAD install config to locate artifacts, so it works with customized paths:

  • BMAD v6 — reads _bmad/bmm/config.yaml for planning_artifacts, implementation_artifacts, and project_knowledge; treats sprint-status.yaml as the authoritative status source.
  • BMAD v4 / v5 — reads .bmad-core/core-config.{yaml,yml} (docs/stories/, docs/prd/).
  • Fallback — globs the default _bmad-output/ layout when no config file is present.

Features

  • Next steps — Tells you what to do next using BMAD's own recommendation ladder (in-progress → review → ready-for-dev → backlog → retrospective), with a copyable workflow command and risk warnings (stale sprint status, orphaned stories, status drift)
  • Epic overview — Grid of all epics with story counts, status, and progress
  • Epic board — Project-level Backlog / In Progress / Done board driven by sprint-status.yaml, with story rollups and blocking-dependency badges
  • Kanban board — Stories in 4 columns: To Do → Active → Review → Done
  • Drag & drop — Move stories or epics between columns; writes status back to the .md file and sprint-status.yaml
  • Story detail — Acceptance criteria, tasks with checkboxes, progress ring, related commits with a "why did this match?" signal breakdown
  • Documents browser — Browse and read every BMAD document, grouped by type and initiative, with a table of contents and rendered Markdown — no more opening raw files
  • Cross-linking — Follow a document's inputDocuments graph (upstream inputs and downstream "used by" backlinks), jump from an epic to its dependencies and requirements, and click through internal .md links in-app
  • Filtering — Hide completed epics or stories and text-filter across the sidebar, overview, and boards (persisted across sessions)
  • Traceability — Epic dependency edges (Depends on: Epic N) and the FR Coverage Map parsed from epics.md
  • Git commit matching — AI-powered mapping of commits to stories (optional)
  • Live editing — Toggle AC and tasks directly; the dashboard watches the filesystem and updates on change

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 bge-small-en-v1.5
  3. Re-rank ambiguous matches with zero-shot NLI (nli-deberta-v3-small)
  4. Persist mappings in bmad-dash/gitmap.json (migrates an existing bmad-visio/gitmap.json if present)
  5. Show related commits on each story's detail page

First run downloads models locally. Everything runs on-device, no API keys needed.

Options

npx @melnicorn/bmad-dash [path] [options]

Arguments:
  path              Project root (default: .)

Options:
  -p, --port <n>    Port number (default: 3334)
  --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, complete, cancelled | Done |

Epic and retrospective status come from sprint-status.yaml when present.

Development

pnpm install
pnpm dev -- /path/to/bmad/project      # tsx, no build step
pnpm build                             # server (tsc) + client (vite)
pnpm test                              # vitest

License

MIT — see LICENSE. Originally created by William Mesiti as bmad-visio.

Screenshots

Overview

The epic overview grid shows all epics with story counts and progress bars at a glance.

Overview

Kanban

The kanban board displays stories across four columns: To Do, Active, Ready for Review, and Done. Stories can be dragged between columns.

Kanban

Story Detail View

The story detail view shows acceptance criteria, tasks with checkboxes, a progress ring, and related git commits.

Story Detail View