| name | ux-critique |
| aliases | ["/ux-review","ux critique","usability review","accessibility audit","a11y check"] |
| primaryRole | designer |
| description | Evaluate a UI against usability and accessibility heuristics. Use when the user wants a UX, usability, or a11y review. |
UX Critique Skill (oh-my-antigravity)
Quick Start
- Scope the experience, inspect the UI, evaluate heuristics plus WCAG, then prioritize fixes.
Use this skill to evaluate UI/UX quality, usability, and accessibility.
Quick Start
Nielsen's 10 Usability Heuristics
- Visibility of system status
- Match between system and real world
- User control and freedom
- Consistency and standards
- Error prevention
- Recognition rather than recall
- Flexibility and efficiency of use
- Aesthetic and minimalist design
- Help users recognize, diagnose, and recover from errors
- Help and documentation
WCAG 2.1 Accessibility Checklist
- Perceivable: Text alternatives, captions, contrast (4.5:1), resize-friendly
- Operable: Keyboard accessible, no seizure triggers, navigable, input modalities
- Understandable: Readable, predictable, input assistance
- Robust: Compatible with assistive technologies
Workflow
- Scope — What is being reviewed (page, flow, component, full site)
- Inspect — Read the source code / rendered output
- Evaluate — Apply heuristics + WCAG checklist
- Score — Rate each dimension (pass / warning / fail)
- Recommend — Prioritized fixes with code examples
Output Format
## UX Critique Report
### Summary
- Overall score: X/10
- Critical issues: N
- Warnings: N
### Heuristic Evaluation
| # | Heuristic | Score | Finding |
|---|-----------|-------|---------|
| 1 | Visibility of system status | pass/warn/fail | Detail... |
...
### Accessibility Audit
| Level | Criterion | Status | Detail |
|-------|-----------|--------|--------|
| A | 1.1.1 Non-text Content | pass/fail | ... |
...
### Prioritized Recommendations
1. [CRITICAL] ...
2. [WARNING] ...
3. [IMPROVEMENT] ...
Rules
- Always check DESIGN.md first if it exists — evaluate consistency with defined tokens
- Test responsive behavior at 375px, 768px, 1280px viewports
- Check both light and dark mode if applicable
- Include concrete code fix suggestions, not just descriptions
- Flag any hardcoded values that should reference DESIGN.md tokens