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

@wvanderen/bmad-module-td

v0.1.12

Published

BMAD expansion module for td CLI integration - td provides state, BMAD provides structure

Downloads

357

Readme

@wvanderen/bmad-module-td

A BMAD Method module for integrating with td CLI task management.

Overview

This module connects BMAD planning artifacts with td CLI for enhanced observability and the Ralph Wiggum development loop.

Philosophy: td is state, BMAD is structure

  • BMAD .md files hold structured planning artifacts (epics, stories, architecture)
  • td issues hold execution state (status, dependencies, reviews)
  • sidecar provides observability

Installation

# Install the module
npm install @wvanderen/bmad-module-td

# Register with BMAD (run from your project root)
npx bmad-method install --custom-content ./node_modules/@wvanderen/bmad-module-td --action update --yes

Note: The --custom-content flag is required because this is a community module not yet in the official BMAD registry.

Requirements

  • td CLI installed and initialized
  • Git repository
  • BMM module (planning artifacts)

Core Workflows

| Workflow | Command | Description | | --------------- | ------------------------ | --------------------------------------- | | create-td-story | /bmad:td:create-story | Create story with td epic + task issues | | td-dev-next | /bmad:td:dev-next | Ralph Wiggum loop - implement next task | | td-dev-task | /bmad:td:dev-task <id> | Implement specific task by td ID | | td-review-story | /bmad:td:review-story | Epic-level code review | | td-sync | /bmad:td:sync | Bidirectional sync story ↔ td | | td-status | /bmad:td:status | Show story td integration status |

Ralph Wiggum Loop

The td-dev-next workflow implements one task per session for maximum speed and reduced context rot:

  1. td next - Get next ready task
  2. Load story context
  3. Implement single task (TDD)
  4. Validate tests pass
  5. Update story file
  6. Git commit (excellent message)
  7. td handoff - Capture details
  8. td review - Submit for review

Commit Message Format

feat(story-X.Y): brief description

Task: {task description}
Story: {story_key}
td: {td_issue_id}

- Implementation details

Tests:
- Test summary

Refs: {td_issue_id}

Development

# Run linting
npm run lint

# Fix formatting
npm run format:fix

# Run tests
npm test

Publishing

# Patch release
npm run release

# Minor release
npm run release:minor

# Major release
npm run release:major

License

MIT License — see LICENSE for details.


Part of the BMad Method ecosystem.