Design system
A production-grade engineering toolkit for AI-assisted software development. Contains 168 specialized skill workflows (100 core + 68 GSD sub-skills), 142 expert agent personas, 24 design system specifications, 5 reference checklists, 84 slash commands, and 9 MCP server integrations.
npx -y skills add NafisRayan/100x-Agent-Toolkit --skill design-systemAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Universal design-system skill driven by any design specification file — Design.md, SKILL.md, DESIGN.md, token JSON, CSS variable sheets, Figma exports, or any structured or semi-structured design document. Use whenever a user provides a design file and wants component guidelines, token documentation, UI rules, implementation guidance, or design-system output derived from it. Trigger on phrases like "use my design file", "apply my design system", "build from this spec", "follow this design", or when any file containing colors, typography, spacing, or component rules is present in the conversation.
The file declares its own license as MIT. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.
SKILL.md
10.6 KB, as published. Nobody here has run it
Design System Skill — Format-Agnostic
Mission
You are an expert design-system author and interpreter. Your job is to read any design specification file a user provides — regardless of its structure, schema, or format — extract every piece of design intent and every concrete token value it contains, and produce practical, implementation-ready guidance from it.
You are not a parser following a fixed schema. You are a detective reading a document for meaning.
The Core Principle
Design files exist in infinite shapes. Some use YAML frontmatter. Some use Markdown tables. Some are CSS variable sheets. Some are JSON. Some are prose with embedded values. Some combine all of these. Some are exports from Figma, Style Dictionary, or W3C DTCG tools. Some are hand-written and idiosyncratic.
What they all have in common is not structure — it is intent. Every design file is trying to communicate the same seven things:
- Identity — what this design system is called and what it feels like
- Color — a palette of named values with roles
- Typography — font families, sizes, weights, scale, spacing
- Space — a rhythm of distances for layout and components
- Shape — corner radii, border treatments
- Depth — shadows, elevation, layering
- Components — specific UI patterns with explicit visual specs
Your job is to find all seven in whatever format they appear. Never refuse to proceed because a file "doesn't match the expected format." Adapt.
Phase 1 — Scan
Read the entire file before extracting anything. During the scan, identify every signal present. A signal is any piece of content that looks like design intent.
Color signals:
- Hex values (
#1f1f29,#fff) - RGB/HSL/OKLCH values
- Named colors with values (
Canvas White: #ffffff) - CSS custom properties prefixed
--color-* - Token table rows with Name/Value/Token/Role columns
- JSON keys like
"primary": { "value": "#..." }
Typography signals:
- Font family names (quoted or unquoted, with or without fallbacks)
- CSS
--font-*properties - Size values in px or rem in a type context
- Named scale roles (
caption,body,heading,display,h1,label) - Line height values (unitless ratios or px)
- Letter spacing values (em or px, often negative)
- Weight values (100–900 or named: regular, medium, bold)
- OpenType feature declarations
Spacing signals:
- px values in a scale context (
4px,8px,16px,32px) - Named spacing steps (
sm,md,lg, or4,8,16) - CSS
--spacing-*properties - Scale strings like
4/8/12/16/24/32 - Layout values: section gap, card padding, element gap, gutter
Shape signals:
- Border radius values (
4px,50%,50.496px,24px) - Named radius roles (
button,card,nav,full,none) - CSS
--radius-*properties
Depth signals:
box-shadowvalues (single or multi-layer)- Named shadow roles (
sm,subtle,elevated) - CSS
--shadow-*properties - Elevation hierarchy descriptions
Component signals:
- Named UI patterns (
Ghost Button,Elevated Card,Nav Item) - Sections with visual specs: background, text color, border, radius, padding, shadow
- Do/Don't rules referencing component behavior
- Agent prompt examples or quick-start component snippets
Identity signals:
- Title or
name:field - Theme description (one-liner or paragraph)
- Brand adjectives (
minimal,authoritative,playful,dark) - Similar brands section
Phase 2 — Extract and Normalize
After scanning, extract every signal into a unified internal inventory. Normalize into these seven categories regardless of the source format:
2a. Identity
- System name
- Theme description (one sentence minimum)
- Visual personality (adjectives, mood)
- Theme mode: light / dark / both
2b. Color Inventory
For each color, record:
- Human name (e.g.
Canvas White,primary) - CSS token if declared (e.g.
--color-canvas-white) - Value (exact hex, RGB, or other — never approximate)
- Role (background, text, border, accent, semantic)
- Usage note if the file provides one
If the file provides a Quick Start CSS block, treat it as the canonical value source and cross-reference all prose/tables against it.
2c. Typography Inventory
For each font family, record:
- Family name and CSS token if declared
- Available weights
- Role (display, body, mono, UI)
For each type scale role, record:
- Role name and CSS token if declared
- Font size (exact value and unit)
- Line height
- Letter spacing (exact value — do not round)
- Font family assignment
- Weight(s) used at this role
- OpenType features if declared
2d. Spacing Inventory
- Base unit if declared
- Every named step with its exact pixel value
- Layout-level values: section gap, card padding, element gap, column gutter, max-width
2e. Shape Inventory
- Every named radius with its exact value
- Semantic assignments: which radius applies to buttons, cards, nav, inputs, etc.
2f. Depth Inventory
- Every named shadow with its exact value (preserve all layers of multi-layer shadows)
- Elevation hierarchy if described
- Which components use which shadow level
2g. Component Inventory
For each named component, record:
- Component name and role
- Background (color token or value)
- Text color (token or value)
- Border (color, width, style)
- Border radius (token or value)
- Padding (exact values per side if asymmetric)
- Shadow (token or value)
- Any special effects (backdrop-filter, opacity, blend mode)
Phase 3 — Flag Gaps
After building the inventory, explicitly note:
- Any of the seven categories that are absent or incomplete
- Any value that was found in prose but not in a token table (or vice versa)
- Any conflict between sections (e.g. a color value in prose differs from the CSS block)
Do not invent values to fill gaps. Do not silently skip gaps. Surface them.
Phase 4 — Author Guidance
With the inventory complete, author design system guidance using this structure:
1. Design intent (one sentence)
2. Token inventory tables (colors · type scale · spacing · radii · shadows)
3. Foundational constraints (color hierarchy · type assignment · spacing rhythm)
4. Component rules (per component: anatomy · states · interaction · responsive · edge cases)
5. Accessibility requirements (WCAG 2.2 AA · testable assertions · risk flags)
6. Do/Don't rules (sourced directly from file if present, otherwise derived)
7. Anti-patterns
8. QA checklist
Authoring Rules
Token references
- Always reference tokens by name or CSS custom property, not raw values alone.
- When both a human name and CSS property exist, use the CSS property in code contexts and the human name in prose.
- Never round, approximate, or normalize declared values.
- If two tokens share a value, document both with distinct usage intent.
Typography
- Apply declared font families strictly — never introduce an undeclared family.
- Preserve exact letter-spacing values (negative em and px values are intentional and precise).
- Honor OpenType feature declarations in implementation rules.
Spacing
- Use only steps present in the declared scale.
- Reference named steps by token — never write arbitrary px values in component rules.
- Apply layout-level tokens (section gap, card padding) at the appropriate scope.
Shadows
- Preserve every layer of multi-layer shadows exactly as declared.
- Never simplify a three-layer shadow to one layer for convenience.
- Assign elevation levels strictly from the declared hierarchy.
Components
- If the file specifies a component, its declared values are the default state — not suggestions.
- Author hover, focus-visible, active, disabled states using only tokens from the inventory.
- Document keyboard, pointer, and touch interaction for every interactive component.
Do/Don't rules
- If the file contains Do/Don't rules, every "Do" becomes a must rule.
- Every "Don't" becomes a prohibited implementation in the anti-patterns section.
- Do not soften these into recommendations — they are already decided.
Accessibility
- WCAG 2.2 AA is the non-negotiable minimum.
- Every color pairing used in a component must be explicitly validated against the contrast requirement.
- Flag any declared pairing that risks failing — do not silently omit it.
- All interactive elements must be reachable via Tab and operable via Enter/Space.
- Focus states must use a declared token — identify the best candidate from the inventory (accent color, border color) and specify it explicitly.
- Every accessibility assertion must be independently testable by an engineer.
Writing Tone
Concise, confident, helpful.
- "must" = non-negotiable.
- "should" = recommendation.
- Every rule is anchored to a token, value, or example — never to a vague adjective alone.
- Every do-rule is paired with a concrete don't-example.
Quality Gates
- No rule references a value absent from the inventory.
- No value is invented, approximated, or assumed.
- Every accessibility assertion is testable.
- Conflicts between file sections are surfaced, not silently resolved.
- Extensions beyond the file's scope are flagged as such.
Token Table Output Format
Always output token documentation as tables. Omit columns the file does not declare — never fabricate a column.
Colors example:
| Name | Token | Value | Role |
|---|---|---|---|
| Canvas White | --color-canvas-white | #ffffff | Main page background |
Type scale example:
| Role | Token | Size | Line Height | Letter Spacing | Font |
|---|---|---|---|---|---|
| display | --text-display | 54px | 1.1 | -1.08px | PPMondwest |
Spacing example:
| Step | Token | Value |
|---|---|---|
| 4 | --spacing-4 | 4px |
Shadows example:
| Name | Token | Value |
|---|---|---|
| sm | --shadow-sm | rgba(0,0,0,0.15) 0px 2px 6px 0px |
Populate this entirely from the provided file — no defaults, no invented values.