UX Review
Comprehensive user experience review that coordinates usability, accessibility, and interaction design perspectives for thorough analysis of components, flows, or features.
When to Use This Skill
- Reviewing new components or features before release
- Evaluating existing flows for usability issues
- PR reviews that touch UI/UX code
- Design system component reviews
- Onboarding flow or checkout flow optimization
- Avoid using for purely visual/aesthetic reviews — use
ui-design-aesthetics instead
Workflow
Step 1: Gather Context
Answer these questions before reviewing:
- What is the user trying to accomplish?
- What is this component's role in the larger flow?
- Who are the target users (personas, skill level)?
- What are the success criteria?
Step 2: Run Heuristic Scan (Nielsen's 10)
Evaluate the interface against each heuristic:
| Heuristic |
Check |
| Visibility of system status |
Does the user always know what's happening? |
| Match with real world |
Does it use familiar language and concepts? |
| User control and freedom |
Can users undo, go back, escape? |
| Consistency and standards |
Does it follow platform conventions? |
| Error prevention |
Are mistakes prevented before they happen? |
| Recognition over recall |
Is information visible rather than memorized? |
| Flexibility and efficiency |
Are there shortcuts for expert users? |
| Aesthetic and minimalist design |
Is every element necessary? |
| Error recovery |
Are error messages helpful and actionable? |
| Help and documentation |
Is guidance available when needed? |
Step 3: Multi-Perspective Analysis
Usability Perspective
- User flow: Is the path to completion clear and efficient?
- Information architecture: Is content organized logically?
- Cognitive load: Is the interface overwhelming?
- Mental models: Does it work like users expect?
Accessibility Perspective (WCAG 2.1 AA)
- Keyboard navigation: Can everything be done without a mouse?
- Screen reader: Is the experience equivalent for assistive tech users?
- Color contrast: Do all text/UI elements meet 4.5:1 ratio?
- Focus management: Is focus order logical, visible, and never trapped?
<!-- Example: Accessible button with proper ARIA -->
<button aria-label="Close dialog" aria-describedby="close-hint">
<svg aria-hidden="true"><!-- icon --></svg>
</button>
<span id="close-hint" class="sr-only">Press Escape to close</span>
Interaction Design Perspective
- State coverage: Are all states handled (loading, empty, error, success)?
- Feedback: Does the user know their action worked?
- Transitions: Are animations purposeful and under 300ms?
- Progressive disclosure: Is complexity revealed appropriately?
Step 4: Prioritize Findings
Categorize every finding:
| Priority |
Criteria |
Action |
| Critical |
Blocks usability or fails WCAG AA |
Must fix before release |
| High |
Significantly degrades experience |
Fix in current sprint |
| Enhancement |
Improves delight and efficiency |
Backlog for next iteration |
| Future |
Long-term improvements |
Track in roadmap |
Step 5: Produce Review Report
## UX Review: [Component/Flow Name]
### Summary
[2-3 sentence executive summary]
### Critical Issues
- [ ] Issue 1: [Description, impact, WCAG criterion if applicable]
- [ ] Issue 2: [Description, impact]
### Recommendations by Category
#### Usability
| Finding | Impact | Recommendation |
|---------|--------|----------------|
| [Issue] | High/Med/Low | [Fix] |
#### Accessibility
| Finding | WCAG Criterion | Recommendation |
|---------|----------------|----------------|
| [Issue] | [2.x.x Level] | [Fix] |
#### Interaction Design
| Finding | Impact | Recommendation |
|---------|--------|----------------|
| [Issue] | High/Med/Low | [Fix] |
### Next Steps
1. Create issues for critical findings
2. Add accessibility requirements to acceptance criteria
3. Schedule follow-up review after fixes
Focus Area Deep Dives
Use --focus to narrow the review scope:
--focus=ux: User flow mapping, task efficiency, error recovery, learnability
--focus=a11y: WCAG 2.1 AA audit, keyboard nav, screen reader, contrast, focus management
--focus=interaction: State coverage, feedback timing, micro-interactions, animation review
Best Practices
- Test with real content — Lorem ipsum hides information architecture problems
- Check all states — Empty, loading, error, success, and edge-case states
- Verify keyboard flow — Tab through the entire component without a mouse
- Use browser dev tools — Lighthouse accessibility audit catches low-hanging fruit
- Prioritize ruthlessly — A focused list of critical fixes beats a wall of suggestions
1---2name: ux-review3description: Multi-perspective UX review combining usability heuristics, WCAG accessibility checks, and interaction design analysis. Use when reviewing UI components before release, evaluating user flows for usability issues, conducting design critiques, or auditing accessibility compliance.4---5
6# UX Review
7
8Comprehensive user experience review that coordinates usability, accessibility, and interaction design perspectives for thorough analysis of components, flows, or features.
9
10## When to Use This Skill
11
12- Reviewing new components or features before release
13- Evaluating existing flows for usability issues
14- PR reviews that touch UI/UX code
15- Design system component reviews
16- Onboarding flow or checkout flow optimization
17- Avoid using for purely visual/aesthetic reviews — use `ui-design-aesthetics` instead
18
19## Workflow
20
21### Step 1: Gather Context
22
23Answer these questions before reviewing:
24
251. What is the user trying to accomplish?
262. What is this component's role in the larger flow?
273. Who are the target users (personas, skill level)?
284. What are the success criteria?
29
30### Step 2: Run Heuristic Scan (Nielsen's 10)
31
32Evaluate the interface against each heuristic:
33
34| Heuristic | Check |
35|-----------|-------|
36| Visibility of system status | Does the user always know what's happening? |
37| Match with real world | Does it use familiar language and concepts? |
38| User control and freedom | Can users undo, go back, escape? |
39| Consistency and standards | Does it follow platform conventions? |
40| Error prevention | Are mistakes prevented before they happen? |
41| Recognition over recall | Is information visible rather than memorized? |
42| Flexibility and efficiency | Are there shortcuts for expert users? |
43| Aesthetic and minimalist design | Is every element necessary? |
44| Error recovery | Are error messages helpful and actionable? |
45| Help and documentation | Is guidance available when needed? |
46
47### Step 3: Multi-Perspective Analysis
48
49#### Usability Perspective
50
51- **User flow**: Is the path to completion clear and efficient?
52- **Information architecture**: Is content organized logically?
53- **Cognitive load**: Is the interface overwhelming?
54- **Mental models**: Does it work like users expect?
55
56#### Accessibility Perspective (WCAG 2.1 AA)
57
58- **Keyboard navigation**: Can everything be done without a mouse?
59- **Screen reader**: Is the experience equivalent for assistive tech users?
60- **Color contrast**: Do all text/UI elements meet 4.5:1 ratio?
61- **Focus management**: Is focus order logical, visible, and never trapped?
62
63```html
64<!-- Example: Accessible button with proper ARIA -->
65<button aria-label="Close dialog" aria-describedby="close-hint">
66 <svg aria-hidden="true"><!-- icon --></svg>
67</button>
68<span id="close-hint" class="sr-only">Press Escape to close</span>
69```
70
71#### Interaction Design Perspective
72
73- **State coverage**: Are all states handled (loading, empty, error, success)?
74- **Feedback**: Does the user know their action worked?
75- **Transitions**: Are animations purposeful and under 300ms?
76- **Progressive disclosure**: Is complexity revealed appropriately?
77
78### Step 4: Prioritize Findings
79
80Categorize every finding:
81
82| Priority | Criteria | Action |
83|----------|----------|--------|
84| **Critical** | Blocks usability or fails WCAG AA | Must fix before release |
85| **High** | Significantly degrades experience | Fix in current sprint |
86| **Enhancement** | Improves delight and efficiency | Backlog for next iteration |
87| **Future** | Long-term improvements | Track in roadmap |
88
89### Step 5: Produce Review Report
90
91```markdown
92## UX Review: [Component/Flow Name]
93
94### Summary
95[2-3 sentence executive summary]
96
97### Critical Issues
98- [ ] Issue 1: [Description, impact, WCAG criterion if applicable]
99- [ ] Issue 2: [Description, impact]
100
101### Recommendations by Category
102
103#### Usability
104| Finding | Impact | Recommendation |
105|---------|--------|----------------|
106| [Issue] | High/Med/Low | [Fix] |
107
108#### Accessibility
109| Finding | WCAG Criterion | Recommendation |
110|---------|----------------|----------------|
111| [Issue] | [2.x.x Level] | [Fix] |
112
113#### Interaction Design
114| Finding | Impact | Recommendation |
115|---------|--------|----------------|
116| [Issue] | High/Med/Low | [Fix] |
117
118### Next Steps
1191. Create issues for critical findings
1202. Add accessibility requirements to acceptance criteria
1213. Schedule follow-up review after fixes
122```
123
124## Focus Area Deep Dives
125
126Use `--focus` to narrow the review scope:
127
128- **`--focus=ux`**: User flow mapping, task efficiency, error recovery, learnability
129- **`--focus=a11y`**: WCAG 2.1 AA audit, keyboard nav, screen reader, contrast, focus management
130- **`--focus=interaction`**: State coverage, feedback timing, micro-interactions, animation review
131
132## Best Practices
133
134- **Test with real content** — Lorem ipsum hides information architecture problems
135- **Check all states** — Empty, loading, error, success, and edge-case states
136- **Verify keyboard flow** — Tab through the entire component without a mouse
137- **Use browser dev tools** — Lighthouse accessibility audit catches low-hanging fruit
138- **Prioritize ruthlessly** — A focused list of critical fixes beats a wall of suggestions