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

@crafter/v0-cli

v0.1.2

Published

Agent-first CLI for the v0 Platform API (api.v0.dev/v1). Built for AI agents with a human supervisor: trust ladder, audit trail, killswitch, rate-limit aware.

Readme

v0-cli

Agent-first CLI for the v0 Platform API.

Single v0 binary covering the entire Platform API. Stable JSON output, trust ladder, audit trail, single-use intent tokens for destructive ops.

bun install -g @crafter/v0-cli   # or `bun link` from source
v0 doctor --json

Requires V0_API_KEY from v0.app/chat/settings/keys.

Shorthand

v0 <arg> routes by the shape of the arg — no chat create / chat init ceremony:

v0 "landing page with hero and pricing"              # → chat create (prompt)
v0 .                                                 # → chat init (cwd)
v0 ./my-project                                      # → chat init (files)
v0 https://github.com/vercel/next.js                 # → chat init (repo)
v0 https://v0.app/templates/<slug>-<id>              # → chat init (template)
v0 template_abc                                      # → chat init (template id)
v0 https://example.com/dist.zip                      # → chat init (zip)

Core workflow:

v0 msg send <chat-id> "swap the hero copy"           # iterate (streams live)
v0 version download <chat> <ver> --out ./build.zip   # pull the archive
v0 deploy create <chat> --yes                        # ship (auto version, auto project, live transcript)
v0 "hero" --background --json                        # fire-and-forget for agents

Run v0 --help for the full table.

Skill

For agents (Claude Code, Cursor, custom):

v0 skill install       # self-contained, audit-logged
v0 skill status        # check if your local copy is current
v0 skill update        # pull the latest (idempotent)
v0 skill uninstall     # remove

# Or directly:
npx skills add Railly/v0-cli

The skill teaches agents the preflight recipe (doctor → schema → rate-limits), the JSON contract, the T0/T1/T2/T3 trust ladder, and the intent-token flow for destructive operations. Source: skill/SKILL.md.

Built on cligentic

The foundation primitives (audit log, killswitch, XDG paths, error map, doctor checks, global flags, JSON mode, next-steps) are cligentic blocks, copy-pasted into src/cli/ via bunx shadcn@latest add. v0-cli dogfoods the registry: if something breaks or a pattern is missing, the fix lands upstream first, then gets re-pulled here.

Links

  • Docs + design: v0-cli.crafter.run
  • v0 Platform API: https://v0.app/docs/api/platform
  • v0-sdk: https://github.com/vercel/v0-sdk
  • cligentic registry: https://cligentic.railly.dev

License

MIT