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

vibekit-framework

v0.3.1

Published

Scaffold the VibeKit framework into a project — installs the agent rules and the framework files in one command.

Readme

vibekit-framework

The one-command installer for VibeKit — a framework for building production-grade Next.js apps with Claude Code or any AI agent, without burning tokens or shipping broken code.

npx vibekit-framework init

How it fits: VibeKit is a set of markdown prompts and reference guides your AI agent reads to build real apps. This package drops those files into your project and wires up your agent's rules so they load every session — the setup step of the VibeKit workflow. Full framework and docs: vibekit.desishub.com · GitHub.

It installs:

| What | Where | |---|---| | master_prompt.md | project root — the coding constitution | | jb-components.md | project root — component registry reference | | pre-deploy-review.md | project root — the pre-deploy security + performance audit prompt | | pre-design-review.md | project root — the UI/UX design audit prompt (against your style guide) | | Agent rules | your agent's auto-loaded path (see below) | | Playwright MCP | .mcp.json (+ .cursor/mcp.json) — a real browser so your agent can verify its own UI | | ui-ux-pro-max skill | ~/.claude/skills/ — senior-designer rules for Claude Code (best-effort clone) |

This replaces quickstart step 5, which previously meant opening GitHub, downloading three files by hand, running a separate curl for the agent rules, then hand-installing an MCP and a skill — several manual steps that silently half-complete if any one is missed.

Playwright MCP & the ui-ux skill

  • Playwright MCP is registered by merging a project .mcp.json (and .cursor/mcp.json for Cursor) — non-destructively, so your other MCP servers are untouched. It gives the agent a real browser (navigate, click, fill, read accessibility snapshots) so it can check the UI it just built. Skip with --no-mcp. Restart your agent afterwards.
  • ui-ux-pro-max skill (Claude Code) is cloned from nextlevelbuilder/ui-ux-pro-max-skill into ~/.claude/skills/. This is the one step that needs git + network, so it's best-effort and non-fatal — and skipped in non-interactive/CI runs unless you pass --skills. Skip entirely with --no-skills.

Usage

npx vibekit-framework init                    # interactive — detects your agent
npx vibekit-framework init --agent cursor     # skip the prompt
npx vibekit-framework init --agent all        # write every agent's rules file
npx vibekit-framework init --global           # Claude skill to ~/.claude, not the project
npx vibekit-framework init --yes              # accept defaults, no prompts (CI)
npx vibekit-framework init --force            # overwrite existing files
npx vibekit-framework init --dir ./my-app     # target a different directory
npx vibekit-framework init --no-mcp           # don't register the Playwright MCP
npx vibekit-framework init --no-skills        # don't install the ui-ux skill
npx vibekit-framework init --skills           # install the skill even in CI

Supported agents

| Agent | Rules file | |---|---| | Claude Code | .claude/skills/vibekit/SKILL.md (or ~/.claude/… with --global) | | Cursor | .cursor/rules/vibekit.mdc | | Codex CLI / Aider / Continue | AGENTS.md | | Cline | .clinerules | | Windsurf | .windsurfrules | | Gemini CLI | GEMINI.md | | Cody | .cody/instructions.md | | Junie | .junie/guidelines.md |

Claude Code gets SKILL.md (YAML frontmatter, registers the /vibekit slash command). Everything else gets AGENTS.md — the same rules, no frontmatter.

Behaviour

  • Idempotent. Re-running reports "already up to date" and changes nothing.
  • Never clobbers your edits. A file that exists with different content is left alone and listed in the summary; pass --force to overwrite.
  • Offline core. The framework files are bundled at publish time and the MCP config is plain file I/O, so the core install makes no network calls. The only network step is cloning the ui-ux skill — it's best-effort, non-fatal, and skipped in CI unless you pass --skills.
  • Zero runtime dependencies.

Development

node scripts/bundle.mjs   # copy framework files from the repo root into templates/
npm test                  # run the test suite
node bin/vibekit.mjs init --dir /tmp/scratch --agent all --yes

templates/ is generated and gitignored — prepack regenerates it before publish, so a release can never ship stale copies of the framework files.

To add a new agent, add an entry to src/agents.mjs and a row to the table above and in skill/README.md.