Ui review
Skill VictorAurelius/claude-starter-kit/skills/quality/ui-review
π€ Battle-tested Claude Code skills, rules & workflow templates β extracted from a real 200+ PR project. Governance-first. Bilingual VN/EN.
npx -y skills add VictorAurelius/claude-starter-kit --skill ui-reviewAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Use when user says 'review UI', 'check design', 'audit screenshots', or after any UI/UX code change. Auto-runs after every frontend PR. Captures before/after screenshots, scores per-screen on /128 scale.
SKILL.md
2.7 KB, as published. Nobody here has run it
UI Review β Portable Template
Per-screen scoring + before/after screenshots. Adapt {project} placeholders.
Setup for your project
- Copy this folder to
.claude/skills/ui-review/ - Copy
scripts/capture-screenshots.tsto your project's scripts dir - Edit PAGES list in capture script for your routes
- Edit scoring dimensions if needed
Process
0. Fix Verification (MANDATORY if previous report exists)
Check each previously reported issue β FIXED/STILL OPEN/PARTIAL table at top of report.
1. Capture screenshots
BEFORE any UI fix (MANDATORY):
npx tsx scripts/capture-screenshots.ts --label before-pr-XXX
AFTER fix merged (auto-run, don't wait for user):
npx tsx scripts/capture-screenshots.ts --label after-pr-XXX
Script auto-detects dev server, starts if needed. Auto-updates latest/ when using --label.
Output: {project-docs}/screenshots/{label}/{page}/{theme}-{viewport}.png
2. Score per screen (/128)
5 dimensions, each screen scored independently:
- Technical (/20) β accessibility, performance, responsive, theming, anti-patterns
- Design Heuristics (/40) β Nielsen's 10 heuristics (0-4 each)
- Visual Aesthetics (/28) β color, typography, sizing, spacing, alignment, hierarchy, polish
- User Friendliness (/20) β first impression, navigation, action clarity, learning curve, delight
- WCAG Accessibility (/20) β contrast, touch targets, labels, screen reader, keyboard
Report the LOWEST screen separately β this is the real quality bar.
3. Before/After comparison in report
| Screen | Before | After | What changed |
|--------|--------|-------|-------------|
| {page} | before-pr-XXX/{page}/dark-mobile.png | after-pr-XXX/{page}/dark-mobile.png | {description} |
4. Output report
Save to {project-docs}/ui-review-latest.md
Scoring Rubric
- 0/4 = Missing entirely
- 1/4 = Present but broken
- 2/4 = Present but has obvious issues (DEFAULT for most features)
- 3/4 = Works well, consistent across ALL screens
- 4/4 = Genuinely excellent
"Has feature" = 2/4, NOT 3/4. Before giving 3: "Would external auditor agree this is good?"
Gotchas
- Score what you SEE in screenshots, not what code says
- WCAG: if unverifiable from screenshot β cap at 2/4
- Auto-capture after EVERY frontend PR merge β non-negotiable
- Always update
latest/folder so user sees current state - Before screenshots are MANDATORY β no skipping