Skip to content
 
 

Latest commit

 

History

38 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 

Repository files navigation

Awesome Design Skills Awesome

og-awesome-design-skills

A curated registry of 67 design system skill files for AI-powered agentic tools like Claude Code, Cursor, Codex, and others. Pull any skill into your project with a single command.

Each skill now ships as a folder with:

  • SKILL.md for AI-agent instructions (tokens, component rules, accessibility constraints, quality gates)
  • DESIGN.md for human-readable design intent, rationale, and implementation notes

Preview all design skills on Type UI

Quick Start

Pull any design skill directly into your project using the TypeUI CLI:

npx typeui.sh pull <slug>

For example, to pull the Glassmorphism design skill:

npx typeui.sh pull glassmorphism

Or browse all available skills interactively:

npx typeui.sh list

What is a Design Skill?

A design skill is a folder containing SKILL.md and DESIGN.md.

SKILL.md acts as the instruction source for AI agents and LLMs. It contains:

  • Brand & mission — the design philosophy and visual identity
  • Style foundations — typography scale, color palette, spacing system
  • Component families — buttons, inputs, cards, modals, navigation, and more
  • Accessibility rules — WCAG 2.2 AA compliance, keyboard-first interactions
  • Writing tone — content and voice guidelines
  • Do/Don't rules — explicit patterns and anti-patterns
  • Quality gates — testable acceptance criteria for code review

DESIGN.md is a companion document for human readers and maintainers. It captures:

  • Design overview — concise summary of the visual direction
  • Rationale and references — context for why patterns/tokens exist
  • Maintenance notes — guidance for keeping design decisions aligned over time

When an AI agent reads a skill file, it follows the SKILL.md guidelines to generate UI code that is consistent, accessible, and true to the design system.

Design Skills

Browse and preview all design skills at typeui.sh/design-skills before pulling them into your project.

Total skills: 67

Skill Thumbnail Preview Pull Command
Agentic Agentic thumbnail Preview npx typeui.sh pull agentic
Ant Ant thumbnail Preview npx typeui.sh pull ant
Application Application thumbnail Preview npx typeui.sh pull application
Artistic Artistic thumbnail Preview npx typeui.sh pull artistic
Bento Bento thumbnail Preview npx typeui.sh pull bento
Bold Bold thumbnail Preview npx typeui.sh pull bold
Brutalism Brutalism thumbnail Preview npx typeui.sh pull brutalism
Cafe Cafe thumbnail Preview npx typeui.sh pull cafe
Claymorphism Claymorphism thumbnail Preview npx typeui.sh pull claymorphism
Claude Claude thumbnail Preview npx typeui.sh pull claude
Clean Clean thumbnail Preview npx typeui.sh pull clean
Codex Codex thumbnail Preview npx typeui.sh pull codex
Colorful Colorful thumbnail Preview npx typeui.sh pull colorful
Contemporary Contemporary thumbnail Preview npx typeui.sh pull contemporary
Corporate Corporate thumbnail Preview npx typeui.sh pull corporate
Cosmic Cosmic thumbnail Preview npx typeui.sh pull cosmic
Creative Creative thumbnail Preview npx typeui.sh pull creative
Dashboard Dashboard thumbnail Preview npx typeui.sh pull dashboard
Dithered Dithered thumbnail Preview npx typeui.sh pull dithered
Doodle Doodle thumbnail Preview npx typeui.sh pull doodle
Dramatic Dramatic thumbnail Preview npx typeui.sh pull dramatic
Editorial Editorial thumbnail Preview npx typeui.sh pull editorial
Elegant Elegant thumbnail Preview npx typeui.sh pull elegant
Energetic Energetic thumbnail Preview npx typeui.sh pull energetic
Enterprise Enterprise thumbnail Preview npx typeui.sh pull enterprise
Expressive Expressive thumbnail Preview npx typeui.sh pull expressive
Fantasy Fantasy thumbnail Preview npx typeui.sh pull fantasy
Fiction Fiction thumbnail Preview npx typeui.sh pull fiction
Flat Flat thumbnail Preview npx typeui.sh pull flat
Friendly Friendly thumbnail Preview npx typeui.sh pull friendly
Futuristic Futuristic thumbnail Preview npx typeui.sh pull futuristic
Glassmorphism Glassmorphism thumbnail Preview npx typeui.sh pull glassmorphism
Gradient Gradient thumbnail Preview npx typeui.sh pull gradient
Immersive Immersive thumbnail Preview npx typeui.sh pull immersive
Impeccable Impeccable thumbnail Preview npx typeui.sh pull impeccable
Levels Levels thumbnail Preview npx typeui.sh pull levels
Lingo Lingo thumbnail Preview npx typeui.sh pull lingo
Luxury Luxury thumbnail Preview npx typeui.sh pull luxury
Material Material thumbnail Preview npx typeui.sh pull material
Matrix Matrix thumbnail Preview npx typeui.sh pull matrix
Minimal Minimal thumbnail Preview npx typeui.sh pull minimal
Modern Modern thumbnail Preview npx typeui.sh pull modern
Mono Mono thumbnail Preview npx typeui.sh pull mono
Neon Neon thumbnail Preview npx typeui.sh pull neon
Neobrutalism Neobrutalism thumbnail Preview npx typeui.sh pull neobrutalism
Neumorphism Neumorphism thumbnail Preview npx typeui.sh pull neumorphism
Pacman Pacman thumbnail Preview npx typeui.sh pull pacman
Paper Paper thumbnail Preview npx typeui.sh pull paper
Perspective Perspective thumbnail Preview npx typeui.sh pull perspective
Premium Premium thumbnail Preview npx typeui.sh pull premium
Professional Professional thumbnail Preview npx typeui.sh pull professional
Publication Publication thumbnail Preview npx typeui.sh pull publication
Refined Refined thumbnail Preview npx typeui.sh pull refined
Retro Retro thumbnail Preview npx typeui.sh pull retro
Riso Riso thumbnail Preview npx typeui.sh pull riso
Sega Sega thumbnail Preview npx typeui.sh pull sega
Shadcn Shadcn thumbnail Preview npx typeui.sh pull shadcn
Simple Simple thumbnail Preview npx typeui.sh pull simple
Sketch Sketch thumbnail Preview npx typeui.sh pull sketch
Skeumorphism Skeumorphism thumbnail Preview npx typeui.sh pull skeumorphism
Sleek Sleek thumbnail Preview npx typeui.sh pull sleek
Spacious Spacious thumbnail Preview npx typeui.sh pull spacious
Storytelling Storytelling thumbnail Preview npx typeui.sh pull storytelling
Terracotta Terracotta thumbnail Preview npx typeui.sh pull terracotta
Tetris Tetris thumbnail Preview npx typeui.sh pull tetris
Vibrant Vibrant thumbnail Preview npx typeui.sh pull vibrant
Vintage Vintage thumbnail Preview npx typeui.sh pull vintage

Usage

Pull a skill into your project

Use the typeui.sh CLI to pull any skill by its slug:

npx typeui.sh pull <slug>

The CLI will fetch the SKILL.md file from this registry and write it to your configured provider paths (e.g., .cursor/skills/, .claude/, etc.). The companion DESIGN.md remains in this repo alongside each skill for reference and maintenance.

Specify providers

Target specific agentic tools when pulling:

npx typeui.sh pull glassmorphism -p cursor,claude

Preview before writing

Use --dry-run to see what would be written without making changes:

npx typeui.sh pull glassmorphism --dry-run

Browse and pull interactively

List all available skills with preview links, then pull one:

npx typeui.sh list

Generate a custom skill

Run the interactive prompts to create your own design system skill:

npx typeui.sh generate

Registry Structure

Each skill lives in its own folder under skills/:

skills/
├── index.json          # Slug-keyed map for fast CLI lookups
├── glassmorphism/
│   ├── SKILL.md        # AI-agent instruction file
│   └── DESIGN.md       # Human-readable design companion
├── brutalism/
│   ├── SKILL.md
│   └── DESIGN.md
├── minimal/
│   ├── SKILL.md
│   └── DESIGN.md
└── ...

The index.json file maps each slug to its skill path:

{
  "glassmorphism": {
    "slug": "glassmorphism",
    "name": "Glassmorphism",
    "skillPath": "skills/glassmorphism/SKILL.md"
  }
}

When you run npx typeui.sh pull <slug>, the CLI reads this index, resolves the skill path, and fetches the corresponding SKILL.md file. DESIGN.md is stored next to each skill for human-facing documentation.

Contributing

Contributions are welcome! If you'd like to add a new design skill to the registry:

  1. Create a new folder under skills/ with your slug name
  2. Add a SKILL.md file following the existing format
  3. Add a companion DESIGN.md file in the same folder
  4. Add an entry to skills/index.json
  5. Submit a pull request

Please ensure your skill file includes all required sections: mission, brand, style foundations, component families, accessibility rules, writing tone, do/don't rules, and quality gates.

License

MIT License © Built and maintained by Bergside.

About

List of 67 awesome DESIGN.md and SKILL.md design skill files for agentic tools like Claude Design, Google Stitch, Codex, Cursor, and other AI tools

Resources

Stars

0 stars

Watchers

0 watching

Forks

Releases

Packages

Contributors