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

mpower-workflow

v0.1.0

Published

AI-orchestrated development workflow framework

Downloads

126

Readme

mpower

AI-orchestrated development workflow framework. Separates deterministic bookkeeping (CLI state machine) from creative AI work (skill files + agent personas), enabling structured, gate-controlled software development across AI coding tools.

mpower manages phases, gates, agent personas, and document scaffolding — the AI tool does the creative work.

Installation

Requires Node.js 18+.

cd /path/to/mpower
npm install
npm run build
npm link

This makes the mpower command available globally on your machine. To use it in any project:

cd /path/to/your-project
mpower init --tool claude-code

Get Started

1. Initialize your project

npx mpower init --tool claude-code

This scaffolds your project with:

  • .mpower/agents/ — 9 agent personas (brainstorm facilitator, software architect, story executor, etc.)
  • .claude/commands/ — 8 workflow skill files as slash commands
  • .mpower/config.json — phase-to-agent rule table
  • WORKFLOW_STATUS.md — phase tracking
  • docs/, reports/, tests/ — directory structure

2. Start brainstorming

Run /brainstorming in Claude Code. The AI adopts the Brainstorm Facilitator persona, asks clarifying questions, generates 3+ approaches, and writes a timestamped decision document.

3. Progress through phases

Each slash command advances the workflow:

| Command | Phase | Output | |---------|-------|--------| | /brainstorming | Ideation | docs/brainstorming/{timestamp}_{summary}.md | | /write-prd | Requirements | docs/prd.md | | /create-backlog | Story decomposition | docs/agile/backlogs/ | | /architect-design | Technical architecture | docs/architect.md | | /ui-ux-design | UX/UI design | docs/design/ | | /sprint-planning | Sprint scoping | docs/agile/sprints/sprint-{id}/index.md | | /sprint-execution | TDD implementation | Code + tests + story reports | | /sprint-review | Retrospective | reports/sprint-{N}.md |

Gates enforce quality between phases — no [TODO], [TBD], or [BLOCKER] placeholders allowed. After sprint review, the workflow cycles back to sprint planning for the next iteration.

CLI Commands

mpower status              # Current phase and story statuses
mpower phase next          # Advance phase (requires gate check)
mpower gate-check          # Run gate validation
mpower resolve <phase>     # Show lead + support agents for a phase
mpower epic create <name>  # Create an epic
mpower story create <epic-id> <name>  # Create a user story
mpower sprint create       # Start next sprint
mpower sprint add <story>  # Add story to current sprint
mpower report story <id>   # Generate story report
mpower report sprint       # Generate sprint review report

License

MIT