Token导航 LogoToken导航TokenDH.com
效率只读clawhub未标认证来源可访问clear审计通过

ui-ux-design用户界面用户体验设计

Agent Skill

用于辅助界面设计、视觉规范、排版、配色、布局和交互体验优化。它适合让 Agent 根据产品场景整理页面结构、生成 UI 方案、检查视觉一致性或改进组件层级。使用时需要结合现有品牌、设计系统和用户任务,不应只堆装饰元素;涉及真实页面改动时,应通过截图或浏览器预览检查文本溢出、对齐和响应式表现。

总安装

425,675

周安装

18,285

GitHub Stars

24

下载量

149,206
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:ui-ux-design(用户界面用户体验设计)
来源仓库:https://github.com/itsjustdri/ui-ux-design
安装命令:
openclaw skills install ui-ux-design
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install ui-ux-design

简介

专注移动优先 UI/UX 设计指导,涵盖色彩系统、版式布局与可访问性标准优化。

  • 适用于产品原型设计、界面改版评审及组件库建设等交互体验提升场景。
  • 支持 Tailwind + Shadcn/ui 集成建议,提供微交互与 WCAG 2.2 合规参考。
  • 输出方案需结合具体品牌规范与用户任务,避免仅堆砌装饰元素而无功能支撑。
  • 涉及真实页面修改时,应通过截图或预览工具检查文本溢出与响应式表现。

SKILL.md

UI/UX Design

Name: ui-ux-design Description: Modern UI/UX design principles, patterns, and best practices for web and mobile applications. Use when building user interfaces, designing layouts, choosing color palettes, implementing responsive design, ensuring accessibility (WCAG), or creating beautiful modern applications. Includes 2026 design trends, Tailwind CSS patterns, Shadcn/ui integration, micro-interactions, and mobile-first responsive design.


When to Use This Skill

Activate this skill when:

  • Building or designing web/mobile interfaces
  • Choosing colors, typography, or layout systems
  • Implementing responsive design (mobile-first)
  • Ensuring accessibility compliance (WCAG 2.2)
  • Setting up Shadcn/ui + Tailwind CSS projects
  • Creating micro-interactions and animations
  • Reviewing UI/UX decisions before coding

Core Design Principles

1. Mobile-First Always

  • Start with 320px width (smallest phone)
  • Breakpoints: 576px (phone), 768px (tablet), 992px (laptop), 1200px (desktop)
  • Single-column default, expand only when space allows

2. Visual Hierarchy

Guide user attention using:

  • Size: Larger = more important
  • Color: Bright/contrasting = attention
  • Whitespace: More space = emphasis
  • Proximity: Related items grouped together
  • Contrast: Dark on light or light on dark (4.5:1 minimum for text)

3. Whitespace is Your Weapon

  • Space elements in multiples of 8px (8, 16, 24, 32, 48, 64)
  • Breathing room between sections: 48-64px minimum
  • Padding inside cards: 24-32px

Quick Reference

Color System

Build a primary color scale (50-900):

  • Primary: Brand color (CTAs, links, active states)
  • Neutrals: Grays 50-900 (text, backgrounds, borders)
  • Semantic: Success (green), Error (red), Warning (yellow/orange)

Tools: Huevy.app, Coolors.co, Adobe Color

Typography Scale (8px baseline)

text-xs:   12px / 16px line-height
text-sm:   14px / 20px
text-base: 16px / 24px (body default)
text-lg:   18px / 28px
text-xl:   20px / 28px
text-2xl:  24px / 32px
text-3xl:  30px / 36px (section headers)
text-4xl:  36px / 40px
text-5xl:  48px / 1 (hero titles)

Font pairing: 2 fonts max (sans-serif for UI, optional serif for headings)

Layout Patterns

  • CSS Grid: 2D layouts (page structure)
  • Flexbox: 1D layouts (component internals)
  • Auto-fit grid: repeat(auto-fit, minmax(280px, 1fr)) (no media queries!)

Micro-Interactions

  • Hover: Scale 1.05x (buttons feel clickable)
  • Click: Scale 0.95x (tactile feedback)
  • Duration: 0.2-0.3s max (keep it subtle)
  • Animate only: transform and opacity (GPU accelerated)

Accessibility (WCAG 2.2)

  • Text contrast: 4.5:1 minimum (normal text), 3:1 (large text)
  • UI components: 3:1 contrast minimum
  • Keyboard navigation: Tab order logical, focus states visible (3:1 contrast)
  • ARIA labels: Always provide for buttons, images, interactive elements

Shadcn/ui + Tailwind Stack

Setup (Next.js)

npx create-next-app@latest project-name --typescript --tailwind --app
cd project-name
npx shadcn@latest init

Choose: Style (Default), Base color (Blue or custom), CSS variables (Yes)

Adding Components

npx shadcn@latest add button
npx shadcn@latest add card
npx shadcn@latest add dialog
npx shadcn@latest add calendar

Components appear in components/ui/ — you own the code, customize freely.

Tailwind Best Practices

  • Use design tokens (not arbitrary values): p-4 not p-[17px]
  • Responsive utilities: w-full md:w-1/2 lg:w-1/3
  • Dark mode: dark:bg-gray-900 dark:text-white

Pre-Build Checklist

Before writing code, confirm:

  • [ ] Color palette defined (primary + neutrals + semantic colors)
  • [ ] Typography scale chosen (6-8 sizes)
  • [ ] Component library picked (Shadcn + Tailwind)
  • [ ] Mobile breakpoints planned (576px, 768px, 992px)
  • [ ] Accessibility contrast ratios checked (4.5:1 text, 3:1 UI)
  • [ ] Micro-interaction list (hover, click, success states)
  • [ ] Grid layout sketched (mobile → desktop progression)

Inspiration Sources

Study these products:

  • Linear (linear.app) — Best keyboard-first UI, subtle animations
  • Stripe Dashboard — Clean data visualization, perfect spacing
  • Vercel — Minimalist, fast, modern gradients
  • Notion — Intuitive drag-and-drop, clear hierarchy

Tools:

  • Figma (mockups before coding)
  • WebAIM Contrast Checker (accessibility)
  • Coolors/Huevy (color palettes)

The 5 Laws of Beautiful UI

  1. Contrast creates hierarchy (big vs small, dark vs light)
  2. Whitespace creates calm (never fear empty space)
  3. Consistency builds trust (same patterns repeated)
  4. Feedback confirms action (animations, success messages)
  5. Accessibility includes everyone (contrast, keyboard, screen readers)

Full Reference

For comprehensive deep-dives (component patterns, animation examples, responsive grid techniques), see UI_UX_MASTER_GUIDE.md in this skill directory.


Last Updated: 2026-02-05

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

94.7%
按下载量换算141,298

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

未展示

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills