Searchable UI/UX design databases: 50+ styles, 97 palettes, 57 font pairings, 99 UX rules, 25 chart types. CLI generates design systems from natural language. Data-driven complement to ui-design.
数据来源:ClawHub。 在 ClawSkills 查看
选择你使用的 Agent
方法一:命令行安装(推荐)
推荐(无需提前安装 clawhub)
npx clawhub@latest --dir ~/.claude/skills install ui-ux或使用 clawhub CLI(需提前安装)
clawhub --dir ~/.claude/skills install ui-ux⚠️ 需要 Node.js 18+,没有 Node?请使用下方方法二直接下载 ZIP。 安装 Node.js →
方法二:手动下载安装(无需 Node)
下载 ZIP,解压后将文件夹放到以下路径,重启 Agent 即可:
安装路径
~/.claude/skills/ui-ux/💡解压后将文件夹放到上方路径,重启 Agent 即可生效
--- name: ui-ux-pro-max model: fast version: 1.1.0 description: > Searchable UI/UX design databases: 50+ styles, 97 palettes, 57 font pairings, 99 UX rules, 25 chart types. CLI generates design systems from natural language. Data-driven complement to ui-design. tags: [design, ui, ux, color, typography, style, accessibility, charts] related: [ui-design, frontend-design, web-design] ---
Searchable design database with CLI for generating complete design systems from natural language queries.
> See also: ui-design for fundamentals and decision-making. This skill provides data-driven recommendations via CLI.
| Priority | Category | Impact | Domain | |----------|----------|--------|--------| | 1 | Accessibility | CRITICAL | ux | | 2 | Touch & Interaction | CRITICAL | ux | | 3 | Performance | HIGH | ux | | 4 | Layout & Responsive | HIGH | ux | | 5 | Typography & Color | MEDIUM | typography, color | | 6 | Animation | MEDIUM | ux | | 7 | Style Selection | MEDIUM | style, product | | 8 | Charts & Data | LOW | chart |
color-contrast — Minimum 4.5:1 ratio for normal textfocus-states — Visible focus rings on interactive elementsalt-text — Descriptive alt text for meaningful imagesaria-labels — aria-label for icon-only buttonskeyboard-nav — Tab order matches visual orderform-labels — Use label with for attributetouch-target-size — Minimum 44x44px touch targetshover-vs-tap — Use click/tap for primary interactionsloading-buttons — Disable button during async operationserror-feedback — Clear error messages near the problemcursor-pointer — Add cursor-pointer to clickable elementsimage-optimization — Use WebP, srcset, lazy loadingreduced-motion — Check prefers-reduced-motioncontent-jumping — Reserve space for async contentviewport-meta — width=device-width initial-scale=1readable-font-size — Minimum 16px body text on mobilehorizontal-scroll — Ensure content fits viewport widthz-index-management — Define z-index scale (10, 20, 30, 50)line-height — Use 1.5-1.75 for body textline-length — Limit to 65-75 characters per linefont-pairing — Match heading/body font personalitiesduration-timing — Use 150-300ms for micro-interactionstransform-performance — Use transform/opacity, not width/heightloading-states — Skeleton screens or spinnersstyle-match — Match style to product typeconsistency — Use same style across all pagesno-emoji-icons — Use SVG icons, not emojischart-type — Match chart type to data typecolor-guidance — Use accessible color palettesdata-table — Provide table alternative for accessibilitynpx clawhub@latest install ui-ux-pro-max
---
Python 3 is required for the search CLI.
python3 --version
---
When a user requests UI/UX work (design, build, create, implement, review, fix, improve), follow these steps.
Extract from the user request:
html-tailwindAlways start with --design-system to get comprehensive recommendations:
python3 scripts/search.py "<product_type> <industry> <keywords>" --design-system [-p "Project Name"]
This searches 5 domains in parallel (product, style, color, landing, typography), applies reasoning rules from ui-reasoning.csv, and returns a complete design system: pattern, style, colors, typography, effects, and anti-patterns.
Example:
python3 scripts/search.py "beauty spa wellness service" --design-system -p "Serenity Spa"
Save the design system for hierarchical retrieval across sessions:
python3 scripts/search.py "<query>" --design-system --persist -p "Project Name"
Creates:
design-system/MASTER.md — Global source of truthdesign-system/pages/ — Folder for page-specific overridesWith page override:
python3 scripts/search.py "<query>" --design-system --persist -p "Project Name" --page "dashboard"
Hierarchical retrieval: When building a specific page, check design-system/pages/ first. If it exists, its rules override the Master file. Otherwise use design-system/MASTER.md exclusively.
After generating the design system, use domain searches for additional detail:
python3 scripts/search.py "<keyword>" --domain <domain> [-n <max_results>]
| Need | Domain | Example | |------|--------|---------| | More style options | style | --domain style "glassmorphism dark" | | Chart recommendations | chart | --domain chart "real-time dashboard" | | UX best practices | ux | --domain ux "animation accessibility" | | Alternative fonts | typography | --domain typography "elegant luxury" | | Landing structure | landing | --domain landing "hero social-proof" |
Get implementation-specific best practices. Default to html-tailwind if unspecified.
python3 scripts/search.py "<keyword>" --stack html-tailwind
Available stacks: html-tailwind, react, nextjs, vue, svelte, swiftui, react-native, flutter, shadcn, jetpack-compose
---
| Domain | Use For | Example Keywords | |--------|---------|------------------| | product | Product type recommendations | SaaS, e-commerce, portfolio, healthcare | | style | UI styles, colors, effects | glassmorphism, minimalism, dark mode | | typography | Font pairings, Google Fonts | elegant, playful, professional | | color | Color palettes by product type | saas, ecommerce, healthcare, fintech | | landing | Page structure, CTA strategies | hero, testimonial, pricing, social-proof | | chart | Chart types, library recs | trend, comparison, timeline, funnel | | ux | Best practices, anti-patterns | animation, accessibility, z-index | | react | React/Next.js performance | waterfall, bundle, suspense, memo | | web | Web interface guidelines | aria, focus, keyboard, semantic | | prompt | AI prompts, CSS keywords | (style name) |
| 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 | | react-native | Components, Navigation, Lists | | flutter | Widgets, State, Layout, Theming | | shadcn | shadcn/ui components, theming, forms | | jetpack-compose | Composables, Modifiers, State Hoisting |
# ASCII box (default) — best for terminal display
python3 scripts/search.py "fintech crypto" --design-system
# Markdown — best for documentation
python3 scripts/search.py "fintech crypto" --design-system -f markdown
---
User request: "Build a landing page for a professional skincare service"
...
安装 UI / UX 后,可以对 AI 说这些话来触发它
Help me get started with UI / UX
Explains what UI / UX does, walks through the setup, and runs a quick demo based on your current project
Use UI / UX to searchable UI/UX design databases: 50+ styles, 97 palettes, 57 font...
Invokes UI / UX with the right parameters and returns the result directly in the conversation
What can I do with UI / UX in my data & analytics workflow?
Lists the top use cases for UI / UX, with example commands for each scenario
将技能文件夹放到 ~/.claude/skills/ui-ux/ 目录(个人级,所有项目可用),或 .claude/skills/ui-ux/(项目级)。重启 AI 客户端后,用 /ui-ux 主动调用,或让 AI 根据上下文自动发现并使用。
UI / UX 支持 Claude、Cursor、OpenClaw,可与这些 AI 平台无缝集成,扩展其能力。
UI / UX 可免费安装使用。请查阅仓库了解许可证信息。
Searchable UI/UX design databases: 50+ styles, 97 palettes, 57 font pairings, 99 UX rules, 25 chart types. CLI generates design systems from natural language. Data-driven complement to ui-design.
UI / UX 属于「Data & Analytics」分类,该分类的技能帮助 AI 智能体在此领域执行专业任务。
Automate my data & analytics tasks using UI / UX
Identifies repetitive steps in your workflow and sets up UI / UX to handle them automatically