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

@flothemaker/bmad-coding-standards

v1.0.2

Published

Multi-provider coding standards enforcement for BMAD agents

Readme

bmad-coding-standards

Multi-provider coding standards enforcement for BMAD agents. Enforces consistent code style across all languages in your project.

Quick Start

npx @flothemaker/bmad-coding-standards

Or for local development:

node install.js

Select your style guide provider and the installer handles the rest.

What It Does

  • Language-aware: Detects project language automatically, loads the right style guide
  • Provider-agnostic: Supports multiple style guide providers (Google, etc.)
  • Project-specific: Respects _bmad/data/technical-preferences-local.md for custom rules
  • Agent-integrated: Extends BMAD agents with coding standards knowledge
  • Multi-IDE: Works with any IDE configured in BMAD (OpenCode, Cursor, etc.)

Providers

| Provider | Languages | |----------|-----------| | Google | AngularJS, C++, C#, Common Lisp, Go, HTML/CSS, Java, JavaScript, JSON, Markdown, Objective-C, Python, R, Shell, Swift, TypeScript, Vim Script |

File Structure

bmad-coding-standards/
├── install.js                      # Interactive installer
├── platform-codes.yaml             # IDE platform mappings
├── package.json                    # Dependencies
├── agents/                         # Agent extensions (merged on install)
│   ├── bmad-quick-dev.md
│   ├── bmad-code-review.md
│   ├── bmad-create-architecture.md
│   ├── bmad-qa-generate-e2e-tests.md
│   ├── bmad-document-project.md
│   ├── bmad-product-brief.md
│   └── bmad-sprint-planning.md
└── data/
    ├── technical-preferences-global.md  # Universal rules (all languages)
    └── style-guides/{provider}/{language}/
        ├── SKILL.md                      # Quick reference for LLM
        └── {language}.md                 # Full style guide

After Installation

Files are copied to your project:

{project}/
├── .agents/skills/             # Extended agent skills (per IDE)
└── _bmad/
    └── data/
        ├── active-coding-standards.md
        ├── technical-preferences-global.md
        ├── technical-preferences-local.md   # Your overrides (never touched)
        └── style-guides/{provider}/{language}/

Agents read files in this order (later ones override earlier):

  1. _bmad/data/style-guides/{provider}/{language}/SKILL.md
  2. _bmad/data/style-guides/{provider}/{language}/{language}.md
  3. _bmad/data/technical-preferences-global.md
  4. _bmad/data/technical-preferences-local.md (if exists)

Global Preferences (Universal Rules)

The technical-preferences-global.md file enforces:

  • Logging: Structured JSON with level, msg, trace_id, timestamp; never log PII
  • Exceptions: Never swallow silently; log context before re-throwing; wrap third-party at boundaries
  • Code Structure: Prefer <40 lines per function; no magic strings/numbers; single responsibility
  • Security: No secrets in code; no hardcoded IPs/URLs; validate external input
  • Testing: Cover all public APIs; use descriptive names (should_return_x_when_y)

Customization

Project-Specific Rules

Create _bmad/data/technical-preferences-local.md — it takes precedence over global rules.

Adding a New Provider

# In bmad-coding-standards source:
data/style-guides/{new-provider}/{language}/
├── SKILL.md      # Quick reference for LLM
└── {language}.md # Full style guide content

# Example: airbnb JavaScript style guide
data/style-guides/airbnb/javascript/
├── SKILL.md
└── javascript.md

The installer auto-discovers new providers — users select them interactively. No code changes needed.

Switching Providers

Re-run the installer anytime:

npx @flothemaker/bmad-coding-standards

License

MIT

The Google styleguides-skills is also MIT licensed.