Github · GitHub Repository Radar
bergside awesome-design-skills
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
Stars
2
Forks
253
Watchers: 2,649
Language
—
License: MIT License
Repository Radar Score
29 / 100
Growth
- 7d
- +0
- 30d
- +0
- %
- 0.0%
Not enough metric snapshots yet to chart growth for this repository.
Last observed: 4 days ago
Score breakdown
- popularity 20
- growth 0
- activity 55
- freshness 100
- community 22
Need help integrating this stack?
Our team builds with modern open-source stacks. Tell us what you are shipping.
Get a quote →
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.mdfor AI-agent instructions (tokens, component rules, accessibility constraints, quality gates)DESIGN.mdfor human-readable design intent, rationale, and implementation notes
Preview all design skills on TypeUI
![]() Agentic npx typeui.sh pull agentic
|
![]() Ant npx typeui.sh pull ant
|
![]() Roku npx typeui.sh pull roku
|
![]() Artistic npx typeui.sh pull artistic
|
![]() Bento npx typeui.sh pull bento
|
![]() Bold npx typeui.sh pull bold
|
![]() Brutalism npx typeui.sh pull brutalism
|
![]() Cafe npx typeui.sh pull cafe
|
![]() Claymorphism npx typeui.sh pull claymorphism
|
![]() Claude npx typeui.sh pull claude
|
![]() Clean npx typeui.sh pull clean
|
![]() Codex npx typeui.sh pull codex
|
![]() Colorful npx typeui.sh pull colorful
|
![]() Contemporary npx typeui.sh pull contemporary
|
![]() Corporate npx typeui.sh pull corporate
|
![]() Cosmic npx typeui.sh pull cosmic
|
![]() Creative npx typeui.sh pull creative
|
![]() Enterprise npx typeui.sh pull enterprise
|
![]() Dithered npx typeui.sh pull dithered
|
![]() Doodle npx typeui.sh pull doodle
|
![]() Dramatic npx typeui.sh pull dramatic
|
![]() Editorial npx typeui.sh pull editorial
|
![]() Square npx typeui.sh pull square
|
![]() Pulse npx typeui.sh pull pulse
|
![]() Stitch npx typeui.sh pull stitch
|
![]() Expressive npx typeui.sh pull expressive
|
![]() Fantasy npx typeui.sh pull fantasy
|
![]() Fiction npx typeui.sh pull fiction
|
![]() Flat npx typeui.sh pull flat
|
![]() Friendly npx typeui.sh pull friendly
|
![]() Futuristic npx typeui.sh pull futuristic
|
![]() Glassmorphism npx typeui.sh pull glassmorphism
|
![]() Gradient npx typeui.sh pull gradient
|
![]() Immersive npx typeui.sh pull immersive
|
![]() Impeccable npx typeui.sh pull impeccable
|
![]() Levels npx typeui.sh pull levels
|
![]() Lingo npx typeui.sh pull lingo
|
![]() Power npx typeui.sh pull power
|
![]() Material npx typeui.sh pull material
|
![]() Matrix npx typeui.sh pull matrix
|
![]() Minimal npx typeui.sh pull minimal
|
![]() Modern npx typeui.sh pull modern
|
![]() Mono npx typeui.sh pull mono
|
![]() Neon npx typeui.sh pull neon
|
![]() Neobrutalism npx typeui.sh pull neobrutalism
|
![]() Neumorphism npx typeui.sh pull neumorphism
|
![]() Pacman npx typeui.sh pull pacman
|
![]() Paper npx typeui.sh pull paper
|
![]() Perspective npx typeui.sh pull perspective
|
![]() Premium npx typeui.sh pull premium
|
![]() Professional npx typeui.sh pull professional
|
![]() Basic npx typeui.sh pull basic
|
![]() Refined npx typeui.sh pull refined
|
![]() Retro npx typeui.sh pull retro
|
![]() Riso npx typeui.sh pull riso
|
![]() Sega npx typeui.sh pull sega
|
![]() Shadcn npx typeui.sh pull shadcn
|
![]() Geometric npx typeui.sh pull geometric
|
![]() Sketch npx typeui.sh pull sketch
|
![]() Skeumorphism npx typeui.sh pull skeumorphism
|
![]() Sleek npx typeui.sh pull sleek
|
![]() Spacious npx typeui.sh pull spacious
|
![]() Storytelling npx typeui.sh pull storytelling
|
![]() Terracotta npx typeui.sh pull terracotta
|
![]() Tetris npx typeui.sh pull tetris
|
![]() Vibrant npx typeui.sh pull vibrant
|
![]() Vintage npx typeui.sh pull vintage
|
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 glassmorphismOr browse all available skills interactively:
npx typeui.sh listA 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.
Use the TypeUI 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.
Target specific agentic tools when pulling:
npx typeui.sh pull glassmorphism -p cursor,claudeUse --dry-run to see what would be written without making changes:
npx typeui.sh pull glassmorphism --dry-runList all available skills with preview links, then pull one:
npx typeui.sh listRun the interactive prompts to create your own design system skill:
npx typeui.sh generateEach 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.
Contributions are welcome! If you'd like to add a new design skill to the registry:
- Create a new folder under
skills/with your slug name - Add a
SKILL.mdfile following the existing format - Add a companion
DESIGN.mdfile in the same folder - Add an entry to
skills/index.json - 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.
MIT License © Built and maintained by Bergside.
A huge thank you to the companies supporting our open-source work.
Skybridge |
Want to see your logo here? Become a sponsor.
Top contributors
Repository Radar analysis
Deterministic insights derived from public metadata and our observations — not personal testing or reviews.
Why this repository is interesting
- Listed in our discovery index with public GitHub metadata for analysis.
Who should use it
- Teams exploring AI tooling, agents, or ML infrastructure
Potential use cases
- Prototype AI/agent workflows or study reference architectures
Strengths
- README present in our index
- Declared license: MIT License
Limitations / considerations
- Insights are derived from public metadata and our observations — not a substitute for code review
What to watch
- Radar Score is modest — dig into activity and docs before committing
Source: GitHub (public metadata) + Repository Radar analysis. We do not claim ownership of third-party repositories.
Similar repositories
openclaw/openclaw
★ 388,845 · TypeScript · radar 67
n8n-io/n8n
★ 203,331 · TypeScript · radar 67
jaywcjlove/awesome-mac
★ 112,382 · Swift · radar 67
browser-use/browser-use
★ 112,172 · Python · radar 67
supabase/supabase
★ 108,802 · TypeScript · radar 67
google-gemini/gemini-cli
★ 106,800 · TypeScript · radar 67


































































