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

frontend-ui-design前端用户界面设计

Agent Skill

用于辅助前端页面、组件、样式和交互逻辑的开发与维护。它适合让 Agent 生成或审查 React、Next.js、Vue、Tailwind、CSS 等相关代码,整理组件结构,或定位布局和性能问题。使用时需要结合项目现有设计系统、路由和构建方式,避免只生成孤立片段;涉及页面改动时,应配合本地预览和构建检查确认视觉效果。

总安装

840

周安装

35

GitHub Stars

1

下载量

280
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/pixel-process-ug/superkit-agents --skill frontend-ui-design

简介

用于辅助前端页面、组件、样式和交互逻辑的开发与维护。

  • 适合处理 React、Next.js、Vue、Tailwind、CSS 等主流技术栈的代码生成与审查。
  • 可整理组件结构、定位布局问题,并建议性能优化方案。
  • 需结合项目现有设计系统和构建流程使用,避免生成孤立代码片段。
  • 涉及页面改动时应配合本地预览和构建检查确认实际效果。

SKILL.md

Frontend UI Design

Overview

Guide the design and implementation of frontend user interfaces with consistent architecture, accessibility, responsive behavior, and performance. This skill covers component patterns, design system integration, state management selection, and WCAG compliance — producing components that are testable, accessible, and performant.

Announce at start: "I'm using the frontend-ui-design skill to design the UI."

Phase 1: Discovery

Ask these questions to understand the UI requirements:

#QuestionWhat It Determines
1What component or page are we building?Scope and complexity
2What framework/library? (React, Vue, Svelte, etc.)Code patterns
3Is there an existing design system or component library?Constraints
4What devices must be supported? (mobile, tablet, desktop)Responsive strategy
5Accessibility requirements? (WCAG level)A11y standards
6What data does this component need?State management approach

STOP after discovery — present a summary of constraints and approach before designing.

Phase 2: Component Architecture Selection

Architecture Pattern Decision Table

PatternWhen to UseWhen NOT to Use
Atomic DesignBuilding a component library from scratchAdding one component to existing system
Compound ComponentsMulti-part component needing layout flexibilitySimple single-purpose component
Hooks PatternSame logic reused across different UIsLogic tied to one specific component
Container/PresenterComponents need isolated testing or multiple data sourcesSimple components with minimal logic

Atomic Design Levels

LevelDescriptionExamples
AtomsSmallest building blocks, single purposeButton, Input, Label, Icon
MoleculesGroups of atoms functioning togetherSearchBar (Input + Button), FormField (Label + Input + Error)
OrganismsComplex sections composed of moleculesHeader (Logo + Nav + SearchBar), ProductCard
TemplatesPage layouts with placeholder contentDashboardLayout, AuthLayout
PagesTemplates populated with real dataHomePage, SettingsPage

Compound Components Example

<Select value={selected} onChange={setSelected}>
  <Select.Trigger />
  <Select.Options>
    <Select.Option value="a">Option A</Select.Option>
    <Select.Option value="b">Option B</Select.Option>
  </Select.Options>
</Select>

Use when: a component has multiple sub-parts that must coordinate but consumers need layout flexibility.

Hooks Pattern Example

function useDialog() {
  const [isOpen, setIsOpen] = useState(false);
  const open = () => setIsOpen(true);
  const close = () => setIsOpen(false);
  return { isOpen, open, close };
}

Use when: the same logic is needed across multiple components with different UI.

STOP after architecture selection — confirm the pattern choice before proceeding.

Phase 3: Responsive Design

Mobile-First Breakpoints

BreakpointTargetMin-Width
smMobile landscape640px
mdTablet768px
lgDesktop1024px
xlLarge desktop1280px
2xlWide desktop1536px

Responsive Strategy Decision Table

NeedUseNot
Layout changes based on viewport sizeMedia queriesContainer queries
Component adapts to parent container sizeContainer queriesMedia queries
Text scales smoothly between breakpointsclamp() fluid typographyFixed font sizes
Images adapt to viewportsrcset + sizesSingle fixed image

Fluid Typography

font-size: clamp(1rem, 0.5rem + 1.5vw, 1.5rem);

Phase 4: Accessibility (WCAG 2.1 AA)

Semantic HTML Decision Table

NeedUseNOT
Navigation<nav><div class="nav">
Button action<button><div onClick>
Page sections<main>, <section>, <aside><div>
Headings<h1>-<h6> in order<div class="heading">
List of items<ul>, <ol>Nested <div>s
Form labels<label for="...">Placeholder text only

ARIA Usage Rules

RuleWhen
Use semantic HTML firstAlways — ARIA is a fallback
aria-labelLabels for elements without visible text
aria-describedbyAssociates descriptive text with an element
aria-liveAnnounces dynamic content changes
aria-expandedToggleable sections (accordions, menus)
roleOnly when no semantic element exists

Keyboard Navigation Requirements

  • All interactive elements focusable (naturally or tabindex="0")
  • Operable via keyboard (Enter, Space, Escape, Arrow keys)
  • Visible focus indicator (never outline: none without replacement)
  • Logical tab order matching visual order
  • Focus traps for modals and dialogs

Color Contrast Requirements

ElementMinimum Ratio
Normal text4.5:1
Large text (18px+ or 14px+ bold)3:1
UI components3:1 against adjacent colors
Information conveyed by colorMust also use icons, patterns, or text

Screen Reader Testing

Test with at least one screen reader:

  • macOS: VoiceOver (built-in)
  • Windows: NVDA (free) or JAWS
  • Verify: content announced in logical order, form errors associated with inputs, dynamic updates announced

Phase 5: State Management & Performance

State Management Decision Table

State TypeSolutionWhen
LocaluseState, useReducerState used by one component or direct children
SharedContext, Zustand, JotaiState shared across multiple unrelated components
ServerTanStack Query, SWRData fetched from API, needs caching/revalidation
FormReact Hook Form, FormikComplex forms with validation and submission
URLSearch params, router stateState that should be bookmarkable/shareable

Selection Heuristic

  1. Start with useState — only escalate when you hit a real limitation
  2. If prop drilling exceeds 2 levels, consider Context or state library
  3. If caching API responses, use a server state library (not Redux for server state)
  4. For forms with >3 fields and validation, use a form library

Performance Optimization Checklist

TechniqueWhen to Apply
React.lazy() + SuspenseRoute-level code splitting
loading="lazy" on imagesBelow-the-fold images
VirtualizationLists with >50 items
useMemoExpensive computations
useCallbackCallbacks passed to memoized children
Dynamic import()Conditionally loaded heavy libraries
WebP/AVIF imagesAll image assets
Explicit width/height on imagesPrevent layout shift

Design System Integration

Design Tokens — define foundational values, not hard-coded:

const tokens = {
  color: { primary: '#2563eb', secondary: '#64748b', error: '#dc2626' },
  spacing: { xs: '0.25rem', sm: '0.5rem', md: '1rem', lg: '1.5rem', xl: '2rem' },
  typography: { fontFamily: { sans: 'Inter, system-ui, sans-serif' } },
};

Component Variants — consistent variant API:

<Button variant="primary" size="md">Save</Button>
<Button variant="outline" size="sm">Cancel</Button>

Theme Support:

  • CSS custom properties for runtime theme switching
  • Support light + dark themes at minimum
  • Respect prefers-color-scheme as default
  • Allow user override stored in localStorage

STOP after design — present the full component specification for review.

Anti-Patterns / Common Mistakes

MistakeWhy It Is WrongWhat To Do Instead
<div onClick> instead of <button>Not keyboard accessible, no screen reader semanticsUse semantic HTML elements
outline: none without replacementKeyboard users cannot see focusReplace with visible focus style
Fixed font sizes (px)Cannot scale with user preferencesUse rem and clamp()
Prop drilling through 4+ levelsMaintenance nightmareUse Context or state library
Fetching in useEffect + useStateNo caching, no dedup, race conditionsUse TanStack Query or SWR
Premature memoizationAdds complexity without measured benefitProfile first, optimize measured bottlenecks
Desktop-first responsive designMobile experience is an afterthoughtStart mobile-first, add complexity up
Color as sole information carrierInaccessible to colorblind usersAdd icons, patterns, or text labels
No loading/error statesUsers see blank screens or cryptic errorsDesign loading, error, and empty states

Anti-Rationalization Guards

  • Do NOT skip accessibility — WCAG 2.1 AA is the minimum, not optional
  • Do NOT use <div> with onClick instead of semantic elements
  • Do NOT skip keyboard navigation testing
  • Do NOT choose state management before understanding the actual need
  • Do NOT skip the discovery phase — understand constraints first
  • Do NOT optimize performance without measuring first

Integration Points

SkillRelationship
api-designUpstream: API response shapes inform component data needs
spec-writingUpstream: specs define component behavioral requirements
planningDownstream: component designs become implementation tasks
test-driven-developmentDownstream: component spec drives test-first implementation
senior-frontendParallel: specialist knowledge for React/Next.js specifics
ui-ux-pro-maxUpstream: UX design informs component requirements
ui-design-systemParallel: design system tokens feed component styling
performance-optimizationDownstream: profile and optimize after implementation

Verification Gate

Before claiming the UI design is complete:

  1. VERIFY component architecture pattern is explicitly chosen with rationale
  2. VERIFY responsive behavior is defined for all target breakpoints
  3. VERIFY accessibility requirements are specified (WCAG level, keyboard, color contrast)
  4. VERIFY state management approach is selected based on actual needs
  5. VERIFY loading, error, and empty states are designed
  6. VERIFY the user has approved the component specification

Skill Type

Flexible — Adapt component patterns, responsive strategy, and state management to project framework and constraints while preserving accessibility requirements and the discovery-first approach.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.36%
按下载量换算96

Claude

30.61%
按下载量换算86

Cursor

16.66%
按下载量换算47

Gemini CLI

9.8%
按下载量换算27

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills