重要前提
安装AI Skills的关键前提是:必须科学上网,且开启TUN模式,这一点至关重要,直接决定安装能否顺利完成,在此郑重提醒三遍:科学上网,科学上网,科学上网。查看完整安装教程 →
ui-ux-pro-max by duc01226/easyplatform
npx skills add https://github.com/duc01226/easyplatform --skill ui-ux-pro-max[IMPORTANT] 在开始前使用
TaskCreate将所有工作分解为小任务——包括每个文件读取任务。这可以防止因文件过长而丢失上下文。对于简单任务,AI 必须询问用户是否跳过。
目标: 提供可搜索的 UI/UX 设计智能——包含 50 种样式、21 种调色板、50 种字体配对、20 种图表、8 种技术栈。
工作流程:
search.py:产品、样式、字体、颜色、落地页、图表、UX关键规则:
cursor-pointer 和悬停反馈保持怀疑态度。运用批判性思维、顺序性思维。每个主张都需要可追溯的证据和置信度百分比(想法应超过 80%)。
可搜索的 UI 样式、调色板、字体配对、图表类型、产品推荐、UX 指南和特定技术栈最佳实践数据库。
广告位招租
在这里展示您的产品或服务
触达数万 AI 开发者,精准高效
检查是否安装了 Python:
python3 --version || python --version
如果未安装 Python,请根据用户的操作系统进行安装:
macOS:
brew install python3
Ubuntu/Debian:
sudo apt update && sudo apt install python3
Windows:
winget install Python.Python.3.12
当用户请求 UI/UX 工作(设计、构建、创建、实施、审查、修复、改进)时,请遵循此工作流程:
从用户请求中提取关键信息:
html-tailwind多次使用 search.py 以收集全面的信息。持续搜索直到获得足够的上下文。
python3 .claude/skills/ui-ux-pro-max/scripts/search.py "<keyword>" --domain <domain> [-n <max_results>]
推荐的搜索顺序:
如果用户未指定技术栈,默认为 html-tailwind。
python3 .claude/skills/ui-ux-pro-max/scripts/search.py "<keyword>" --stack html-tailwind
可用技术栈:html-tailwind, react, nextjs, vue, svelte, swiftui, react-native, flutter
| 领域 | 用途 | 示例关键词 |
|---|---|---|
product | 产品类型推荐 | SaaS, e-commerce, portfolio, healthcare, beauty, service |
style | UI 样式、颜色、效果 | glassmorphism, minimalism, dark mode, brutalism |
typography | 字体配对、Google Fonts | elegant, playful, professional, modern |
color | 按产品类型划分的调色板 | saas, ecommerce, healthcare, beauty, fintech, service |
landing | 页面结构、行动号召策略 | hero, hero-centric, testimonial, pricing, social-proof |
chart | 图表类型、库推荐 | trend, comparison, timeline, funnel, pie |
ux | 最佳实践、反面模式 | animation, accessibility, z-index, loading |
prompt | AI 提示词、CSS 关键词 | (样式名称) |
| 技术栈 | 侧重点 |
|---|---|
html-tailwind | Tailwind 工具类、响应式、无障碍访问 (默认) |
react | 状态、钩子、性能、模式 |
nextjs | SSR、路由、图片、API 路由 |
vue | 组合式 API、Pinia、Vue Router |
svelte | Runes、存储、SvelteKit |
swiftui | 视图、状态、导航、动画 |
react-native | 组件、导航、列表 |
flutter | 部件、状态、布局、主题 |
用户请求: "Làm landing page cho dịch vụ chăm sóc da chuyên nghiệp"
AI 应执行:
# 1. 搜索产品类型
python3 .claude/skills/ui-ux-pro-max/scripts/search.py "beauty spa wellness service" --domain product
# 2. 搜索样式(基于行业:美容、优雅)
python3 .claude/skills/ui-ux-pro-max/scripts/search.py "elegant minimal soft" --domain style
# 3. 搜索字体
python3 .claude/skills/ui-ux-pro-max/scripts/search.py "elegant luxury" --domain typography
# 4. 搜索调色板
python3 .claude/skills/ui-ux-pro-max/scripts/search.py "beauty spa wellness" --domain color
# 5. 搜索落地页结构
python3 .claude/skills/ui-ux-pro-max/scripts/search.py "hero-centric social-proof" --domain landing
# 6. 搜索 UX 指南
python3 .claude/skills/ui-ux-pro-max/scripts/search.py "animation" --domain ux
python3 .claude/skills/ui-ux-pro-max/scripts/search.py "accessibility" --domain ux
# 7. 搜索技术栈指南(默认:html-tailwind)
python3 .claude/skills/ui-ux-pro-max/scripts/search.py "layout responsive" --stack html-tailwind
然后: 综合所有搜索结果并实施设计。
这些是经常被忽视、导致 UI 看起来不专业的问题:
| 规则 | 应该做 | 不应该做 |
|---|---|---|
| 不要使用表情符号图标 | 使用 SVG 图标(Heroicons, Lucide, Simple Icons) | 使用 🎨 🚀 ⚙️ 等表情符号作为 UI 图标 |
| 稳定的悬停状态 | 在悬停时使用颜色/不透明度过渡 | 使用会导致布局偏移的缩放变换 |
| 正确的品牌标志 | 从 Simple Icons 研究官方 SVG | 猜测或使用不正确的标志路径 |
| 一致的图标尺寸 | 使用固定的 viewBox (24x24) 配合 w-6 h-6 | 随意混合不同尺寸的图标 |
| 规则 | 应该做 | 不应该做 |
|---|---|---|
| 光标指针 | 为所有可点击/可悬停的卡片添加 cursor-pointer | 在交互元素上保留默认光标 |
| 悬停反馈 | 提供视觉反馈(颜色、阴影、边框) | 没有指示元素是可交互的 |
| 平滑过渡 | 使用 transition-colors duration-200 | 状态瞬间变化或过慢 (>500ms) |
| 规则 | 应该做 | 不应该做 |
|---|---|---|
| 玻璃态卡片浅色模式 | 使用 bg-white/80 或更高不透明度 | 使用 bg-white/10(太透明) |
| 文本对比度浅色 | 使用 #0F172A (slate-900) 作为文本 | 使用 #94A3B8 (slate-400) 作为正文文本 |
| 柔和文本浅色 | 至少使用 #475569 (slate-600) | 使用 gray-400 或更浅的颜色 |
| 边框可见性 | 在浅色模式下使用 border-gray-200 | 使用 border-white/10(不可见) |
| 规则 | 应该做 | 不应该做 |
|---|---|---|
| 浮动导航栏 | 添加 top-4 left-4 right-4 间距 | 将导航栏固定在 top-0 left-0 right-0 |
| 内容内边距 | 考虑固定导航栏的高度 | 让内容隐藏在固定元素后面 |
| 一致的最大宽度 | 使用相同的 max-w-6xl 或 max-w-7xl | 混合使用不同的容器宽度 |
在交付 UI 代码前,请验证以下项目:
cursor-pointerprefers-reduced-motionfrontend-designinterface-design — 产品 UI(仪表板、管理面板、SaaS 应用)shadcn-tailwindux-designer重要任务规划说明(必须遵守)
每周安装次数
62
仓库
GitHub 星标数
6
首次出现
2026年1月24日
安全审计
安装于
gemini-cli59
opencode58
codex57
cursor57
github-copilot55
kimi-cli53
[IMPORTANT] Use
TaskCreateto break ALL work into small tasks BEFORE starting — including tasks for each file read. This prevents context loss from long files. For simple tasks, AI MUST ask user whether to skip.
Goal: Provide searchable UI/UX design intelligence -- 50 styles, 21 palettes, 50 font pairings, 20 charts, 8 stacks.
Workflow:
search.py across domains: product, style, typography, color, landing, chart, UXKey Rules:
cursor-pointer and hover feedbackBe skeptical. Apply critical thinking, sequential thinking. Every claim needs traced proof, confidence percentages (Idea should be more than 80%).
Searchable database of UI styles, color palettes, font pairings, chart types, product recommendations, UX guidelines, and stack-specific best practices.
Check if Python is installed:
python3 --version || python --version
If Python is not installed, install it based on user's OS:
macOS:
brew install python3
Ubuntu/Debian:
sudo apt update && sudo apt install python3
Windows:
winget install Python.Python.3.12
When user requests UI/UX work (design, build, create, implement, review, fix, improve), follow this workflow:
Extract key information from user request:
html-tailwindUse search.py multiple times to gather comprehensive information. Search until you have enough context.
python3 .claude/skills/ui-ux-pro-max/scripts/search.py "<keyword>" --domain <domain> [-n <max_results>]
Recommended search order:
If user doesn't specify a stack, default tohtml-tailwind.
python3 .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
| Domain | Use For | Example Keywords |
|---|---|---|
product | Product type recommendations | SaaS, e-commerce, portfolio, healthcare, beauty, service |
style | UI styles, colors, effects | glassmorphism, minimalism, dark mode, brutalism |
typography | Font pairings, Google Fonts | elegant, playful, professional, modern |
color | Color palettes by product type | saas, ecommerce, healthcare, beauty, fintech, service |
landing |
| Stack | Focus |
|---|---|
html-tailwind | Tailwind utilities, responsive, a11y (DEFAULT) |
react | State, hooks, performance, patterns |
nextjs | SSR, routing, images, API routes |
vue | Composition API, Pinia, Vue Router |
svelte | Runes, stores, SvelteKit |
swiftui | Views, State, Navigation, Animation |
User request: "Làm landing page cho dịch vụ chăm sóc da chuyên nghiệp"
AI should:
# 1. Search product type
python3 .claude/skills/ui-ux-pro-max/scripts/search.py "beauty spa wellness service" --domain product
# 2. Search style (based on industry: beauty, elegant)
python3 .claude/skills/ui-ux-pro-max/scripts/search.py "elegant minimal soft" --domain style
# 3. Search typography
python3 .claude/skills/ui-ux-pro-max/scripts/search.py "elegant luxury" --domain typography
# 4. Search color palette
python3 .claude/skills/ui-ux-pro-max/scripts/search.py "beauty spa wellness" --domain color
# 5. Search landing page structure
python3 .claude/skills/ui-ux-pro-max/scripts/search.py "hero-centric social-proof" --domain landing
# 6. Search UX guidelines
python3 .claude/skills/ui-ux-pro-max/scripts/search.py "animation" --domain ux
python3 .claude/skills/ui-ux-pro-max/scripts/search.py "accessibility" --domain ux
# 7. Search stack guidelines (default: html-tailwind)
python3 .claude/skills/ui-ux-pro-max/scripts/search.py "layout responsive" --stack html-tailwind
Then: Synthesize all search results and implement the design.
These are frequently overlooked issues that make UI look unprofessional:
| Rule | Do | Don't |
|---|---|---|
| No emoji icons | Use SVG icons (Heroicons, Lucide, Simple Icons) | Use emojis like 🎨 🚀 ⚙️ as UI icons |
| Stable hover states | Use color/opacity transitions on hover | Use scale transforms that shift layout |
| Correct brand logos | Research official SVG from Simple Icons | Guess or use incorrect logo paths |
| Consistent icon sizing | Use fixed viewBox (24x24) with w-6 h-6 | Mix different icon sizes randomly |
| Rule | Do | Don't |
|---|---|---|
| Cursor pointer | Add cursor-pointer to all clickable/hoverable cards | Leave default cursor on interactive elements |
| Hover feedback | Provide visual feedback (color, shadow, border) | No indication element is interactive |
| Smooth transitions | Use transition-colors duration-200 | Instant state changes or too slow (>500ms) |
| Rule | Do | Don't |
|---|---|---|
| Glass card light mode | Use bg-white/80 or higher opacity | Use bg-white/10 (too transparent) |
| Text contrast light | Use #0F172A (slate-900) for text | Use #94A3B8 (slate-400) for body text |
| Muted text light | Use #475569 (slate-600) minimum | Use gray-400 or lighter |
| Border visibility | Use in light mode |
| Rule | Do | Don't |
|---|---|---|
| Floating navbar | Add top-4 left-4 right-4 spacing | Stick navbar to top-0 left-0 right-0 |
| Content padding | Account for fixed navbar height | Let content hide behind fixed elements |
| Consistent max-width | Use same max-w-6xl or max-w-7xl | Mix different container widths |
Before delivering UI code, verify these items:
cursor-pointerprefers-reduced-motion respectedfrontend-designinterface-design — Product UIs (dashboards, admin panels, SaaS apps)shadcn-tailwindux-designerIMPORTANT Task Planning Notes (MUST FOLLOW)
Weekly Installs
62
Repository
GitHub Stars
6
First Seen
Jan 24, 2026
Security Audits
Gen Agent Trust HubPassSocketPassSnykWarn
Installed on
gemini-cli59
opencode58
codex57
cursor57
github-copilot55
kimi-cli53
React 组合模式指南:Vercel 组件架构最佳实践,提升代码可维护性
123,700 周安装
| Page structure, CTA strategies |
| hero, hero-centric, testimonial, pricing, social-proof |
chart | Chart types, library recommendations | trend, comparison, timeline, funnel, pie |
ux | Best practices, anti-patterns | animation, accessibility, z-index, loading |
prompt | AI prompts, CSS keywords | (style name) |
react-native | Components, Navigation, Lists |
flutter | Widgets, State, Layout, Theming |
border-gray-200Use border-white/10 (invisible) |