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

wb-flow

v1.0.1

Published

Zero-dependency CLI that bootstraps an agentic AI workflow system into any repo. Universal — works with Vue, React, Python, or any codebase. Compatible with Claude Code, OpenCode, Gemini CLI, Cursor, and other AI coding assistants.

Readme

wb-flow

npm version License: MIT Node

Your AI assistant is brilliant. It's just undisciplined. wb-flow gives it a spine — 33 strict, verb-driven command templates that turn vague requests into structured, traceable, verifiable work.

wb-flow demo


The Problem

You give your AI a 3-hour task. Two hours in, it's rewriting files you didn't ask it to touch, skipped the part where it should have audited the codebase first, and committed with git commit -m "fix stuff".

It didn't fail because it's not smart enough. It failed because nobody gave it a process.

The Solution: Verbs, Not Personas

Most AI workflow tools solve this with personas — "ask the QA Agent", "invoke the Architect". wb-flow takes a different approach: verbs over personas.

You don't ask a role to review your code. You run /wbAudit. You don't ask a planner to break down a feature. You run /wbPlan. The command is the contract.

/wbAudit  →  /wbPlan  →  /wbWork  →  /wbValid
  Audit        Plan        Execute     Validate

Audit before you plan. Plan before you execute. Validate before you ship.

🧐 What is it?

wb-flow is a zero-dependency CLI that copies 33 structured /wb* slash-command templates into your project — pure Markdown files your AI reads and follows as operating procedures.

  • Zero runtime. No server, no daemon, no Python environment. The tool installs itself and then disappears.
  • Zero lock-in. Works with Claude Code, Cursor, OpenCode, Gemini CLI, or any assistant that reads a prompt.
  • Zero ambiguity. Every command has a defined input contract, a defined output format, and a defined handoff to the next step.
  • Universal. Works with Vue, React, Python, Go, Rust, Terraform — anything with source files.

🥊 Compared With...

| Approach | Limitation | wb-flow Advantage | |---|---|---| | Raw AI prompts | Output depends on the model's mood | Templates rigidly define format, steps, and constraints | | Heavy frameworks (LangChain, AutoGen) | Require Python, API keys, orchestration | Pure Markdown, zero dependencies | | Persona-based agents (BMAD-Method) | Simulate a Scrum team with roleplay | Verbs over personas — tighter, more honest, less drift |


🚀 Installation

Path 1 — One-shot via npx (Recommended)

cd my-project/
npx wb-flow

Path 2 — Global install via npm

npm install -g wb-flow
cd my-project/
wb-flow

Path 3 — Git clone (no npm needed)

git clone https://github.com/wissemb11/wb-flow.git ~/.wb-flow
cd my-project/
node ~/.wb-flow/bin/install.js

Path 4 — Git clone + npm link (for contributors)

git clone https://github.com/wissemb11/wb-flow.git
cd wb-flow && npm link
cd ~/my-project/
wb-flow         # uses your local clone

Bootstrap flags

  • --force / -f — overwrite existing files (default: skip existing)
  • --dry-run / -n — preview without writing
  • --list / -l — print the bundled command roster and exit
  • --help / -h — show usage

By default, wb-flow is non-destructive — it skips files that already exist. Pass --force to overwrite, or --dry-run first to preview.


⚡ Quick Start

/wbSetup .                   # Read the codebase — generates context.md + dev.md
/wbPlan "add dark mode"      # Break the goal into a ranked task table
/wbWork --id=1               # Execute the first task, fully traced
/wbValid                     # Verify: does the work match the plan?

That's a full cycle: plan → execute → validate, guided by your AI assistant.


📚 Full Documentation

The complete reference — all 33 commands, workflow concepts, daily use patterns, and session lifecycle — is available in two places:


🐕 Built With wb-flow

This documentation — all 250+ files, 33 command references, and concept pages — was itself planned, audited, and validated using wb-flow. Every task was tracked via /wbPlan, every page was scored via /wbAudit, and every commit was generated via /wbGit. The tool eats its own cooking.


👨‍💻 About the Owner & Resources

wb-flow is created and maintained by Wissem Boughamoura as a standalone, framework-agnostic dev tool. It is independent of the Vue-based wbc-ui ecosystem (despite the shared author) and is free to use with any AI coding assistant.

📬 Contact & Support


License: MIT © 2026 Wissem Boughamoura. See LICENSE. Changelog: see CHANGELOG.md.