Back to the catalog

the-design-library

A full design suite for Claude Code: 58 brand design systems (Stripe, Linear, Vercel, Google, Anthropic and more) + 5 curated skills for UI/

Open source Repository Open in the app JSON README (API)

About

A full design suite for Claude Code: 58 brand design systems (Stripe, Linear, Vercel, Google, Anthropic and more) + 5 curated skills for UI/UX generation, accessibility auditing, motion design, web guidelines, and the full design lifecycle. Auto-activates relevant skills based on your project type.

Details

Kind
Plugins
Topic
Finance & crypto
Publisher
zeta92
Origin
marketplace
Category
ferramentas
Stars
10
Last push
2026-06-10T07:36:31Z
Repository state
ativo
Language
Shell
License
NOASSERTION
Added
2026-08-30 01:48:58
Updated
2026-08-30 01:48:58
Origin id
zeta92/design-library-plugin/the-design-library

README

# The Design Library

<img src="docs/cover.svg" alt="The Design Library — Claude Code plugin" width="100%"/>

> Global Claude Code plugin — 58 brand design systems + 7 curated design skills + Playwright MCP, always available.

[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](LICENSE)

---

## Overview

`design-library-plugin` is a Claude Code plugin that gives you instant access to a full design suite directly inside your coding sessions:

- **58 brand design systems** (Stripe, Linear, Vercel, Figma, Google, Anthropic, and more)
- **UI/UX Pro Max** — 67 styles, 161 palettes, 57 font pairings, 99 UX guidelines (61k ⭐)
- **Web Design Guidelines** — 100+ rules for a11y, forms, dark mode, typography, i18n (24k ⭐)
- **Designer Skills** — 63 skills across the full design lifecycle (505 ⭐)
- **Motion Design Principles** — animation audits via 3 designer perspectives (256 ⭐)
- **Accessibility Agents** — 11 WCAG 2.2 AA specialists (214 ⭐)
- **Taste Skill** — anti-generic visual polish with tunable variance/motion/density dials (~37k ⭐)
- **Web Quality Skills** — Lighthouse & Core Web Vitals optimization by Addy Osmani
- **Playwright MCP** — bundled browser automation to verify UI changes in a real browser

The plugin auto-detects your project type at session start and activates the relevant skills automatically.

---

## Projects powering this plugin

| Project | Used for | Stars |
|---|---|---|
| [VoltAgent/awesome-design-md](https://github.com/VoltAgent/awesome-design-md) | 58 brand design systems (DESIGN.md files) | — |
| [nextlevelbuilder/ui-ux-pro-max-skill](https://github.com/nextlevelbuilder/ui-ux-pro-max-skill) | `/ui-ux` — complete design system generator | 61k ⭐ |
| [vercel-labs/agent-skills](https://github.com/vercel-labs/agent-skills) | `/guidelines` — 100+ web interface rules | 24k ⭐ |
| [Owl-Listener/designer-skills](https://github.com/Owl-Listener/designer-skills) | `/design-process` — 63 design lifecycle skills | 505 ⭐ |
| [kylezantos/design-motion-principles](https://github.com/kylezantos/design-motion-principles) | `/motion` — animation audit via 3 designers | 256 ⭐ |
| [Community-Access/accessibility-agents](https://github.com/Community-Access/accessibility-agents) | `/a11y` — 11 WCAG 2.2 AA specialist agents | 214 ⭐ |
| [Leonxlnx/taste-skill](https://github.com/Leonxlnx/taste-skill) | `/taste` — anti-generic visual polish | 37k ⭐ |
| [addyosmani/web-quality-skills](https://github.com/addyosmani/web-quality-skills) | `/web-quality` — Lighthouse / Core Web Vitals audits | — |
| [microsoft/playwright-mcp](https://github.com/microsoft/playwright-mcp) | Bundled MCP — in-browser UI verification | — |

---

## Installation

### Step 1 — Clone the plugin

```bash
git clone https://github.com/zeta92/design-library-plugin.git ~/.claude/plugins/local/design-library
```

> The plugin must live at `~/.claude/plugins/local/design-library`. Do not change this path.

### Step 2 — Run the setup script

```bash
bash ~/.claude/plugins/local/design-library/scripts/sync.sh
```

This script does everything in one shot:

- Downloads all 58 brand design systems and the 7 external skill repos
- Creates the local marketplace manifest needed by Claude Code
- Registers the marketplace: `claude plugin marketplace add`
- Installs the plugin: `claude plugin install design-library@local`
- Sets up a daily cron job (6am) to keep design data up to date

### Step 3 — Reload plugins in Claude Code

Run this slash command inside any Claude Code session:

```
/reload-plugins
```

You should see: `Reloaded: 1 plugin · 10 skills · ...`

---

## Usage

### Auto-activation

When you start a Claude session, the plugin automatically detects your project type and activates the relevant skills. You'll see a message like:

```
[DESIGN SUITE ACTIVO] Proyecto detectado: web app
Skills cargados: design-library · ui-ux-pro-max · web-design-guidelines
```

### Slash commands

| Command | Description |
|---|---|
| `/design <brand>` | Load one brand's design system |
| `/design A + B` | Mix two brands |
| `/design A:colors + B:typography` | Granular mix by section |
| `/design ?` | Re-analyze project and suggest skills + brands |
| `/design list` | Show all 58 brands |
| `/design sync` | Update all design data and skills |
| `/ui-ux` | Generate a complete design system for your project |
| `/guidelines` | Audit UI code against 100+ web design rules |
| `/motion` | Audit animations via Emil Kowalski / Jakub Krehel / Jhey Tompkins |
| `/a11y` | Run a full WCAG 2.2 AA accessibility audit |
| `/taste` | Anti-generic visual polish — variants: `minimalist`, `brutalist`, `high-end`, `redesign`, `image-to-code` |
| `/web-quality` | Lighthouse / Core Web Vitals audit — modes: `performance`, `cwv`, `seo`, `best-practices` |
| `/design-process` | Access 63 design skills across the full lifecycle |

### Natural language

The plugin also detects brand names in your prompts automatically — no command needed:

- *"Diseñame esto como Google y Anthropic"*
- *"Build me a page like Stripe"*

---

## Sections for granular brand mixing

`colors` · `typography` · `components` · `layout` · `elevation`

---

## Playwright MCP (bundled)

The plugin ships a `.mcp.json` that starts the [Playwright MCP server](https://github.com/microsoft/playwright-mcp) (`npx @playwright/mcp@latest`) whenever the plugin is enabled. Claude can use it to open your app in a real browser, take screenshots, inspect the accessibility tree, and verify design changes visually — closing the loop with `/guidelines`, `/a11y`, and `/web-quality`.

> Requires Node.js. The first run downloads a browser binary, which may take a minute.

---

## Updating

To pull the latest design data:

```bash
bash ~/.claude/plugins/local/design-library/scripts/sync.sh
```

Or use the slash command inside Claude:

```
/design sync
```

---

## License

Apache License 2.0. See [LICENSE](LICENSE).

Copyright 2026 zeta92

More