AI 设计智能工具包 - 为 AI 编程助手提供 UI/UX 设计知识库,包含 57 种风格、95 个配色方案和 98 条最佳实践
Go to file
Viet Tran 6a220478a2
refactor: remove duplicate scripts/data from .agent workflow (#3)
The .agent/workflows/ui-ux-pro-max.md already references .shared/ui-ux-pro-max/
so the local scripts/ and data/ folders were redundant.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-authored-by: Claude <noreply@anthropic.com>
2025-12-02 15:46:14 +07:00
.agent/workflows refactor: remove duplicate scripts/data from .agent workflow (#3) 2025-12-02 15:46:14 +07:00
.claude/skills/ui-ux-pro-max refactor: simplify search engine and remove redundant code (#2) 2025-12-01 10:24:53 +07:00
.cursor/commands feat: introduce UI/UX Pro Max skill with comprehensive guidelines, data, and search functionality across various tech stacks. 2025-11-30 18:46:26 +07:00
.shared/ui-ux-pro-max refactor: simplify search engine and remove redundant code (#2) 2025-12-01 10:24:53 +07:00
.windsurf/workflows feat: introduce UI/UX Pro Max skill with comprehensive guidelines, data, and search functionality across various tech stacks. 2025-11-30 18:46:26 +07:00
.gitignore feat: introduce UI/UX Pro Max skill with comprehensive guidelines, data, and search functionality across various tech stacks. 2025-11-30 18:46:26 +07:00
CLAUDE.md feat: introduce UI/UX Pro Max skill with comprehensive guidelines, data, and search functionality across various tech stacks. 2025-11-30 18:46:26 +07:00
README.md feat: rebrand project from Antigravity Kit to UI UX Pro Max and update documentation to reflect skill-focused positioning 2025-11-30 20:20:22 +07:00

README.md

UI UX Pro Max UI SKILL

An AI skill that provides design intelligence for building professional UI/UX across multiple platforms and frameworks.

Overview

UI UX Pro Max is a searchable database of UI styles, color palettes, font pairings, chart types, product recommendations, UX guidelines, and stack-specific best practices. It's designed to work as a skill/workflow for AI coding assistants (Claude, Windsurf, Cursor, etc.).

Features

  • 50+ UI Styles - Glassmorphism, Claymorphism, Minimalism, Brutalism, Neumorphism, Bento Grid, Dark Mode, and more
  • 21 Color Palettes - Industry-specific palettes for SaaS, E-commerce, Healthcare, Fintech, Beauty, etc.
  • 50 Font Pairings - Curated typography combinations with Google Fonts imports
  • 20+ Chart Types - Recommendations for dashboards and analytics
  • 8 Tech Stacks - React, Next.js, Vue, Svelte, SwiftUI, React Native, Flutter, HTML+Tailwind
  • UX Guidelines - Best practices, anti-patterns, and accessibility rules

Project Structure

ui-ux-pro-max/
├── .claude/skills/ui-ux-pro-max/    # Claude Code skill
│   ├── SKILL.md                      # Skill definition
│   ├── scripts/                      # Search tools
│   │   ├── search.py                 # Main search script
│   │   └── core.py                   # Core search logic
│   └── data/                         # Design database
│       ├── styles.csv                # UI styles
│       ├── colors.csv                # Color palettes
│       ├── typography.csv            # Font pairings
│       ├── charts.csv                # Chart types
│       ├── products.csv              # Product recommendations
│       ├── landing.csv               # Landing page structures
│       ├── ux-guidelines.csv         # UX best practices
│       ├── prompts.csv               # AI prompts
│       └── stacks/                   # Stack-specific guidelines
│           ├── html-tailwind.csv
│           ├── react.csv
│           ├── nextjs.csv
│           ├── vue.csv
│           ├── svelte.csv
│           ├── swiftui.csv
│           ├── react-native.csv
│           └── flutter.csv
├── .windsurf/workflows/              # Windsurf workflow
│   └── ui-ux-pro-max.md
├── .agent/workflows/                 # Generic agent workflow
│   └── ui-ux-pro-max/
└── .shared/ui-ux-pro-max/            # Shared data

Prerequisites

  • Python 3.x

Installation

For Claude Code

The skill is automatically available in .claude/skills/ui-ux-pro-max/.

For Windsurf

Use the workflow via /ui-ux-pro-max slash command.

For Other Agents

Copy the workflow from .agent/workflows/ui-ux-pro-max/.

Usage

Search Command

python3 .claude/skills/ui-ux-pro-max/scripts/search.py "<keyword>" --domain <domain> [-n <max_results>]

Available Domains

Domain Use For Example Keywords
product Product type recommendations SaaS, e-commerce, portfolio
style UI styles, colors, effects glassmorphism, minimalism
typography Font pairings elegant, playful, professional
color Color palettes saas, healthcare, beauty
landing Page structure hero, testimonial, pricing
chart Chart types trend, comparison, funnel
ux Best practices animation, accessibility
prompt AI prompts (style name)

Available Stacks

Stack Focus
html-tailwind Tailwind utilities, responsive (DEFAULT)
react State, hooks, performance
nextjs SSR, routing, images
vue Composition API, Pinia
svelte Runes, stores, SvelteKit
swiftui Views, State, Navigation
react-native Components, Navigation
flutter Widgets, State, Layout

Example Workflow

# 1. Search product type
python3 .claude/skills/ui-ux-pro-max/scripts/search.py "SaaS dashboard" --domain product

# 2. Search style
python3 .claude/skills/ui-ux-pro-max/scripts/search.py "glassmorphism dark" --domain style

# 3. Search typography
python3 .claude/skills/ui-ux-pro-max/scripts/search.py "modern professional" --domain typography

# 4. Search color palette
python3 .claude/skills/ui-ux-pro-max/scripts/search.py "saas" --domain color

# 5. Search stack guidelines
python3 .claude/skills/ui-ux-pro-max/scripts/search.py "layout responsive" --stack html-tailwind

License

MIT