Token导航 LogoToken导航TokenDH.com
研究检索只读github未标认证来源可访问许可证需确认审计通过

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

Agent Skill

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

总安装

343

周安装

14

GitHub Stars

2

下载量

110
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/endo-ava/harmonic-orbit --skill ui-ux-design-patterns

简介

用于查询和应用常见的用户界面设计模式。

  • 适合推荐导航、表单、通知等标准解决方案。
  • 提供不同场景下的模式选择与实现示例。
  • 需根据产品类型和用户习惯进行调整。ui-ux-design-patterns 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 主要用于提升界面的一致性和开发效率。

SKILL.md

UI/UX Design Patterns

Overview

This skill provides expert guidance for creating distinctive, beautiful frontend interfaces combined with psychologically-informed user experience patterns. It helps avoid generic "AI slop" aesthetics while applying proven UX psychology principles to improve engagement, conversion, and user satisfaction.

Core capabilities:

  • UI Aesthetics: Typography, color systems, motion design, backgrounds, and visual distinctiveness
  • UX Psychology: Cognitive load management, decision-making psychology, behavioral design, and trust-building
  • Pattern Application: Practical implementation strategies for common interface challenges

When to Use This Skill

Invoke this skill when working on:

Visual Design Tasks:

  • "Make this landing page more visually distinctive"
  • "Design a unique color theme for this dashboard"
  • "Choose typography that stands out from generic interfaces"
  • "Add delightful animations to this page load"
  • "Create an atmospheric background instead of solid colors"

User Experience Optimization:

  • "Improve the conversion rate of this registration flow"
  • "Reduce cognitive load in this complex dashboard"
  • "Design an onboarding experience that keeps users engaged"
  • "Apply psychological principles to encourage user actions"
  • "Optimize this checkout flow to reduce abandonment"

Design System Development:

  • "Establish a cohesive visual identity"
  • "Create reusable UI patterns with personality"
  • "Design component libraries that avoid generic aesthetics"

Problem-Solving:

  • "Users find this interface overwhelming"
  • "This page feels generic and forgettable"
  • "We need to increase user engagement without dark patterns"
  • "The design lacks visual hierarchy"

UI Aesthetic Guidelines

Core Principle: Distinctive Over Generic

The fundamental challenge is avoiding convergence toward predictable, machine-generated aesthetics. Create frontends that surprise and delight through creative, distinctive choices.

Key focus areas:

1. Typography

Choose fonts that are beautiful, unique, and interesting. Avoid generic choices like Arial, Inter, or Roboto.

Strong alternatives by category:

  • Serif: Playfair Display, Lora, Crimson Text, Spectral, Merriweather
  • Sans-Serif: Poppins, DM Sans, Outfit, Syne, Epilogue, Manrope
  • Display: Bebas Neue, Righteous, Abril Fatface, Fredoka
  • Monospace: JetBrains Mono, Fira Code, IBM Plex Mono

Typography combinations:

  • Playfair Display (headlines) + Lora (body) = Editorial elegance
  • Bebas Neue (headlines) + Poppins (body) = Modern impact
  • Spectral (serif body) + Outfit (sans UI) = Inverted tradition

For detailed typography guidance, font pairings, and implementation best practices, see references/ui-aesthetics.md.

2. Color & Theme

Commit to a cohesive aesthetic. Use CSS variables for consistency. Dominant colors with sharp accents outperform timid, evenly-distributed palettes.

Theme inspiration sources:

  • IDE themes: Dracula, Nord, Tokyo Night, Catppuccin
  • Cultural aesthetics: Japanese minimalism, Scandinavian cool, Brutalist high-contrast
  • Contextual: Match product domain while subverting expectations

Implementation:

:root {
  --color-background: #0a0e27;
  --color-surface: #1a1f3a;
  --color-primary: #00ff9f;
  --color-accent: #ff0080;
  --color-text-primary: #e0e0e0;
}

Avoid:

  • Clichéd purple gradients on white backgrounds
  • Generic blue-gray neutrals
  • Evenly-distributed, timid palettes

For complete color system architecture, theme examples, and gradient techniques, see references/ui-aesthetics.md.

3. Motion & Animation

Use animations for effects and micro-interactions. Focus on high-impact moments: one well-orchestrated page load with staggered reveals creates more delight than scattered micro-interactions.

Strategic approach:

  • Prioritize CSS-only solutions for HTML
  • Use Motion library (Framer Motion) for complex React animations
  • Orchestrate page loads with staggered animation delays
  • Add purposeful micro-interactions on key elements

Example - Staggered page load:

.hero-title {
  animation: fadeInUp 0.8s ease-out;
}
.hero-subtitle {
  animation: fadeInUp 0.8s ease-out 0.2s both;
}
.hero-cta {
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

For comprehensive animation patterns, timing guidelines, and performance optimization, see references/ui-aesthetics.md.

4. Backgrounds

Create atmosphere and depth rather than defaulting to solid colors. Layer CSS gradients, use geometric patterns, or add contextual effects.

Effective techniques:

  • Layered gradients for atmospheric depth
  • Geometric patterns (dots, grids, stripes)
  • Subtle noise textures
  • Contextual effects (spotlight, vignette)

Example - Atmospheric gradient:

background:
  radial-gradient(ellipse at top, rgba(102, 126, 234, 0.15), transparent),
  radial-gradient(ellipse at bottom, rgba(118, 75, 162, 0.15), transparent), #0a0e27;

For background pattern libraries, image overlay techniques, and advanced effects, see references/ui-aesthetics.md.

UX Psychology Principles

Core Principles

1. Cognitive Load Management

Minimize mental effort required to process information.

Progressive Disclosure: Reveal information gradually.

  • Use accordion menus, step wizards, expandable sections
  • Apply to: Complex forms, feature-rich interfaces, data dashboards

Visual Hierarchy: Establish clear priority through size, color, contrast, spacing.

  • Primary: Main action (largest, highest contrast)
  • Secondary: Supporting actions (medium size/contrast)
  • Tertiary: Optional details (smallest, lowest contrast)

2. Decision-Making Psychology

Anchoring Effect: First information encountered influences subsequent judgments.

  • Show original price before discounted price
  • Display completion time estimates upfront
  • Set defaults that guide optimal choices

Framing Effect: How information is presented affects decisions.

  • Emphasize gains over losses ("95% success" vs "5% failure")
  • Use action-oriented language
  • Focus on benefits, not just features

Loss Aversion: People feel losses roughly twice as strongly as gains.

  • "You'll lose your progress if you leave now"
  • "Your discount expires in 24 hours"
  • Balance with positive framing (avoid pure fear tactics)

3. Attention and Memory

Peak-End Rule: Users judge experiences by peak moment and ending, not average.

  • Optimize highest-impact moment in journey
  • Ensure final interaction leaves positive impression
  • Apply: Onboarding "aha moments", celebration on task completion

Zeigarnik Effect: Uncompleted tasks are remembered better.

  • Progress bars showing partial completion
  • "Continue where you left off" features
  • Profile completion indicators

4. Behavioral Design

Nudge Theory: Subtle cues guide beneficial actions without restricting choice.

  • Pre-select recommended options (allow changing)
  • Highlight suggested paths visually
  • Default to privacy-protecting settings

Gamification: Game mechanics increase engagement.

  • Points/scores, levels/tiers, badges/achievements
  • Use when: Learning platforms, productivity tools, community engagement
  • Ensure mechanics serve user goals, not just metrics

Social Proof: People look to others' behavior.

  • User counts, testimonials, ratings/reviews
  • Activity indicators, expert endorsements
  • Use genuine, verifiable proof only

For comprehensive UX psychology principles, implementation patterns, and ethical guidelines, see references/ux-psychology.md.

Applying UI/UX Patterns

Integration Strategy

Effective design combines aesthetic distinctiveness with psychological insight:

  1. Start with UX foundation: Understand user goals, pain points, and decision points
  2. Apply psychology patterns: Choose relevant UX principles for the context
  3. Layer distinctive aesthetics: Add visual personality that enhances (not distracts from) UX
  4. Orchestrate key moments: Focus design and animation effort on peak experiences
  5. Test and refine: Validate that beauty and usability reinforce each other

Common Design Scenarios

Landing Page

UX considerations:

  • Anchoring effect: Lead with compelling value proposition
  • Visual hierarchy: Clear primary CTA
  • Social proof: Testimonials and user counts

UI execution:

  • Distinctive typography for hero headline
  • Orchestrated page load animation (staggered reveals)
  • Atmospheric background (not solid color)
  • Sharp color accent on primary CTA

Registration Flow

UX considerations:

  • Progressive disclosure: Multi-step form, not overwhelming single page
  • Foot-in-the-door: Start with minimal ask (email), build trust
  • Zeigarnik effect: Progress bar to encourage completion

UI execution:

  • Clear step indicators with visual feedback
  • Smooth transitions between steps
  • Success micro-animations on field completion
  • Cohesive color system reinforcing brand

Dashboard

UX considerations:

  • Cognitive load: Progressive disclosure of advanced features
  • Visual hierarchy: Primary metrics prominent
  • Decision fatigue: Smart defaults, reduce choices

UI execution:

  • Strong typographic scale for metric hierarchy
  • Unique color palette (avoid generic blue-gray)
  • Subtle background patterns for depth
  • Purposeful animations on data updates

Onboarding

UX considerations:

  • Peak-end rule: Deliver "aha moment" early, end with success celebration
  • Gamification: Progress tracking, achievement on completion
  • Sunk cost: Show investment to encourage completion

UI execution:

  • Delightful animations on milestone completion
  • Distinctive illustration style (not generic undraw.co)
  • Celebration moment with confetti or unique visual
  • Consistent motion language throughout flow

Balancing Beauty and Usability

The aesthetic-usability effect: Beautiful designs are perceived as more usable, but actual usability must match aesthetic promise.

Guidelines:

  • Don't use aesthetics to mask poor usability
  • Ensure clarity isn't sacrificed for style
  • Test with real users, not just designers
  • Maintain accessibility standards (contrast, reduced motion)

Accessibility checklist:

  • Text contrast: 4.5:1 minimum (normal), 3:1 (large)
  • Respect prefers-reduced-motion for animations
  • Ensure keyboard navigation works
  • Test with screen readers for complex interactions

Avoiding Generic Aesthetics

Common pitfalls:

  • Purple gradient hero sections
  • Rounded cards with drop shadows everywhere
  • Generic illustrations and stock photos
  • Cookie-cutter layouts
  • Overused fonts (Inter, Roboto)

Creating distinctiveness:

  1. Reference unexpected sources (architecture, fashion, art movements)
  2. Combine contrasting aesthetics intentionally
  3. Commit to strong direction (don't hedge with "safe" choices)
  4. Add contextual details that relate to content
  5. Break conventions intentionally
  6. Develop a signature (recurring motifs, unique spacing)

Validation questions:

  • Does this feel thoughtfully designed or machine-generated?
  • Have I seen this exact combination before?
  • Does this design have personality and point of view?
  • Would a user remember this interface?
  • Does the aesthetic match the product's unique context?

Resources

This skill includes comprehensive reference documentation:

references/ui-aesthetics.md

Complete guide to creating distinctive, beautiful frontend interfaces.

Contents:

  • Typography: Font selection philosophy, categories, pairings, scales, loading strategies
  • Color & Theme: System architecture, theme inspirations (dark/light), gradients, accessibility
  • Motion & Animation: CSS patterns, React libraries, timing, performance optimization
  • Backgrounds: Gradients, geometric patterns, noise textures, contextual effects
  • Layout & Spatial Design: Container widths, spacing scales, depth/elevation
  • Avoiding Generic AI Aesthetics: Common pitfalls and strategies for originality

Use when:

  • Implementing specific UI patterns
  • Choosing fonts, colors, or animations
  • Need detailed code examples
  • Seeking inspiration for distinctive aesthetics

references/ux-psychology.md

Comprehensive UX psychology principles and behavioral design patterns.

Contents:

  • Cognitive Load Management: Progressive disclosure, visual hierarchy
  • Decision-Making Psychology: Anchoring, framing, decoy effects, loss aversion, sunk cost
  • Attention and Memory: Peak-end rule, serial position effect, Zeigarnik effect
  • Behavioral Design: Nudge theory, gamification, foot-in-the-door, variable rewards, scarcity
  • Performance and Quality: Doherty threshold, decision fatigue
  • Trust and Credibility: Social proof, halo effect, aesthetic-usability effect
  • Implementation Priorities: When to apply each principle
  • Ethical Considerations: User autonomy, transparency, long-term well-being

Use when:

  • Optimizing conversion flows
  • Improving user engagement
  • Designing onboarding experiences
  • Solving specific UX problems
  • Need evidence-based design patterns

Workflow

When applying this skill to a design task:

  1. Understand the goal: What user problem are we solving? What action do we want to encourage?
  2. Identify relevant UX patterns: Consult ux-psychology.md for principles that apply to this scenario.
  3. Choose distinctive aesthetics: Consult ui-aesthetics.md for typography, color, motion, and background approaches that create uniqueness.
  4. Design the experience: Combine UX patterns with aesthetic choices to create cohesive design.
  5. Implement with attention to detail: Use code examples from references, maintain consistency, ensure accessibility.
  6. Validate distinctiveness: Ask validation questions to ensure design isn't generic or predictable.

Ethical Design Principles

Always prioritize:

  • User autonomy: Preserve choice, don't manipulate
  • Transparency: Be honest about recommendations and limitations
  • Genuine value: Don't use psychology to mask poor products
  • Long-term well-being: Optimize for user benefit, not just engagement metrics
  • Accessibility: Ensure designs work for all users
  • Privacy and security: Default to protective settings

Avoid dark patterns:

  • Artificial scarcity or false urgency
  • Manipulative loss framing
  • Addictive variable reward schemes
  • Deceptive design that tricks users
  • Exploiting psychological vulnerabilities

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.76%
按下载量换算38

Claude

31.09%
按下载量换算34

Cursor

18.33%
按下载量换算20

Gemini CLI

8.16%
按下载量换算9

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

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

安装前确认

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

来源信息

继续浏览同类 Skills