UI Audit
Final-pass audit workflow for web interfaces. Focuses on concrete issues with concrete fixes.
Trigger Cues
Use this skill when:
- The user asks for a UI quality audit, design QA, polish pass, or pre-release review
- The task requires accessibility, keyboard, form usability, typography, or interaction checks
- The request includes loading/error/empty states, responsiveness, or visual stability checks
- The request mentions visual hierarchy, dense product chrome, headers, tabs, sidebars, icons, or separator cleanup
Audit Workflow
Copy and track this checklist during the audit:
Audit progress:
- [ ] Step 1: Scope changed surfaces and select relevant categories
- [ ] Step 2: Run CRITICAL checks first (a11y, interaction, forms)
- [ ] Step 3: Run HIGH/MEDIUM checks for the same surfaces
- [ ] Step 4: Report findings with file:line and concrete fixes
- [ ] Step 5: Re-check touched files and mark passes
- Audit only changed pages/components unless a full sweep is requested.
- Prioritize
CRITICAL and HIGH findings before medium-priority polish.
- For motion behavior, also apply
ui-animation for timing, easing, gesture, and review details.
- After fixes, rerun the relevant rules before finalizing.
- When hierarchy or chrome cleanup is in scope, use the navigation, layout, and extra-polish sections in
craft-checklist.md before reporting.
Rule Categories by Priority
| Priority |
Category |
Impact |
Prefix |
| 1 |
Accessibility and Semantics |
CRITICAL |
a11y- |
| 2 |
Keyboard and Interaction |
CRITICAL |
interaction- |
| 3 |
Forms and Validation |
CRITICAL |
forms- |
| 4 |
Typography and Readability |
HIGH |
type- |
| 5 |
Navigation and Feedback |
HIGH |
nav- |
| 6 |
Layout and Resilience |
HIGH |
layout- |
| 7 |
Performance and Visual Stability |
HIGH |
perf- |
| 8 |
Motion and Theme Behavior |
HIGH |
motion- |
| 9 |
Content and Microcopy |
MEDIUM |
copy- |
Quick Reference
Read only what is needed for the current audit scope:
- Category map and impact rationale:
rules/_sections.md
- Rule-level guidance and examples:
rules/<prefix>-*.md
- Full craft sweep:
craft-checklist.md
- Typography deep sweep:
typography-checklist.md
Example rule files:
rules/a11y-semantic-html-first.md
rules/forms-inline-errors-first-focus.md
rules/perf-image-dimensions-and-priority.md
Each rule file contains:
- Why the rule matters
- Incorrect example
- Correct example
Review Output Contract
Report findings in this format:
## UI Audit Findings
### path/to/file.tsx
- [CRITICAL] `a11y-icon-controls-labeled`: Icon button is missing an accessible name.
- Fix: Add `aria-label="Close dialog"` (or visible text label).
### path/to/clean-file.tsx
- ✓ pass
- Group findings by file.
- Use
file:line when line numbers are available.
- State issue and propose a concrete fix.
- Include clean files as
✓ pass.
1---2name: ui-audit3description: Audits web UI quality across accessibility, interaction, forms, typography, navigation, layout, performance, motion, and microcopy. Use when reviewing or refining frontend UI before merge or release, asking "check my UI", "is this accessible", "polish this page", or when the user asks for a UI, UX, or accessibility audit.4license: Unspecified5---6# UI Audit78Final-pass audit workflow for web interfaces. Focuses on concrete issues with concrete fixes.910## Trigger Cues1112Use this skill when:13- The user asks for a UI quality audit, design QA, polish pass, or pre-release review14- The task requires accessibility, keyboard, form usability, typography, or interaction checks15- The request includes loading/error/empty states, responsiveness, or visual stability checks16- The request mentions visual hierarchy, dense product chrome, headers, tabs, sidebars, icons, or separator cleanup1718## Audit Workflow1920Copy and track this checklist during the audit:2122```text23Audit progress:24- [ ] Step 1: Scope changed surfaces and select relevant categories25- [ ] Step 2: Run CRITICAL checks first (a11y, interaction, forms)26- [ ] Step 3: Run HIGH/MEDIUM checks for the same surfaces27- [ ] Step 4: Report findings with file:line and concrete fixes28- [ ] Step 5: Re-check touched files and mark passes29```30311. Audit only changed pages/components unless a full sweep is requested.322. Prioritize `CRITICAL` and `HIGH` findings before medium-priority polish.333. For motion behavior, also apply `ui-animation` for timing, easing, gesture, and review details.344. After fixes, rerun the relevant rules before finalizing.355. When hierarchy or chrome cleanup is in scope, use the navigation, layout, and extra-polish sections in `craft-checklist.md` before reporting.3637## Rule Categories by Priority3839| Priority | Category | Impact | Prefix |40|----------|----------|--------|--------|41| 1 | Accessibility and Semantics | CRITICAL | `a11y-` |42| 2 | Keyboard and Interaction | CRITICAL | `interaction-` |43| 3 | Forms and Validation | CRITICAL | `forms-` |44| 4 | Typography and Readability | HIGH | `type-` |45| 5 | Navigation and Feedback | HIGH | `nav-` |46| 6 | Layout and Resilience | HIGH | `layout-` |47| 7 | Performance and Visual Stability | HIGH | `perf-` |48| 8 | Motion and Theme Behavior | HIGH | `motion-` |49| 9 | Content and Microcopy | MEDIUM | `copy-` |5051## Quick Reference5253Read only what is needed for the current audit scope:54- Category map and impact rationale: `rules/_sections.md`55- Rule-level guidance and examples: `rules/<prefix>-*.md`56- Full craft sweep: `craft-checklist.md`57- Typography deep sweep: `typography-checklist.md`5859Example rule files:6061```62rules/a11y-semantic-html-first.md63rules/forms-inline-errors-first-focus.md64rules/perf-image-dimensions-and-priority.md65```6667Each rule file contains:68- Why the rule matters69- Incorrect example70- Correct example7172## Review Output Contract7374Report findings in this format:7576```markdown77## UI Audit Findings7879### path/to/file.tsx80- [CRITICAL] `a11y-icon-controls-labeled`: Icon button is missing an accessible name.81 - Fix: Add `aria-label="Close dialog"` (or visible text label).8283### path/to/clean-file.tsx84- ✓ pass85```8687- Group findings by file.88- Use `file:line` when line numbers are available.89- State issue and propose a concrete fix.90- Include clean files as `✓ pass`.