Token导航 LogoToken导航TokenDH.com
前端设计需要联网github未标认证来源可访问clear审计通过

ux-specification用户体验规范

Agent Skill

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

总安装

2,002

周安装

81

GitHub Stars

4

下载量

629
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/abhsin/designskills --skill ux-specification

简介

用于编写详细的前端组件规格说明书。

  • 适合定义 Props、样式规则与交互行为。
  • 使用时需对接现有设计系统与代码规范。
  • 输出文档可直接作为开发验收标准。ux-specification 属于前端设计类 Skill,可作为该场景下的辅助能力补充。
  • 安装方式:github,支持 React/Vue 等多框架适配。

SKILL.md

UX Spec

Turn product requirements into concrete flows, screens, and interactions that coding agents can implement.

Why This Exists

Bridges the gap between product requirements and implementation by defining how the product looks and behaves.

Input Requirements

This skill expects:

  • PRD (from prd-generation or user-provided)
  • Any existing sketches, wireframes, or references (optional)
  • Design preferences or constraints (optional)

Workflow

Step 1: Ingest PRD

Extract from the PRD:

  • User stories (especially Must Have)
  • Features and acceptance criteria
  • Target user characteristics
  • Technical constraints

Step 2: Map User Flows

For each core user story, define the flow:

Questions to answer:

  • Where does the user start?
  • What's the happy path?
  • What are the decision points?
  • Where does the user end up?
  • What can go wrong?

Step 3: Define Screens

For each screen in the flows:

  • What's the purpose?
  • What components are needed?
  • What data is displayed?
  • What actions are available?
  • What states exist?

Step 4: Specify Interactions

For key interactions:

  • What triggers the action?
  • What feedback does the user get?
  • What changes on screen?
  • How long does it take?

Step 5: Clarify Gaps

Ask targeted questions if needed:

  • "Should this be a modal or a new page?"
  • "What happens if the list is empty?"
  • "How does the user know it's loading?"
  • "Any specific layout preference—sidebar, tabs, single page?"

Output Format

Automatically save the output to design/06-ux-spec.md using the Write tool while presenting it to the user.

# UX Spec: [Project Name]

## Overview
[Brief summary of the product and primary user goal]

---

## Information Architecture

### Navigation Structure

[App Name] ├── [Primary Nav Item 1] │ ├── [Sub-item] │ └── [Sub-item] ├── [Primary Nav Item 2] └── [Primary Nav Item 3]

### Key User Paths
1. **[Path Name]:** [Start] → [Step] → [Step] → [End]
2. **[Path Name]:** [Start] → [Step] → [End]

---

## User Flows

### Flow 1: [Flow Name]
**Trigger:** [What initiates this flow]
**User goal:** [What they're trying to accomplish]

[Start State] ↓ [Action/Decision] ↓ [Screen/State] ──→ [Alternative path if applicable] ↓ [End State]

**Steps:**
1. User [action]
2. System [response]
3. User [action]
4. System [response]
5. User reaches [end state]

**Error paths:**
- If [condition]: [what happens]
- If [condition]: [what happens]

### Flow 2: [Flow Name]
[Same structure]

---

## Screens

### Screen: [Screen Name]
**URL/Route:** `/path`
**Purpose:** [What the user accomplishes here]
**Entry points:** [How users get here]

#### Layout

┌─────────────────────────────────┐ │ [Header/Nav] │ ├─────────────────────────────────┤ │ │ │ [Main Content Area] │ │ │ │ [Component] [Component] │ │ │ ├─────────────────────────────────┤ │ [Footer/Actions] │ └─────────────────────────────────┘

#### Components
| Component | Description | Behavior |
|-----------|-------------|----------|
| [Name] | [What it displays] | [How it behaves] |
| [Name] | [What it displays] | [How it behaves] |

#### States
| State | Appearance | Trigger |
|-------|------------|---------|
| Default | [Description] | Initial load |
| Loading | [Description] | Data fetching |
| Empty | [Description] | No data exists |
| Error | [Description] | Request failed |
| Success | [Description] | Action completed |

#### Actions
| Action | Trigger | Result |
|--------|---------|--------|
| [Action] | [Click/tap/etc.] | [What happens] |
| [Action] | [Trigger] | [Result] |

### Screen: [Screen Name]
[Same structure]

---

## Components

### Component: [Component Name]
**Used in:** [List of screens]
**Purpose:** [What it does]

#### Props/Inputs
| Prop | Type | Description |
|------|------|-------------|
| [name] | [type] | [what it controls] |

#### Variants
- **[Variant 1]:** [Description]
- **[Variant 2]:** [Description]

#### States
- Default: [Description]
- Hover: [Description]
- Active: [Description]
- Disabled: [Description]

### Component: [Component Name]
[Same structure]

---

## Interactions

### Interaction: [Name]
**Trigger:** [User action]
**Response:** [System behavior]
**Duration:** [Instant / 200ms / async]
**Feedback:** [What user sees/feels]

### Interaction: [Name]
[Same structure]

---

## Responsive Behavior
**Breakpoints:**
- Mobile: < 768px
- Tablet: 768px - 1024px
- Desktop: > 1024px

**Key adaptations:**
- [Component/layout]: [How it changes]
- [Component/layout]: [How it changes]

---

## Design Notes
[Optional — any specific visual direction, references, or constraints]

- **Style:** [Minimal / Dense / Playful / etc.]
- **Reference:** [Any inspiration or similar products]
- **Constraints:** [Accessibility, brand, etc.]

Adaptation Guidelines

Simple project (1-3 screens):

  • Skip Information Architecture
  • Combine Flows and Screens
  • Minimal Components section
  • Skip Responsive Behavior

Medium project (4-8 screens):

  • Full structure as shown
  • Focus on core flows, not edge cases

Complex project (10+ screens):

  • Add screen-by-screen detail
  • Document all component variants
  • Include edge case flows
  • Add Design Notes section

Writing Guidelines

  • ASCII layouts are sufficient — Don't overcomplicate, just show structure
  • States are critical — Loading, empty, error states prevent agent guesswork
  • Be specific about triggers — "Click" vs "hover" vs "focus" matters
  • Name things consistently — Use same component names across screens

Handoff

After presenting the UX spec, ask:

"Ready to generate prompts.md with /prompt-export, or want to refine any screens first?"

Note: File is automatically saved to design/06-ux-spec.md. This feeds into development prompts.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

Claude Code

30.02%
按下载量换算189

Antigravity

19.34%
按下载量换算122

Codex

18.48%
按下载量换算116

OpenCode

12.37%
按下载量换算78

Gemini CLI

7.37%
按下载量换算46

windsurf

3%
按下载量换算19

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills