Create Design System

Create Design System is a skill for Claude Code, Codex from AmariahAK/atlarix-skills. It costs 3 tokens per session (1,632 once invoked), scanned B, original, Apache-2.0.

A prompt pattern for creating a reusable CSS design system from requirements or an existing design. It covers shared choices such as colors, typography, spacing, and common interface components.

In plain words
What is it for?
Use it to define CSS variables, type scales, spacing rules, component styles, and light or dark color modes.
Why use it?
It helps keep a website’s visual styles consistent and makes them easier to reuse across pages and projects.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to define CSS variables, type scales, spacing rules, component styles, and light or dark color modes.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/amariahak/atlarix-skills/fabric-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 AmariahAK/atlarix-skills --skill fabric-create-design-system
Clone the repo
git clone --depth 1 https://github.com/AmariahAK/atlarix-skills

Made for: Claude Code, Codex.

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/amariahak/atlarix-skills/fabric-create-design-system/github.svg)](https://agentmods.dev/skills/amariahak/atlarix-skills/fabric-create-design-system)
Your own site
<a href="https://agentmods.dev/skills/amariahak/atlarix-skills/fabric-create-design-system"><img src="https://agentmods.dev/badge/skills/amariahak/atlarix-skills/fabric-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/amariahak/atlarix-skills/fabric-create-design-system"><img src="https://agentmods.dev/badge/skills/amariahak/atlarix-skills/fabric-create-design-system.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 3 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,632 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.00003 $0.01632
Opus 5 $0.00002 $0.00816
Sonnet 5 $0.00001 $0.00326
Haiku 4.5 $0.00000 $0.00163

Measured 7d ago against content hash 910221e89403, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, 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 7d 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
skills/fabric-create-design-system/SKILL.md · 199 lines

How it starts

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

Create Design System

When to use this skill

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.

Source

Synced from https://github.com/danielmiessler/fabric/tree/main/data/patterns/create_design_system/system.md.

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);
  }
}

Read the full file on GitHub · 199 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 7d ago First seen · 199 lines · 3 tokens per session scan B 910221e89403

Subscribe to this mod's changes

Create Design System is a skill published in the GitHub repository AmariahAK/atlarix-skills (2 stars, last pushed 4d ago), licensed Apache-2.0. It adds 3 tokens to every session and 1,632 once invoked, about $0.0000 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-09-03.

Related

Other skills, from other repositories

ui-ux-pro-max

Use when planning, building, designing, code review, refactor, fixing, improving, optimizing, enhancing, or checking UI/UX work. Covers product patterns, landing pages, chart choices, visual styles, palettes, typography, UX rules, and 9 stacks (React, Next.js, Vue, Svelte, SwiftUI, React Native, Flutter, Tailwind…

majiayu000/spellbook · 166 tokens

ui-design-system

Use when creating or maintaining UI design systems, design tokens, component documentation, responsive calculations, quality checks, or design-dev handoff materials.

majiayu000/spellbook · 32 tokens

ui-designer

Extract design systems from reference UI images and generate implementation-ready UI design prompts. Use when users provide UI screenshots/mockups and want to create consistent designs, generate design systems, or build MVP UIs matching reference aesthetics.

majiayu000/spellbook · 47 tokens

frontend-design

Create distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, or applications. Generates creative, polished code that avoids generic AI aesthetics.

MagicKidd/Rokid-agentic-workflow · 43 tokens

app-ui-design

Mobile app UI design expert for iOS and Android. Use when designing app interfaces, creating design systems, ensuring accessibility, or following platform guidelines. Covers Material Design 3, Human Interface Guidelines, color theory, typography, and 2025 trends.

majiayu000/spellbook · 54 tokens

app-user-story-qa

End-to-end app feature inventory and user-story testing workflow with a canonical tracker. Use when the user asks to audit every feature, derive expected behavior from code, test user journeys, or explicitly fix and retest documented UX or logistical defects.

majiayu000/spellbook · 54 tokens