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

@matchkit.io/cli

v0.2.0

Published

CLI for MatchKit design system skills. Init projects, add components, manage your design system.

Readme

@matchkit.io/cli

Command-line interface for MatchKit design system skills. Sync your design system, add components, and integrate with CI/CD pipelines.

Features

  • 🔐 Browser-based authentication - Secure OAuth flow via matchkit.io
  • 📦 Component management - Add individual components with automatic dependency resolution
  • 🔄 Sync & update - Pull latest design system updates from your MatchKit configuration
  • 🤖 CI/CD ready - Use API keys for automated deployments
  • 📊 Status tracking - See what's installed, what's available, and what's changed

Installation

npm install -g @matchkit.io/cli

Quick Start

# 1. Authenticate (opens browser)
matchkit login

# 2. Initialize your project
matchkit init

# 3. Pull your design system
matchkit pull

Your design system files are installed to .claude/skills/[theme]-ui/ and work automatically with Claude Code, Cursor, VS Code, and Windsurf.

Commands

matchkit login

Authenticate with MatchKit. Opens your browser to sign in, then saves your API key locally.

matchkit login

matchkit init

Initialize a MatchKit design system in your project. Links to your configuration on matchkit.io.

matchkit init

matchkit pull

Download your latest resolved design system from MatchKit.

matchkit pull

matchkit add <component>

Install a single component with its dependencies.

matchkit add button
matchkit add data-table

matchkit list

Show all 27 components with their installation status.

matchkit list

matchkit status

Show current configuration, theme, version, and sync status.

matchkit status

matchkit diff

Show what changed since your last pull.

matchkit diff

Configuration

The CLI stores:

  • Project config: .matchkit/config.json (in your project)
  • API key: ~/.matchkit/credentials (global, never committed)

.matchkit/config.json

{
  "$schema": "https://matchkit.io/schemas/config.json",
  "configId": "cfg_a1b2c3d4e5f6",
  "version": 3,
  "theme": "soft",
  "accent": "#14B8A6",
  "overrides": { "radius": "xl", "button-style": "ghost" },
  "componentsDir": "src/components/ui",
  "skillDir": ".claude/skills/soft-ui",
  "registryUrl": "https://matchkit.io/api/registry"
}

CI/CD Usage

For automated deployments, set the MATCHKIT_API_KEY environment variable:

# GitHub Actions
- name: Pull MatchKit design system
  env:
    MATCHKIT_API_KEY: ${{ secrets.MATCHKIT_API_KEY }}
  run: |
    npm install -g @matchkit.io/cli
    matchkit pull

Get your API key from https://matchkit.io/app/keys

How It Works

  1. Authentication: Browser OAuth flow creates an API key
  2. Configuration: Links your project to your MatchKit design system
  3. Resolution: Server-side resolution generates your personalized skill
  4. Download: ZIP download with all components, tokens, and documentation
  5. Extraction: Files land in .claude/skills/[theme]-ui/

Requirements

  • Node.js 18 or later
  • A MatchKit account (free tier available at https://matchkit.io)

Links

  • Website: https://matchkit.io
  • Documentation: https://matchkit.io/docs
  • Dashboard: https://matchkit.io/app
  • Repository: https://github.com/Maes9/matchkit
  • Issues: https://github.com/Maes9/matchkit/issues

License

MIT