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

@vinhnnn/dev-workflow

v2.1.0

Published

Drops a single dev-workflow.md into your project. Claude Code reads it, asks the project-specific questions, and scaffolds from there. No multi-file template.

Downloads

491

Readme

@vinhnnn/dev-workflow

A single markdown file. That's the whole package.

dev-workflow.md captures the conventions Vinh applies to every web project — stack defaults, architectural rules, process, quality bar — so when starting a new project with Claude Code there's no need to re-derive them. Claude reads the file, asks the project-specific questions (domain, modes, auth, DB), and scaffolds from there.

Quick start

cd your-new-project
bunx @vinhnnn/dev-workflow

That writes dev-workflow.md into the current directory. Then open Claude Code and say:

Set up the project — read dev-workflow.md and ask me what you need.

Claude will confirm the stack defaults apply, ask about the project's domain and scope, and scaffold a thin starting layout. No multi-file template drop, no rigid structure.

Commands

bunx @vinhnnn/dev-workflow            # write dev-workflow.md to cwd
bunx @vinhnnn/dev-workflow --force    # overwrite existing dev-workflow.md
bunx @vinhnnn/dev-workflow --help
bunx @vinhnnn/dev-workflow --version

That's all of it.

Why this is just one file

Earlier versions of this package shipped a multi-file scaffold — CLAUDE.md skeleton, __project__/ folder, .claude/commands/, scripts, presets, a doctor command, multi-repo audit. It was over-engineered: every project got the same fixed structure even when it didn't need it, and per-project differences were friction rather than features.

The simpler model: ship the conventions, let Claude scaffold the specifics in conversation. A short discussion with Claude is faster than maintaining and overriding a templated drop.

What's in dev-workflow.md

  • Claude init protocol — explicit instructions for Claude on what to ask vs. what's defaulted.
  • Stack defaults — Next.js 15 / React 19 / TypeScript / Bun / Biome / Tailwind v4 / shadcn/ui / ts-pattern / purify-ts.
  • Architectural rules — pure boundary at src/lib/, Maybe/Either instead of throw, ts-pattern.match exhaustive for state.
  • Default project layoutsrc/, __project__/ (three files: spec.md, backlog.md, done.md), e2e/.
  • Conventions — kebab-case filenames, conventional commits, dev is trunk and main is release-only.
  • Test layeringbun test for unit/component, Playwright for E2E.
  • Default scope — anonymous-first, no DB in v1, single-player before multiplayer.
  • Quality barlib/ coverage ≥ 90%, Lighthouse ≥ 90/95.
  • Six-phase process — spec → plan → build → test → review → release.

Requirements

Node.js ≥ 20.

License

MIT