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

@vibeflow-tools/cli

v0.5.0

Published

Vibeflow CLI for frontend prototyping with LLM assistance — review, annotate, and iterate on HTML prototypes

Readme

vibeflow

Feedback that becomes code.

npm version License Node.js

Annotate anything in the browser, hand structured context to your AI coding agent, ship. No Slack threads. No tickets nobody reads. No switching context.

npm install -g vibeflow
npx vibeflow kanban

Website

  • Main website: https://www.vibeflow.tools/
  • Tutorials: https://www.vibeflow.tools/tutorials.html

The problem

You review your AI agent's output in the browser. You spot issues. Then the hard part: re-explaining every little thing in plain text, hoping the agent understands where to look and what's wrong.

  • "Just sent you a Slack message about it" — context-switching costs 23 minutes to recover. The fix takes 2 minutes.
  • "Here's a screenshot, the thing on the left" — screenshots without structure become detective work. Your agent needs selectors, not JPEGs.
  • "I described it to the AI but it got confused" — prose descriptions lose precision. Agents work best with structured, reproducible context.

Vibeflow eliminates the guessing loop.


How it works

Three steps. Zero ceremony.

1. Serve

One command starts a local server that injects an annotation overlay into any HTML file or add overlay script to the live app.

vibeflow serve ./my-project

2. Annotate

Open the browser. Click any element, write a quick note, set priority. Every annotation becomes a task stored as JSON in .vibeflow/ — versioned in git, visible in the Kanban board.

vibeflow kanban          # open the Kanban board

3. Hand to your agent

Give your AI agent one prompt. It claims the next task, implements it, and marks it for review — all through the CLI.

vibeflow tasks --next

The magic prompt for your agent: "Get new tasks and implement them, once done check again for new ones: npx @vibeflow-tools/cli tasks --next"

--next atomically claims the highest-priority todo task (sets it in-progress), preventing two agents from picking the same task. Run it again after completing each task to get the next one.


Commands

Serving

| Command | Description | |---------|-------------| | vibeflow serve [target] | Serve an HTML folder with the annotation overlay injected | | vibeflow kanban [dir] | Start the server and open the Kanban board in your browser |

Tasks

| Command | Description | |---------|-------------| | vibeflow tasks | List all tasks | | vibeflow tasks --next | Claim the next todo task (sets in-progress, returns full task details) | | vibeflow tasks --status todo | Filter to open tasks | | vibeflow tasks --type Bug | Filter by type (Task, Bug, Feature, Enhancement, Research) | | vibeflow tasks --get <id> | Full task detail with comments, file attachments, and linked commits | | vibeflow tasks --add --title "..." --description "..." | Create a new task | | vibeflow tasks --edit <id> --set-status review --commit-message "..." --comment "..." | Mark task as review, auto-commit staged files, add report | | vibeflow tasks --json | Machine-readable JSON output |

Task statuses: backlog → todo → in-progress → review → done


Features

| Feature | Description | |---------|-------------| | Local-first | Runs entirely on your machine. Tasks in .vibeflow/ — committed to git, readable by any tool | | Agent-ready | Works with GitHub Copilot, Claude, Cursor, Windsurf — any tool that accepts a prompt | | Click-to-annotate | Captures exact CSS selector, URL, and source location automatically | | Kanban board | Full task manager with backlog, in-progress, review, done — view in browser or drive from CLI | | Screenshots | Paste a screenshot onto any task, or let the tool capture it automatically | | Keyboard shortcut | Alt+A to toggle annotation mode | | Error recording | Captures recent console errors into bug reports | | Offline | Works 100% locally, no account needed |


Quick Start

# Open the Kanban board
npx vibeflow kanban

# Tell your agent to implement all open tasks (--next workflow)
npx vibeflow tasks --next

Agent workflow

When running vibeflow tasks, the CLI prints agent instructions automatically. Key rules:

  1. Claim first — set status to in-progress before reading or planning
  2. Never set done — use review; only humans mark tasks done
  3. Never edit .vibeflow/ files directly — use CLI commands only
  4. Research tasks — attach a .md report before marking review; never generate code
  5. Bug tasks — include error logs and stack traces in commit comments

Requirements

  • Node.js 22+ — install from nodejs.org
  • React in dev mode (recommended) — for component names, source files, and line numbers. Run in NODE_ENV=development (the default for next dev).

License

Apache-2.0