UI/UX Pro Max - Design Intelligence
Searchable database of UI styles, color palettes, font pairings, chart types, product recommendations, UX guidelines, and stack-specific best practices.
Prerequisites
Check if Python is installed:
python3 --version || python --version
If not installed: brew install python3 (macOS), apt install python3 (Ubuntu), winget install Python.Python.3.12 (Windows)
How to Use This Skill
When user requests UI/UX work (design, build, create, implement, review, fix, improve), follow this workflow:
Step 1: Analyze User Requirements
Extract key information from user request:
- Product type: SaaS, e-commerce, portfolio, dashboard, landing page, etc.
- Style keywords: minimal, playful, professional, elegant, dark mode, etc.
- Industry: healthcare, fintech, gaming, education, etc.
- Stack: React, Vue, Next.js, or default to
html-tailwind
Step 2: Search Relevant Domains
Use search.py multiple times to gather comprehensive information:
python3 "$HOME/.claude/skills/ui-ux-pro-max/scripts/search.py" "<keyword>" --domain <domain> [-n <max_results>]
Quick domain reference:
product - Style recommendations by product type
style - Detailed style guide (colors, effects)
typography - Font pairings with Google Fonts
color - Color palettes
landing - Page structure, CTA strategies
chart - Chart types and libraries
ux - Best practices, anti-patterns
For full domain details, see reference/search-domains.md
Step 3: Stack Guidelines
If user doesn't specify a stack, default to html-tailwind.
python3 "$HOME/.claude/skills/ui-ux-pro-max/scripts/search.py" "<keyword>" --stack html-tailwind
Available stacks: html-tailwind, react, nextjs, vue, svelte, swiftui, react-native, flutter
Example Workflow
User request: "Build a landing page for a skincare service"
# 1. Product type
python3 "$HOME/.claude/skills/ui-ux-pro-max/scripts/search.py" "beauty spa wellness service" --domain product
# 2. Style (based on industry)
python3 "$HOME/.claude/skills/ui-ux-pro-max/scripts/search.py" "elegant minimal soft" --domain style
# 3. Typography
python3 "$HOME/.claude/skills/ui-ux-pro-max/scripts/search.py" "elegant luxury" --domain typography
# 4. Color palette
python3 "$HOME/.claude/skills/ui-ux-pro-max/scripts/search.py" "beauty spa wellness" --domain color
# 5. Landing page structure
python3 "$HOME/.claude/skills/ui-ux-pro-max/scripts/search.py" "hero-centric social-proof" --domain landing
# 6. UX guidelines
python3 "$HOME/.claude/skills/ui-ux-pro-max/scripts/search.py" "animation accessibility" --domain ux
# 7. Stack guidelines (default)
python3 "$HOME/.claude/skills/ui-ux-pro-max/scripts/search.py" "layout responsive" --stack html-tailwind
Then: Synthesize all search results and implement the design.
Quick Rules
Icons: Use SVG (Heroicons, Lucide), never emojis as UI icons
Hover: Use color/opacity transitions, not scale transforms
Cursor: Add cursor-pointer to all clickable elements
Contrast: Light mode text minimum slate-600, body slate-900
Transitions: 150-300ms, never instant or >500ms
For complete rules and pre-delivery checklist, see reference/common-rules.md
1---2name: ui-ux-pro-max-463description: UI/UX design intelligence. 50 styles, 21 palettes, 50 font pairings, 20 charts, 8 stacks (React, Next.js, Vue, Svelte, SwiftUI, React Native, Flutter, Tailwind). Actions: plan, build, create, design, implement, review, fix, improve, optimize, enhance, refactor, check UI/UX code. Projects: website, landing page, dashboard, admin panel, e-commerce, SaaS, portfolio, blog, mobile app, .html, .tsx, .vue, .svelte. Elements: button, modal, navbar, sidebar, card, table, form, chart. Styles: glassmorphism, claymorphism, minimalism, brutalism, neumorphism, bento grid, dark mode, responsive, skeuomorphism, flat design. Topics: color palette, accessibility, animation, layout, typography, font pairing, spacing, hover, shadow, gradient.4---5
6# UI/UX Pro Max - Design Intelligence
7
8Searchable database of UI styles, color palettes, font pairings, chart types, product recommendations, UX guidelines, and stack-specific best practices.
9
10## Prerequisites
11
12Check if Python is installed:
13
14```bash
15python3 --version || python --version
16```
17
18If not installed: `brew install python3` (macOS), `apt install python3` (Ubuntu), `winget install Python.Python.3.12` (Windows)
19
20---
21
22## How to Use This Skill
23
24When user requests UI/UX work (design, build, create, implement, review, fix, improve), follow this workflow:
25
26### Step 1: Analyze User Requirements
27
28Extract key information from user request:
29- **Product type**: SaaS, e-commerce, portfolio, dashboard, landing page, etc.
30- **Style keywords**: minimal, playful, professional, elegant, dark mode, etc.
31- **Industry**: healthcare, fintech, gaming, education, etc.
32- **Stack**: React, Vue, Next.js, or default to `html-tailwind`
33
34### Step 2: Search Relevant Domains
35
36Use `search.py` multiple times to gather comprehensive information:
37
38```bash
39python3 "$HOME/.claude/skills/ui-ux-pro-max/scripts/search.py" "<keyword>" --domain <domain> [-n <max_results>]
40```
41
42**Quick domain reference:**
43- `product` - Style recommendations by product type
44- `style` - Detailed style guide (colors, effects)
45- `typography` - Font pairings with Google Fonts
46- `color` - Color palettes
47- `landing` - Page structure, CTA strategies
48- `chart` - Chart types and libraries
49- `ux` - Best practices, anti-patterns
50
51For full domain details, see [reference/search-domains.md](reference/search-domains.md)
52
53### Step 3: Stack Guidelines
54
55If user doesn't specify a stack, **default to `html-tailwind`**.
56
57```bash
58python3 "$HOME/.claude/skills/ui-ux-pro-max/scripts/search.py" "<keyword>" --stack html-tailwind
59```
60
61Available stacks: `html-tailwind`, `react`, `nextjs`, `vue`, `svelte`, `swiftui`, `react-native`, `flutter`
62
63---
64
65## Example Workflow
66
67**User request:** "Build a landing page for a skincare service"
68
69```bash
70# 1. Product type
71python3 "$HOME/.claude/skills/ui-ux-pro-max/scripts/search.py" "beauty spa wellness service" --domain product
72
73# 2. Style (based on industry)
74python3 "$HOME/.claude/skills/ui-ux-pro-max/scripts/search.py" "elegant minimal soft" --domain style
75
76# 3. Typography
77python3 "$HOME/.claude/skills/ui-ux-pro-max/scripts/search.py" "elegant luxury" --domain typography
78
79# 4. Color palette
80python3 "$HOME/.claude/skills/ui-ux-pro-max/scripts/search.py" "beauty spa wellness" --domain color
81
82# 5. Landing page structure
83python3 "$HOME/.claude/skills/ui-ux-pro-max/scripts/search.py" "hero-centric social-proof" --domain landing
84
85# 6. UX guidelines
86python3 "$HOME/.claude/skills/ui-ux-pro-max/scripts/search.py" "animation accessibility" --domain ux
87
88# 7. Stack guidelines (default)
89python3 "$HOME/.claude/skills/ui-ux-pro-max/scripts/search.py" "layout responsive" --stack html-tailwind
90```
91
92**Then:** Synthesize all search results and implement the design.
93
94---
95
96## Quick Rules
97
98**Icons:** Use SVG (Heroicons, Lucide), never emojis as UI icons
99**Hover:** Use color/opacity transitions, not scale transforms
100**Cursor:** Add `cursor-pointer` to all clickable elements
101**Contrast:** Light mode text minimum `slate-600`, body `slate-900`
102**Transitions:** 150-300ms, never instant or >500ms
103
104For complete rules and pre-delivery checklist, see [reference/common-rules.md](reference/common-rules.md)