From ui-design-guideline-creator
Create project-specific UI design guideline as a Claude Code Skill. Use when the user says "UI design guideline", "design system", "style guide", or wants to create design guidelines for their project.
How this skill is triggered — by the user, by Claude, or both
Slash command
/ui-design-guideline-creator:ui-design-guidelineThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
This skill creates a project-specific UI design guideline as a **Claude Code Skill** and registers it to `.claude/skills/design-guideline/`.
This skill creates a project-specific UI design guideline as a Claude Code Skill and registers it to .claude/skills/design-guideline/.
Generated skill will be placed in the following structure:
.claude/
└── skills/
└── design-guideline/
├── SKILL.md # Main (max 500 lines)
└── references/
├── colors.md # Color system
├── typography.md # Typography
├── spacing.md # Spacing
├── components.md # Components
└── tokens.json # Design tokens
First, check if .claude/skills/design-guideline/ already exists:
ls -la .claude/skills/design-guideline/
If exists: Ask user using AskUserQuestion:
If user selects "Cancel", stop execution.
Ask the following using AskUserQuestion tool:
mkdir -p .claude/skills/design-guideline/references
Generate the following files in order:
Refer to templates/skill-template.md for generation.
Important: Keep under 500 lines. Link to references/ for details.
---
name: design-guideline
description: UI design guideline for {PROJECT_NAME}. Use when developing UI components, styling, or making design decisions.
---
Refer to references/color-systems.md for generation.
Refer to references/typography-scales.md for generation.
Refer to references/spacing-systems.md for generation.
Refer to references/component-patterns.md for generation.
20+ component specifications (Button, Input, Card, Modal, etc.)
Refer to templates/design-tokens.json for generation.
After generation, report to the user:
Always refer to these during generation:
npx claudepluginhub titabash/claude-plugins --plugin ui-design-guideline-creatorIntroduction to the design system skills plugin. Use when first installing the plugin, exploring available skills, or planning a design system implementation.
Guides UI design to avoid AI-generic patterns using project design systems, exact tokens, and component-by-component approach. For prototypes, reviews, and design systems.
Audits, refines, and builds polished UI with real-world design patterns, brand-appropriate palettes, and anti-pattern detection. Use when frontend visual work needs to look less generic or 'AI-made'.