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

qa-analyzing-ux-flowsqa 分析用户体验流程

Agent Skill

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

总安装

190

周安装

8

GitHub Stars

5

下载量

67
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/wizeline/sdlc-agents --skill qa-analyzing-ux-flows

简介

qa-analyzing-ux-flows 用于辅助界面设计、视觉规范和交互体验优化,适合生成 UI 方案或检查一致性。

  • 适用于页面结构整理、组件层级改进和响应式表现检查。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装使用。
  • 需结合品牌和设计系统,避免仅堆装饰元素。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Analyzing UX Flows

This skill evaluates user experience quality by detecting friction points, accessibility barriers, confusing navigation, and violations of established UX heuristics. It goes beyond functional correctness to assess whether the application is genuinely usable.

When to Use

  • After feature completion to assess UX quality before release
  • When users report "it works but it's confusing"
  • For accessibility compliance audits (WCAG 2.1 AA)
  • To evaluate onboarding or sign-up flows
  • When redesigning existing workflows

Evaluation Framework

Nielsen's 10 Usability Heuristics

Use these as your evaluation lens for every flow:

  1. Visibility of system status: Does the user always know what's happening?

- Loading indicators during async operations - Progress bars in multi-step flows - Success/error feedback after actions

  1. Match between system and real world: Does the UI use familiar language?

- Jargon-free labels and descriptions - Intuitive icons and metaphors - Logical information hierarchy

  1. User control and freedom: Can users undo mistakes?

- Back button works in all flows - Undo/cancel options for destructive actions - Clear exit paths from any state

  1. Consistency and standards: Does the UI follow conventions?

- Consistent button styles and placement - Standard form patterns (labels, validation) - Platform-appropriate interactions

  1. Error prevention: Does the UI prevent mistakes before they happen?

- Confirmation dialogs for irreversible actions - Input validation before submission - Disabled states for unavailable actions

  1. Recognition rather than recall: Is information visible, not memorized?

- Breadcrumbs showing location - Recent items / search history - Contextual help text

  1. Flexibility and efficiency: Can experienced users move quickly?

- Keyboard shortcuts - Bulk actions - Saved preferences / defaults

  1. Aesthetic and minimalist design: Is the UI clutter-free?

- No unnecessary elements - Clear visual hierarchy - Appropriate whitespace

  1. Help users recognize, diagnose, and recover from errors:

- Error messages in plain language - Specific guidance on how to fix the issue - Link to help documentation when relevant

  1. Help and documentation:

- Contextual tooltips - Onboarding tours for new features - Accessible FAQ or help center

Flow Metrics

For each user flow analyzed, measure:

Click depth: Number of clicks to complete the task

  • Excellent: ≤3 clicks for common tasks
  • Acceptable: 4-5 clicks
  • Needs improvement: 6+ clicks

Cognitive load: Number of decisions required per step

  • Each form field is a decision
  • Each navigation choice is a decision
  • Fewer decisions = lower cognitive load

Error recovery cost: Steps to recover from a mistake

  • Best: 1 click (undo button)
  • Acceptable: 2-3 clicks (back + re-enter)
  • Poor: Start over from scratch

Time to complete: Expected time for the full flow

  • Benchmark against similar applications
  • Flag if significantly longer than expected

Accessibility Audit (WCAG 2.1 AA)

Check these critical accessibility requirements:

Perceivable

  • All images have alt text (or are marked decorative)
  • Color is not the only means of conveying information
  • Text contrast ratio ≥ 4.5:1 (normal text) or ≥ 3:1 (large text)
  • Content is readable at 200% zoom
  • Video has captions; audio has transcripts

Operable

  • All functionality available via keyboard
  • No keyboard traps (focus can move freely)
  • Skip navigation link present
  • Focus indicators visible on all interactive elements
  • No content flashes more than 3 times per second
  • Page titles are descriptive

Understandable

  • Language attribute set on HTML element
  • Form labels associated with inputs
  • Error messages identify the field and describe the error
  • Consistent navigation across pages

Robust

  • Valid HTML (no duplicate IDs, proper nesting)
  • ARIA attributes used correctly
  • Custom components have appropriate roles

Using the Analysis Script

python skills/qa-analyzing-ux-flows/scripts/analyze_flow.py \
  --url https://staging.example.com \
  --flow checkout \
  --output ux-analysis/

Or analyze from an existing exploration session:

python skills/qa-analyzing-ux-flows/scripts/analyze_session.py \
  --session exploration-results/session-log.json \
  --output ux-analysis/

Accessibility Checker

Run automated accessibility checks (axe-core based):

python skills/qa-analyzing-ux-flows/scripts/accessibility_check.py \
  --url https://staging.example.com \
  --pages /,/login,/dashboard \
  --output accessibility-results/

Output Format

ux-analysis/
├── flow-analysis.json          ← structured flow metrics
├── heuristic-evaluation.json   ← per-heuristic scores and findings
├── accessibility-report.json   ← WCAG violations found
├── friction-map.json           ← identified friction points
└── ux-summary.md               ← human-readable UX assessment

Friction Point Format

{
  "friction_id": "UX-001",
  "severity": "high",
  "heuristic": "Error prevention",
  "location": "/checkout (payment step)",
  "description": "No confirmation dialog when user changes payment method, causing cart reset",
  "user_impact": "Users lose cart contents when exploring payment options",
  "recommendation": "Add 'Are you sure?' dialog, or preserve cart across payment method changes",
  "effort_estimate": "small"
}

UX Score Card

Generate an overall UX score card for the analyzed flows:

{
  "flow": "checkout",
  "overall_score": 7.2,
  "heuristic_scores": {
    "visibility": 8,
    "match_real_world": 7,
    "user_control": 6,
    "consistency": 8,
    "error_prevention": 5,
    "recognition_not_recall": 7,
    "flexibility": 6,
    "minimalist_design": 9,
    "error_recovery": 5,
    "help_documentation": 7
  },
  "accessibility_score": "AA (partial)",
  "click_depth": 5,
  "friction_points": 3,
  "critical_issues": 1
}

Each heuristic is scored 1-10:

  • 9-10: Excellent — exemplary UX
  • 7-8: Good — minor improvements possible
  • 5-6: Adequate — noticeable issues
  • 3-4: Poor — significant usability problems
  • 1-2: Critical — flow is nearly unusable

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

33.1%
按下载量换算22

Claude

31.27%
按下载量换算21

Cursor

17.1%
按下载量换算11

Gemini CLI

9.66%
按下载量换算6

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills