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

playlist-system

v1.0.2

Published

Design system skill for UI prototypes — MUI v6 (web) + React Native Paper (mobile), two themes: playlist and smartdesk

Readme

playlist-system

Design system skill for Claude — UI prototypes with Material UI v6 (web) and React Native Paper (mobile)

Node.js MUI v6 Expo npm License: MIT

Instead of styling HTML from scratch, Claude uses MUI/Paper with theme tokens. Prototypes come out consistent, accessible, and brand-aligned by design.


Installation

One command

Works in Claude Code, Cursor, Windsurf, Codex — any environment with Node 20+.

# Current project (installs in .claude/skills/)
npx playlist-system@latest install

# Global — available in all projects
npx playlist-system@latest install --global

Then just open Claude and ask for a prototype. The skill activates automatically on UI tasks.

Alternatives

git clone https://github.com/luannsilva/playlist-system.git .claude/skills/playlist-system

Download the .skill from releases and open — Cowork registers it automatically.

npm install playlist-system

Updating

Already installed and want the latest version? Just run the install command again:

npx playlist-system@latest install

The @latest flag ensures npm fetches the newest release instead of a cached version.


Themes

| Theme | Primary | Font | When to use | | :--- | :--- | :--- | :--- | | playlist | #4F46E5 Indigo | DM Sans | CRM/SaaS dashboards, modern vibe | | smartdesk | #0A0A0A Black | Averta (fallback Albert Sans) | Enterprise B2B products, monochromatic vibe |

Both are light mode only.


Quick Start

Scaffold (creates new project)

# Web (Vite + React + TS + MUI)
npx playlist-system scaffold --target web --theme playlist --dest ./my-crm

# Mobile (Expo + RN Paper)
npx playlist-system scaffold --target native --theme smartdesk --dest ./mobile-app
cd my-crm
npm install
npm run dev

Manual — web

// src/main.tsx
import { ThemeProvider, CssBaseline } from '@mui/material';
import { playlistTheme } from 'playlist-system/adapters/web/playlist.theme';

<ThemeProvider theme={playlistTheme}>
  <CssBaseline />
  <App />
</ThemeProvider>

Manual — mobile

// App.tsx
import { PaperProvider } from 'react-native-paper';
import { playlistPaperTheme } from 'playlist-system/adapters/native/playlist.theme';

export default function App() {
  return (
    <PaperProvider theme={playlistPaperTheme}>
      <MainNavigator />
    </PaperProvider>
  );
}

What the skill does

When installed, Claude automatically follows four principles:

  1. Components from the library, not styled HTML. MUI on web, Paper on mobile. Never <button> or TouchableOpacity with manual styling.
  2. Icons also from the library. Web: @mui/icons-material. Mobile: Material Community Icons via Paper.
  3. Theme tokens, never literal values. Color, font, spacing always from theme.* or sx. Zero hardcoded hex.
  4. Authoritative source for complex components. Official MUI MCP when available; references/mui-llms-index.md as fallback.

The skill operates in 4 modes: silent (project already marked), bootstrap (scaffold + installs deps), adoption (asks once per session on new projects), and audit/fix (reviews + fixes existing code).


Repository structure

playlist-system/
├── SKILL.md                       # instructions for Claude
├── package.json                   # bin: npx playlist-system
├── bin/cli.mjs                    # CLI (install + scaffold)
│
├── tokens/                        # single source of truth
│   ├── playlist.ts                # indigo + DM Sans
│   └── smartdesk.ts               # black + Averta
│
├── adapters/
│   ├── web/                       # tokens → MUI createTheme()
│   │   ├── createMuiTheme.ts
│   │   ├── playlist.theme.ts
│   │   └── smartdesk.theme.ts
│   └── native/                    # tokens → RN Paper MD3 theme
│       ├── createPaperTheme.ts
│       ├── playlist.theme.ts
│       └── smartdesk.theme.ts
│
├── templates/
│   ├── web-vite/                  # boilerplate Vite + React + TS
│   └── native-expo/               # boilerplate Expo + Paper
│
├── references/                    # read on-demand by Claude
│   ├── mui-web-components.md      # quick guide MUI
│   ├── mui-icons.md               # complete icon guide
│   ├── rn-paper-components.md     # quick guide Paper
│   ├── patterns.md                # recurring patterns (KPI, sidebar, table...)
│   ├── theme-detection.md         # signals playlist vs smartdesk
│   ├── mui-llms-index.md          # fallback from official MCP
│   └── mcp-install-guide.md       # how to install MUI MCP
│
├── checklists/
│   └── prototype-checklist.md     # 10 verification blocks
│
├── scripts/scaffold.mjs           # scaffold engine
├── preview/demo-preview.html      # visual preview of 2 themes
└── evals/evals.json               # 3 test cases

Visual preview

Open preview/demo-preview.html in your browser — toggle between the two themes. Useful to see at a glance what the skill produces without setting up a project.


CLI

npx playlist-system@latest <command>

Commands:
  install              Install skill in .claude/skills/ of the project
  install --global     Install in ~/.claude/skills/ (all projects)
  scaffold             Create new project from template
  help                 Show help

Scaffold flags:
  --target <web|native>
  --theme  <playlist|smartdesk>
  --dest   <path>

Requirements

  • Node 20+
  • Claude with skills support (Claude Code, Cursor, Windsurf, Codex, Cowork)
  • Optional: Official MUI MCP (installation guide)

Contributing

  • Changes to tokens are breaking — bump minor and communicate first.
  • Changes to references or checklists don't break anything, can go in patch.
  • PRs for new patterns in references/patterns.md are welcome.

License

MIT