create-design-system

create-design-system is a skill for Claude Code from bdmorin/the-no-shop. It costs 12 tokens per session (1,695 once invoked), scanned B, original, MIT.

A CSS design-system creator that turns requirements or an existing design into reusable colors, typography, spacing, and interface components.

In plain words
What is it for?
Use it to define color tokens, light and dark modes, typography scales, spacing, component tokens, and utility classes.
Why use it?
It gives a web project consistent visual rules instead of requiring each page or component to be styled independently.

Skill for Claude Code

Written for Claude Code: disable-model-invocation in frontmatter.

Part of the fabric-creation plugin — 15 skills shipped together

Good fit Use it to define color tokens, light and dark modes, typography scales, spacing, component tokens, and utility classes.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/bdmorin/the-no-shop/create-design-system
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add bdmorin/the-no-shop --skill create-design-system
Clone the repo
git clone --depth 1 https://github.com/bdmorin/the-no-shop

Made for: Claude Code.

Or install fabric-creation, the plugin that ships this one along with the rest of its 15 skills.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for create-design-system

README.md
[![agentmods](https://agentmods.dev/badge/skills/bdmorin/the-no-shop/create-design-system/github.svg)](https://agentmods.dev/skills/bdmorin/the-no-shop/create-design-system)
Your own site
<a href="https://agentmods.dev/skills/bdmorin/the-no-shop/create-design-system"><img src="https://agentmods.dev/badge/skills/bdmorin/the-no-shop/create-design-system/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for create-design-system

Your own site · 80×15
<a href="https://agentmods.dev/skills/bdmorin/the-no-shop/create-design-system"><img src="https://agentmods.dev/badge/skills/bdmorin/the-no-shop/create-design-system.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 12 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,695 The whole file, excluding the scripts and references it only reads on demand.
Security scan B 1 finding. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00012 $0.01695
Opus 5 $0.00006 $0.00847
Sonnet 5 $0.00002 $0.00339
Haiku 4.5 $0.00001 $0.00169

Measured 8d ago against content hash 725efd33a575, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade B, and why

create-design-system scanned grade B with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 8d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Asks the agent to reveal its instructionsmediumSystem prompt leakage

Directions to print, repeat or translate the system prompt extract configuration the operator did not intend to expose.

# OUTPUT INSTRUCTIONS
plugins/fabric-creation/skills/create-design-system/SKILL.md · 198 lines

How it starts

The opening of the file, as written. The whole thing — 198 lines — stays where its author put it; the contents beside it link to each section on GitHub.

IDENTITY and PURPOSE

You are an expert design systems architect. You create comprehensive, production-ready CSS design systems from requirements or existing designs. Your output is immediately usable in any modern web project.

Take a deep breath and think step by step about how to create a cohesive, scalable design system.

STEPS

  1. Analyze the input for brand colors, typography, spacing, and component needs
  2. Create a semantic color system with both light and dark mode support
  3. Define typography scale using modern best practices
  4. Establish spacing and sizing scales
  5. Create component tokens for common UI elements
  6. Add utility classes for rapid development

OUTPUT FORMAT

Design System: [Name]

Color Tokens

:root {
  /* Brand Colors */
  --brand-primary: #value;
  --brand-secondary: #value;
  --brand-accent: #value;

  /* Semantic Colors */
  --color-success: #value;
  --color-warning: #value;
  --color-error: #value;
  --color-info: #value;

  /* Neutrals (Dark Mode Default) */
  --neutral-900: #value;  /* Darkest */
  --neutral-800: #value;
  --neutral-700: #value;
  --neutral-600: #value;
  --neutral-500: #value;
  --neutral-400: #value;
  --neutral-300: #value;
  --neutral-200: #value;
  --neutral-100: #value;  /* Lightest */

  /* Semantic Backgrounds */
  --bg-primary: var(--neutral-900);
  --bg-secondary: var(--neutral-800);
  --bg-tertiary: var(--neutral-700);

  /* Semantic Text */
  --text-primary: var(--neutral-100);
  --text-secondary: var(--neutral-300);
  --text-muted: var(--neutral-500);

  /* Borders */
  --border-color: var(--neutral-700);
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 12px;
}

/* Light Mode Override */
@media (prefers-color-scheme: light) {
  :root {
    --bg-primary: var(--neutral-100);
    --bg-secondary: var(--neutral-200);
    --text-primary: var(--neutral-900);
    --text-secondary: var(--neutral-700);
  }
}

Typography

:root {
  /* Font Families */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

  /* Font Sizes (using clamp for responsiveness) */
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.375vw, 1rem);
  --text-base: clamp(1rem, 0.9rem + 0.5vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.625vw, 1.25rem);
  --text-xl: clamp(1.25rem, 1.1rem + 0.75vw, 1.5rem);
  --text-2xl: clamp(1.5rem, 1.25rem + 1.25vw, 2rem);
  --text-3xl: clamp(2rem, 1.5rem + 2.5vw, 3rem);

  /* Font Weights */
  --font-normal: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;

  /* Line Heights */
  --leading-tight: 1.25;
  --leading-normal: 1.5;
  --leading-relaxed: 1.75;
}

Read the full file on GitHub · 198 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 8d ago First seen · 198 lines · 12 tokens per session scan B 725efd33a575

Subscribe to this mod's changes

create-design-system is a skill published in the GitHub repository bdmorin/the-no-shop (10 stars, last pushed 5mo ago), licensed MIT. It adds 12 tokens to every session and 1,695 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it B with 1 finding (asks the agent to reveal its instructions). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

apple-design

Apple's approach to interface design and fluid, physical motion, translated for the web. Use when building or reviewing gesture-driven UI, spring animations, drag/swipe/sheet interactions, momentum and interruptible transitions, translucent materials and depth, typography (optical sizing, tracking, leading)…

samuelpatro/.claude · 80 tokens

frontend-philosophy

Visual & UI philosophy (The 5 Pillars of Intentional UI). Understand deeply to avoid "AI slop" and create distinctive, memorable interfaces.

kdcokenny/ocx · 36 tokens

frontend-taste

Premium frontend design skills that override LLM defaults. Prevents generic 'AI-looking' UI. Enforces deterministic typography, calibrated color, asymmetric layouts, spring physics, hardware-accelerated motion. Triggers: 'UI tasarla', 'design a UI', 'premium landing page', 'frontend taste', 'anti-slop', 'dashboard…

fatihkan/badi · 0 tokens

design-tokens

Project-level DESIGN.md tokens reference. When the project has a DESIGN.md file, agents producing UI / components / visuals must consult this skill to use canonical color/typography/spacing tokens rather than inventing new ones. Triggers on: UI generation, component creation, design brief, visual asset, tailwind…

fatihkan/badi · 0 tokens

ui-audit

Audit UI for design token compliance and component adoption. Static grep-based analysis against the sitemap's page and component files. Requires a design system with semantic tokens.

marcoguillermaz/Tierward · 35 tokens

design-taste-frontend

Anti-slop frontend skill for landing pages, portfolios, and redesigns. The agent reads the brief, infers the right design direction, and ships interfaces that do not look templated. Real design systems when applicable, audit-first on redesigns, strict pre-flight check.

dmae97/omk · 61 tokens