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-method-ui

v0.2.0

Published

Install bmad-ui into any bmad project with a single command

Readme

BMAD UI

Visual companion for BMAD agentic development workflows.

Overview

BMAD UI is a React-based web application that provides real-time visibility into AI agent orchestration, sprint progress tracking, and workflow management. It serves as the visual interface for the BMAD (Build Manage Analyze Deploy) multi-agent system.

Features

  • Workflow Monitoring: Real-time tracking of agentic workflows and task execution
  • Sprint Management: Visual sprint progress tracking with story and epic analytics
  • Session Analytics: Comprehensive analytics for agent sessions and interactions
  • Responsive Design: Modern dark-themed UI optimized for developer workflows

Tech Stack

  • Framework: React 19.2.0 + TypeScript 5.9.2
  • Build Tool: Vite 7.1.7
  • Routing: TanStack Router 1.168.15
  • Styling: Tailwind CSS 4.1.18
  • State Management: TanStack Query 5
  • Testing: Vitest 4.0.1
  • Linting: Biome

Quick Start

No secrets or environment variables required — the full app runs immediately after install.

Prerequisites

  • Node.js 18+ (current LTS recommended)
  • pnpm 10.16+ — install with npm install -g pnpm or corepack enable && corepack prepare pnpm@latest --activate

Setup

# Move into the app workspace
cd _bmad-ui

# Install dependencies
pnpm install

# Start development server
pnpm dev

Open http://localhost:5173 — you should see the BMAD UI dashboard.

Validate

pnpm run check   # lint + types + tests + build (run before every commit)

Setup issues? See Troubleshooting in the development guide.

Deployment

No secrets required for local dev — the setup above is all contributors need.

Maintainers: deploying to Vercel requires DOTENV_PRIVATE_KEY (and TERRAFORM_STATE_ENCRYPT_KEY) to be set as GitHub repository secrets. See docs/deployment-guide.md for the full deployment setup, secret prerequisites, preview vs. production paths, and new maintainer onboarding.

Project Structure

_bmad-ui/
├── src/
│   ├── main.tsx           # React app entry point
│   ├── app.tsx            # Root component
│   ├── styles.css         # Global styles
│   ├── types.ts           # Shared TypeScript types
│   └── routes/            # Route components
├── index.html             # HTML template
├── tsconfig.json          # TypeScript configuration
├── vite.config.ts         # Vite configuration
├── biome.json             # Biome linter/formatter config
└── package.json           # Dependencies

Development Workflow

Code Quality

All code must pass:

  • TypeScript: pnpm run check:types
  • Linting: biome check src/
  • Build: pnpm run build
  • Tests: pnpm run check:tests

Code Style

  • Use @/* path aliases for imports
  • Use Number.isNaN(), Number.parseInt(), Number.parseFloat()
  • Centralize shared types in src/types.ts
  • Use named exports only
  • Use TanStack Query for data fetching (no useEffect for async operations)

Architecture

For detailed architecture documentation, see _bmad-output/planning-artifacts/architecture.md.

Contributing

We welcome contributions! Here's how you can help:

Reporting Issues

  • Check existing issues first to avoid duplicates
  • Describe the problem and steps to reproduce
  • Include your environment (OS, Node version, browser, etc.)
  • Use the appropriate label (e.g., bug, enhancement, question)

Submitting Pull Requests

  1. Fork the repository
  2. Create a branch from main: git checkout -b feature/your-feature
  3. Make your changes and commit with clear messages
  4. Run quality checks: cd _bmad-ui && pnpm run check:types && pnpm run check:tests
  5. Push to your fork and open a PR against main
  6. Ensure all CI checks pass before requesting review See CONTRIBUTING.md for detailed guidelines.

License

This project is licensed under the MIT License - see LICENSE file for details.

Support

For questions or issues, please open an issue on GitHub or refer to the BMAD documentation.

Troubleshooting common failures? See docs/troubleshooting.md for a matrix of local runtime, CI validation, secrets, and deployment failures with symptoms, causes, resolution steps, and evidence to collect.