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

tasteui.dev

v0.0.5

Published

CLI for installing design system skills to coding agents

Readme

████████╗ █████╗ ███████╗████████╗███████╗██╗   ██╗██╗
╚══██╔══╝██╔══██╗██╔════╝╚══██╔══╝██╔════╝██║   ██║██║
   ██║   ███████║███████╗   ██║   █████╗  ██║   ██║██║
   ██║   ██╔══██║╚════██║   ██║   ██╔══╝  ██║   ██║██║
   ██║   ██║  ██║███████║   ██║   ███████╗╚██████╔╝██║
   ╚═╝   ╚═╝  ╚═╝╚══════╝   ╚═╝   ╚══════╝ ╚═════╝ ╚═╝

Command-line interface for installing design system skills to your coding agents.

Installation

npx tasteui.dev

Usage

# Show help with beautiful banner
npx tasteui.dev

# List available design skills
npx tasteui.dev list

# Install a skill
npx tasteui.dev add <owner>/<skill-name>

# Configure API endpoint (optional)
npx tasteui.dev config

Quick Start

# Browse and install skills interactively
npx tasteui.dev list

# Or install directly by name
npx tasteui.dev add jane/minimalism
npx tasteui.dev add alex/glassmorphism

No Authentication Required

The CLI works out of the box without any configuration:

  • tasteui list - Browse public design skills (no auth needed)
  • tasteui add <owner>/<skill> - Install skills (no auth needed)

How Installation Works

When you run tasteui add <owner>/<skill>, the CLI will:

  1. Fetch the skill from the TasteUI API
  2. Install to ./.agents/skills/<skill-name>/

Installation Flow

$ tasteui add jane/minimalism

✓ Found: Minimalism by jane

Skill Details:
  Name: Minimalism
  Author: jane
  Category: design-system
  Description: Clean, minimal design system

Will install to: ./.agents/skills/

◆ Install this skill?
│ ● Yes / ○ No

✓ Installed 1 file(s) to ./.agents/skills/minimalism/

The skill is now available in your coding agents!

Installation Directory Structure

Skills are installed per-project in the universal .agents/skills folder:

your-project/
└── .agents/
    └── skills/
        └── minimalism/
            └── SKILL.md          # ← Design system documentation

This location is recognized by all major AI coding agents (OpenCode, Claude Code, Cursor, etc.)

Configuration (Optional)

The CLI stores optional configuration in ~/.config/tasteui/config.yaml:

apiUrl: https://api.tasteui.dev

Run tasteui config to customize the API URL.

API Integration

The CLI connects to your Hono API backend. Required public endpoints:

  • GET /api/skills - Returns an array of design skills
  • GET /api/skills/:owner/:slug - Returns a single skill by owner username and slug
  • GET /api/skills/:slug - Returns a single skill by slug (fallback)

Development

cd apps/cli
bun install
bun run dev        # Run in development mode
bun run build      # Build for distribution
bun run typecheck  # Type check

Commands Reference

| Command | Description | |---------|-------------| | list | Browse public design skills with interactive selection | | add <owner>/<skill> | Install a skill to .agents/skills/ | | config | Configure API endpoint and optional settings | | --help | Show help message | | --version | Show version number |

Key Features

  • Universal location - Installs to .agents/skills/ (works with all agents)
  • Project-only - No global installation
  • GitHub-style format - owner/slug identifier
  • No auth required - Works out of the box
  • Interactive prompts - Beautiful CLI with @clack/prompts

Inspired By

License

MIT