Awesome-omni-skill ui-ux
UI/UX design intelligence. Activated when: designing UI, building pages, creating components, choosing colors, picking fonts, reviewing UX, building dashboards, landing pages, web design, mobile design, accessibility review, dark mode, light mode. Styles, color palettes, font pairings, UX guidelines, chart types across 13 stacks. Always delivers a structured Changes Made summary.
git clone https://github.com/diegosouzapw/awesome-omni-skill
T=$(mktemp -d) && git clone --depth=1 https://github.com/diegosouzapw/awesome-omni-skill "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/design/ui-ux" ~/.claude/skills/diegosouzapw-awesome-omni-skill-ui-ux-220431 && rm -rf "$T"
skills/design/ui-ux/SKILL.mdUI/UX
Searchable design intelligence database for web and mobile applications. Generates complete design systems with style, color palette, typography, and UX guidelines. BM25 search engine across 13 technology stacks.
When to Activate
- User requests UI/UX work: design, build, create, implement, review, fix, improve
- User asks for color palettes, font pairings, or style recommendations
- User builds a landing page, dashboard, portfolio, or any web/mobile interface
- User mentions dark mode, accessibility, responsive design, or layout issues
- User asks to review or audit existing UI for quality issues
Rule Categories by Priority
| Priority | Category | Impact | Domain |
|---|---|---|---|
| 1 | Accessibility | CRITICAL | |
| 2 | Touch & Interaction | CRITICAL | |
| 3 | Performance | HIGH | |
| 4 | Layout & Responsive | HIGH | |
| 5 | Typography & Color | MEDIUM | , |
| 6 | Animation | MEDIUM | |
| 7 | Style Selection | MEDIUM | , |
| 8 | Charts & Data | LOW | |
Quick Reference
Accessibility (CRITICAL)
— Minimum 4.5:1 ratio for normal textcolor-contrast
— Visible focus rings on interactive elementsfocus-states
— Descriptive alt text for meaningful imagesalt-text
— aria-label for icon-only buttonsaria-labels
— Tab order matches visual orderkeyboard-nav
— Use label with for attributeform-labels
Touch & Interaction (CRITICAL)
— Minimum 44x44px touch targetstouch-target-size
— Use click/tap for primary interactionshover-vs-tap
— Disable button during async operationsloading-buttons
— Add cursor-pointer to clickable elementscursor-pointer
Performance (HIGH)
— Use WebP, srcset, lazy loadingimage-optimization
— Check prefers-reduced-motionreduced-motion
— Reserve space for async contentcontent-jumping
Layout & Responsive (HIGH)
— width=device-width initial-scale=1viewport-meta
— Minimum 16px body text on mobilereadable-font-size
— Ensure content fits viewport widthhorizontal-scroll
— Define z-index scale (10, 20, 30, 50)z-index-management
Prerequisites
python3 --version || python --version
If not installed — Windows:
winget install Python.Python.3.12 | macOS: brew install python3 | Linux: sudo apt install python3
Workflow
Progress
- Analyzed user requirements (product type, style, industry, stack)
- Generated design system via
--design-system - Supplemented with domain searches (if needed)
- Applied stack guidelines
- Implemented UI with design system values
- Ran Pre-Delivery Checklist
- Delivered Changes Made summary
Step 1: Analyze User Requirements
Extract from the user's request:
| Field | Extract |
|---|---|
| Product type | SaaS, e-commerce, portfolio, dashboard, landing page |
| Style keywords | minimal, playful, professional, elegant, dark mode |
| Industry | healthcare, fintech, gaming, education, beauty |
| Stack | React, Vue, Next.js — default to |
Step 2: Generate Design System (REQUIRED)
Always start with
to get comprehensive recommendations with reasoning:--design-system
python3 skills/ui-ux/scripts/search.py "<product_type> <industry> <keywords>" --design-system [-p "Project Name"]
This command:
- Searches 5 domains in parallel (product, style, color, landing, typography)
- Applies reasoning rules from
to select best matchesui-reasoning.csv - Returns complete design system: pattern, style, colors, typography, effects
- Includes anti-patterns to avoid
Example:
python3 skills/ui-ux/scripts/search.py "beauty spa wellness service" --design-system -p "Serenity Spa"
Step 2b: Persist Design System (Optional)
Save for hierarchical retrieval across sessions with
--persist:
python3 skills/ui-ux/scripts/search.py "<query>" --design-system --persist -p "Project Name"
Creates
design-system/MASTER.md (source of truth) and design-system/pages/ for overrides.
With page override: Add
--page "dashboard" to create page-specific deviations.
Retrieval rule: Check
pages/<page>.md first → if exists, overrides Master → otherwise use Master exclusively.
Step 3: Supplement with Detailed Searches
After the design system, use domain searches for additional detail:
python3 skills/ui-ux/scripts/search.py "<keyword>" --domain <domain> [-n <max_results>]
| Need | Domain | Example |
|---|---|---|
| More style options | | |
| Chart recommendations | | |
| UX best practices | | |
| Alternative fonts | | |
| Landing structure | | |
Step 4: Stack Guidelines (Default: html-tailwind)
python3 skills/ui-ux/scripts/search.py "<keyword>" --stack html-tailwind
Available:
html-tailwind, react, nextjs, vue, svelte, swiftui, react-native, flutter, shadcn, jetpack-compose
Search Reference
Domains
| Domain | Use For | Example Keywords |
|---|---|---|
| Product type recommendations | SaaS, portfolio, healthcare |
| UI styles, colors, effects | glassmorphism, dark mode, brutalism |
| Font pairings, Google Fonts | elegant, playful, modern |
| Color palettes by product type | saas, ecommerce, fintech |
| Page structure, CTA strategies | hero, testimonial, pricing |
| Chart types, library recs | trend, comparison, funnel |
| Best practices, anti-patterns | animation, accessibility, z-index |
| React/Next.js performance | suspense, memo, rerender |
| Web interface guidelines | aria, focus, semantic |
Output Formats
# ASCII box (default) python3 skills/ui-ux/scripts/search.py "fintech crypto" --design-system # Markdown python3 skills/ui-ux/scripts/search.py "fintech crypto" --design-system -f markdown
Constraints
- Do not use emoji as UI icons — always use SVG icons (Heroicons, Lucide, Simple Icons)
- Do not skip Step 2 (design system generation) — it's required before implementing any UI
- Do not use
transforms for hover states — they cause layout shift; use color/opacity insteadscale - Do not hardcode colors — always derive from the generated design system palette
- Do not leave interactive elements without
cursor-pointer - Do not ignore
for animationsprefers-reduced-motion
Example
Input: "Build a landing page for a luxury spa brand" Workflow:
python3 skills/ui-ux/scripts/search.py "luxury spa wellness service" --design-system -p "Serenity Spa"
Output: Design system with elegant/organic style, warm muted palette (sage, cream, rose gold), Cormorant Garamond + Montserrat typography, subtle fade animations, and anti-patterns to avoid (no neon colors, no aggressive CTAs).
Common Rules for Professional UI
Icons & Visual Elements
| Do | Don't |
|---|---|
| Use SVG icons (Heroicons, Lucide, Simple Icons) | Use emojis 🎨 🚀 as UI icons |
| Use color/opacity transitions on hover | Use scale transforms that shift layout |
| Research official SVG from Simple Icons | Guess or use incorrect logo paths |
| Use fixed viewBox (24x24) with w-6 h-6 | Mix different icon sizes randomly |
Interaction & Cursor
| Do | Don't |
|---|---|
on all clickable elements | Default cursor on interactive elements |
| Visual feedback on hover (color, shadow, border) | No indication element is interactive |
| Instant or too-slow transitions (>500ms) |
Light/Dark Mode Contrast
| Do | Don't |
|---|---|
or higher opacity in light mode | (too transparent) |
(slate-900) for light mode text | (slate-400) for body text |
in light mode | (invisible) |
Layout & Spacing
| Do | Don't |
|---|---|
floating navbar | Stick navbar to |
| Account for fixed navbar height | Let content hide behind fixed elements |
Consistent or | Mix different container widths |
Error Handling
If the search script fails:
- Verify Python is installed:
python3 --version || python --version - Check the script path is correct:
ls skills/ui-ux/scripts/ - Run with help:
python3 skills/ui-ux/scripts/search.py --help - Verify data files exist:
ls skills/ui-ux/data/ - If on Windows, try
instead ofpythonpython3 - Re-read the relevant section of this SKILL.md
Pre-Delivery Checklist
Visual Quality
- No emojis used as icons (use SVG instead)
- All icons from consistent icon set (Heroicons/Lucide)
- Brand logos correct (verified from Simple Icons)
- Hover states don't cause layout shift
Interaction
- All clickable elements have
cursor-pointer - Hover states provide clear visual feedback
- Transitions are smooth (150-300ms)
- Focus states visible for keyboard navigation
Light/Dark Mode
- Light mode text has sufficient contrast (4.5:1 minimum)
- Glass/transparent elements visible in light mode
- Borders visible in both modes
Layout
- Floating elements have proper spacing from edges
- No content hidden behind fixed navbars
- Responsive at 375px, 768px, 1024px, 1440px
- No horizontal scroll on mobile
Accessibility
- All images have alt text
- Form inputs have labels
- Color is not the only indicator
-
respectedprefers-reduced-motion
Changes Made Summary
- Changes Made summary delivered to user (see below)
Changes Made (MANDATORY)
[!CAUTION] This is NON-NEGOTIABLE. Every single UI/UX task MUST end with a "Changes Made" summary. This is the LAST thing you do — present it before any other closing remarks. Never skip this step, even for small changes.
After completing any UI/UX work, present the user with a structured summary:
## ✅ Changes Made | # | File | Action | Detail | |---|------|--------|--------| | 1 | `index.html` | Created / Modified | <what was done> | | 2 | `styles.css` | Created / Modified | <what was done> | | 3 | `components/nav.html` | Created | <what was done> | **Summary:** <1-2 sentence recap of the overall change>
Rules:
- List every file created, modified, or deleted
- Action column:
,Created
,Modified
,Deleted
, orMovedRenamed - Detail column must be specific — not "updated file" but "added responsive navbar with dark mode toggle"
- End with a 1-2 sentence Summary of the overall impact
Worked example:
## ✅ Changes Made | # | File | Action | Detail | |---|------|--------|--------| | 1 | `index.html` | Modified | Added floating navbar with glassmorphism effect, hero section with gradient overlay, testimonials grid | | 2 | `styles.css` | Modified | Implemented design system tokens (--primary, --accent), added dark mode media query, responsive breakpoints at 375/768/1024px | | 3 | `assets/hero-bg.webp` | Created | Generated hero background image with WebP format | **Summary:** Built a luxury spa landing page using the Serenity Spa design system with dark mode support and responsive layout.