Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问clear审计通过

software-ui-ux-design软件 ui 用户体验设计

Agent Skill

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

总安装

9,058

周安装

370

GitHub Stars

59

下载量

2,901
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/vasilyu1983/ai-agents-public --skill software-ui-ux-design

简介

用于辅助界面设计、视觉规范和交互体验优化。

  • 适合根据产品场景整理页面结构或生成 UI 方案。
  • 可检查视觉一致性和组件层级,需结合品牌和设计系统使用。
  • 安装命令:npx skills add https://github.com/vasilyu1983/ai-agents-public --skill software-ui-ux-design
  • 涉及真实页面改动时应通过截图或浏览器预览检查表现。

SKILL.md

Software UI/UX Design

Design intuitive, accessible, user-centered interfaces.

Baselines (Mar 2026):

  • Accessibility: WCAG 2.2 Level AA — W3C
  • Performance: Core Web Vitals (LCP ≤2.5s, INP ≤200ms, CLS ≤0.1) — web.dev
  • Platforms: Apple HIG, Material 3

Quick Start

  • Clarify platform(s), primary user journey, and constraints (accessibility level, performance, localization, auth).
  • Choose track: audit an existing UI (heuristics + state matrix + WCAG) or design a new UI (IA + flows + UI spec).
  • Produce artifacts: recommendations, acceptance criteria, and a handoff spec (components, states, copy, tokens).

Decision Tree

Design challenge:
    ├─ What to build? → Use software-ux-research first
    ├─ Improving existing UI?
    │   ├─ Usability issues → Heuristic review
    │   ├─ Accessibility gaps → WCAG 2.2 audit
    │   ├─ Inconsistency → Design system alignment
    │   └─ Conversion issues → CRO audit
    ├─ Building new UI?
    │   └─ references/ui-generation-workflows.md
    ├─ Non-technical users / simplification?
    │   └─ references/simplification-patterns.md
    ├─ Specific demographics?
    │   └─ references/demographic-inclusive-design.md
    └─ Platform constraints?
        ├─ Web → semantics + focus + reflow
        ├─ iOS → system nav + Dynamic Type
        └─ Android → Material + edge-to-edge

Interaction Checklist

GoalDoAvoid
ClarityOne primary action per viewCompeting CTAs
AffordancesNative controls, strong signifiersClickable divs, hover-only
FeedbackImmediate visual responseSilent taps
Error preventionConstrain inputs, show examplesSubmit-then-fail
Error recoverySpecific message + next step"Something went wrong"
ConsistencyReuse patterns and termsSame term, different meanings

State Matrix

StateTreatmentWhen
LoadingPlaceholder matching layoutData fetching
EmptyMessage + CTAZero items
ErrorAlert + retry actionRequest fails
OfflineBanner + cached indicatorNo network
DegradedWarning + limited functionalityPartial failure

Platform Constraints

Web

  • Semantic HTML first (no "div soup")
  • ARIA only when needed
  • Manage focus on SPA navigation
  • Reflow at 320 CSS px (WCAG 1.4.10)
  • Target size ≥24px (WCAG 2.5.8)

iOS

  • System navigation (tab bar, nav bar)
  • Dynamic Type support
  • Dark mode + system materials
  • Handle Safe Areas

Android

  • Material 3 components
  • Dynamic Color (Material You)
  • Edge-to-edge content
  • Handle predictive back

WCAG 2.2 Key Changes

RequirementImplementation
Focus not obscuredKeep focus visible with sticky UI
Focus appearanceClear visible indicator
Dragging movementsNon-drag alternatives
Target size≥24×24 CSS px
Redundant entryDon't re-request known info
Accessible authAvoid cognitive tests

Reduced Motion

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

Design Tokens

{
  "color": {
    "primary": {
      "$value": "#0066cc",
      "$type": "color"
    }
  },
  "spacing": {
    "sm": {
      "$value": "8px",
      "$type": "dimension"
    }
  }
}
LayerExamplesPurpose
Primitiveblue-500, 16pxRaw values
Semanticcolor-primaryIntent-based
Componentbutton-bgComponent-specific

Resources

ResourcePurpose
references/implementation-research-workflow.mdResearch before building
references/design-systems.mdDesign system patterns
references/component-library-comparison.mdshadcn, MUI, Radix
references/nielsen-heuristics.mdHeuristic evaluation
references/wcag-accessibility.mdWCAG compliance
references/demographic-inclusive-design.mdAge-specific UX
references/neurodiversity-design.mdADHD, autism, dyslexia
references/ui-generation-workflows.mdUI from scratch
references/ai-design-tools-2025.mdFigma AI, v0
references/cro-framework.mdConversion optimization
references/mobile-ux-patterns.mdMobile UX: thumb zone, navigation, gestures, platform patterns
references/form-design-patterns.mdForm UX: layout, validation, multi-step, accessibility
references/dark-mode-theming.mdDark mode & multi-theme: tokens, CSS, platform implementation
references/ai-automation-ux.mdAI/automation UX: chatbots, agents, progressive disclosure
references/cultural-design-patterns.mdCross-cultural design: RTL, CJK, color semiotics, locale UX
references/frontend-aesthetics-2025.mdVisual design trends 2025: glassmorphism, variable fonts, 3D
references/simplification-patterns.mdInterface simplification for non-technical users, digital literacy spectrum
references/modern-ux-patterns-2025.mdModern UX patterns: command palettes, skeleton states, dark mode, 2026 trends
references/data-visualization-ux.mdData viz: chart selection, dashboards, accessible charts
references/typography-systems.mdType scales, font pairing, variable fonts, design tokens
references/performance-ux-vitals.mdCore Web Vitals UX, perceived performance, loading patterns
references/prototype-to-production.mdPrototype-to-production alignment, dashboard QA, design-to-ship checks
references/operational-playbook.mdDecision frameworks

Templates

Pattern Inspiration

Related Skills

SkillPurpose
software-ux-researchResearch (use first)
software-frontendImplementation
software-mobileMobile patterns
product-managementProduct strategy

Fact-Checking

  • Use web search/web fetch to verify current external facts, versions, pricing, deadlines, regulations, or platform behavior before final answers.
  • Prefer primary sources; report source links and dates for volatile information.
  • If web access is unavailable, state the limitation and mark guidance as unverified.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

Claude Code

32.66%
按下载量换算947

Cursor

24.07%
按下载量换算698

Gemini CLI

19.1%
按下载量换算554

Antigravity

11.52%
按下载量换算334

OpenCode

7.21%
按下载量换算209

Codex

3.75%
按下载量换算109

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills