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

reseed-cli

v0.4.1

Published

Drop a design system from any URL into your codebase. Reads a site, extracts its rules, and writes design-system.md / theme.css / a visual reference your AI editor can follow.

Readme

reseed-cli

Drop a design system from any URL into your codebase, where your AI editor can use it.

reseed extracts the design language of any website — colors, typography, spacing, component patterns, the rules that make it feel that way — and drops a design-system.md rules file into your project. Cursor, Claude Code, and Windsurf read the rules and start producing UI that looks like the site you picked.

npx reseed-cli login
npx reseed-cli init https://linear.app

That's it. From the next prompt on, your AI editor follows Linear's design language.

The package is reseed-cli on npm; the binary on your PATH is reseed. So you can also npm i -g reseed-cli once and then run reseed init ….

What lands in your repo

.reseed/
├── design-system.md         ← rules file, loaded via CLAUDE.md / AGENTS.md
├── theme.css                ← Tailwind v4 @theme tokens (or tailwind.config.ts for v3)
├── design-reference.html    ← self-contained visual reference
└── source.json              ← frozen extraction record

reseed init also appends a one-line pointer to your existing CLAUDE.md or AGENTS.md so your AI editor automatically discovers the rules.

How it works

  1. Reseed scrapes the page on its servers (Playwright + Claude vision).
  2. Returns a structured rules file written from a senior designer's perspective: identity paragraph, hard rules, token tables, component patterns, anti-patterns.
  3. Writes the four files into your repo.

Cost is shared via your account's quota: 3 free extractions, then $19/month for 15 extractions on PRO. Sign up at reseedapp.com.

Commands

| Command | Does | |---|---| | reseed login [token] | Authenticate the CLI. With no token, opens the browser to grab a license key. | | reseed logout | Remove the saved license key from this machine. | | reseed whoami | Show the currently logged-in account. | | reseed init <url> | Extract a design system from a URL into the current project. | | reseed update | Re-extract from the source URL recorded in .reseed/source.json (coming soon). |

Examples

# Extract Linear's design language
npx reseed-cli init https://linear.app

# Stripe's polished marketing aesthetic
npx reseed-cli init https://stripe.com

# Resend's editorial / serif voice
npx reseed-cli init https://resend.com

Browse pre-extracted demos at reseedapp.com/demo.

Editor integrations

Reseed appends a single pointer to whichever rules file your editor reads:

  • Cursor.cursor/rules
  • Claude CodeCLAUDE.md
  • Windsurf / ClineAGENTS.md
  • GitHub Copilot.github/copilot-instructions.md

If none exist, Reseed creates CLAUDE.md with the pointer.

Configuration

| Env var | Default | What | | ---------------- | -------------------------------- | ------------------------------------------------- | | RESEED_API_URL | https://reseedapp.com | Override the API endpoint. Useful for local dev. |

License

MIT. See LICENSE.