Web Interface Guidelines
Review these files for compliance: $ARGUMENTS
Read files, check against rules below. Output concise but comprehensive—sacrifice grammar for brevity. High signal-to-noise.
Rules
Accessibility
- Icon-only buttons need
aria-label
- Form controls need
<label> or aria-label
- Interactive elements need keyboard handlers (
onKeyDown/onKeyUp)
<button> for actions, <a>/<Link> for navigation (not <div onClick>)
- Images need
alt (or alt="" if decorative)
- Decorative icons need
aria-hidden="true"
- Async updates (toasts, validation) need
aria-live="polite"
- Use semantic HTML (
<button>, <a>, <label>, <table>) before ARIA
- Headings hierarchical
<h1>–<h6>; include skip link for main content
scroll-margin-top on heading anchors
Focus States
- Interactive elements need visible focus:
focus-visible:ring-* or equivalent
- Never
outline-none / outline: none without focus replacement
- Use
:focus-visible over :focus (avoid focus ring on click)
- Group focus with
:focus-within for compound controls
Forms
- Inputs need
autocomplete and meaningful name
- Use correct
type (email, tel, url, number) and inputmode
- Never block paste (
onPaste + preventDefault)
- Labels clickable (
htmlFor or wrapping control)
- Disable spellcheck on emails, codes, usernames (
spellCheck={false})
- Checkboxes/radios: label + control share single hit target (no dead zones)
- Submit button stays enabled until request starts; spinner during request
- Errors inline next to fields; focus first error on submit
- Placeholders end with
… and show example pattern
autocomplete="off" only for a specific field where a password manager demonstrably
misfires. WCAG 1.3.5 requires the purpose of fields collecting information about the
user to be programmatically determinable, and autocomplete is how that is met — so a
blanket off on non-auth fields is a conformance failure, not a default
- Warn before navigation with unsaved changes (
beforeunload or router guard)
Animation
- Honor
prefers-reduced-motion (provide reduced variant or disable)
- Animate
transform/opacity only (compositor-friendly)
- Never
transition: all—list properties explicitly
- Set correct
transform-origin
- SVG: transforms on
<g> wrapper with transform-box: fill-box; transform-origin: center
- Animations interruptible—respond to user input mid-animation
Typography
… not ...
- Curly quotes
" " not straight "
- Non-breaking spaces:
10 MB, ⌘ K, brand names
- Loading states end with
…: "Loading…", "Saving…"
font-variant-numeric: tabular-nums for number columns/comparisons
- Use
text-wrap: balance or text-pretty on headings (prevents widows)
Content Handling
- Text containers handle long content:
truncate, line-clamp-*, or break-words
- Flex children need
min-w-0 to allow text truncation
- Handle empty states—don't render broken UI for empty strings/arrays
- User-generated content: anticipate short, average, and very long inputs
Images
<img> needs explicit width and height (prevents CLS)
- Below-fold images:
loading="lazy"
- Above-fold critical images:
priority or fetchpriority="high"
Performance
- Large lists (>50 items): virtualize (
virtua, content-visibility: auto)
- No layout reads in render (
getBoundingClientRect, offsetHeight, offsetWidth, scrollTop)
- Batch DOM reads/writes; avoid interleaving
- Prefer uncontrolled inputs; controlled inputs must be cheap per keystroke
- Add
<link rel="preconnect"> for CDN/asset domains
- Critical fonts:
<link rel="preload" as="font"> with font-display: swap
Navigation & State
- URL reflects state—filters, tabs, pagination, expanded panels in query params
- Links use
<a>/<Link> (Cmd/Ctrl+click, middle-click support)
- Deep-link all stateful UI (if uses
useState, consider URL sync via nuqs or similar)
- Destructive actions need confirmation modal or undo window—never immediate
Touch & Interaction
touch-action: manipulation (prevents double-tap zoom delay)
-webkit-tap-highlight-color set intentionally
overscroll-behavior: contain in modals/drawers/sheets
- During drag: disable text selection,
inert on dragged elements
autoFocus sparingly—desktop only, single primary input; avoid on mobile
Safe Areas & Layout
- Full-bleed layouts need
env(safe-area-inset-*) for notches
- Avoid unwanted scrollbars:
overflow-x-hidden on containers, fix content overflow
- Flex/grid over JS measurement for layout
Dark Mode & Theming
color-scheme: dark on <html> for dark themes (fixes scrollbar, inputs)
<meta name="theme-color"> matches page background
- Native
<select>: explicit background-color and color (Windows dark mode)
Locale & i18n
- Dates/times: use
Intl.DateTimeFormat not hardcoded formats
- Numbers/currency: use
Intl.NumberFormat not hardcoded formats
- Detect language via
Accept-Language / navigator.languages, not IP
Hydration Safety
- Inputs with
value need onChange (or use defaultValue for uncontrolled)
- Date/time rendering: guard against hydration mismatch (server vs client)
suppressHydrationWarning only where truly needed
Hover & Interactive States
- Buttons/links need
hover: state (visual feedback)
- Interactive states increase contrast: hover/active/focus more prominent than rest
Content & Copy
- Active voice: "Install the CLI" not "The CLI will be installed"
- Sentence case for headings and buttons is the safer default: no per-word case rules and it
localizes cleanly. Use Title Case only where a brand or navigation convention requires it,
and then consistently per element type
- Numerals for counts: "8 deployments" not "eight"
- Specific button labels: "Save API Key" not "Continue"
- Error messages include fix/next step, not just problem
- Second person; avoid first person
& over "and" where space-constrained
Anti-patterns (flag these)
user-scalable=no or maximum-scale=1 disabling zoom
onPaste with preventDefault
transition: all
outline-none without focus-visible replacement
- Inline
onClick navigation without <a>
<div> or <span> with click handlers (should be <button>)
- Images without dimensions
- Large arrays
.map() without virtualization
- Form inputs without labels
- Icon buttons without
aria-label
- Hardcoded date/number formats (use
Intl.*)
autoFocus without clear justification
Output Format
Group by file. Use file:line format (VS Code clickable). Terse findings.
## src/Button.tsx
src/Button.tsx:42 - icon button missing aria-label
src/Button.tsx:18 - input lacks label
src/Button.tsx:55 - animation missing prefers-reduced-motion
src/Button.tsx:67 - transition: all → list properties
## src/Modal.tsx
src/Modal.tsx:12 - missing overscroll-behavior: contain
src/Modal.tsx:34 - "..." → "…"
## src/Card.tsx
✓ pass
State issue + location. Skip explanation unless fix non-obvious. No preamble.
1---2name: web-interface-guidelines3description: Review UI code against the Vercel Web Interface Guidelines: a broad, terse pre-commit sweep across interaction, forms, layout, content, performance, and accessibility. Use for a fast checklist pass over a diff. For depth in any single domain, and for a holistic cross-discipline review, use the better-* suite instead.4license: MIT5---67# Web Interface Guidelines89Review these files for compliance: $ARGUMENTS1011Read files, check against rules below. Output concise but comprehensive—sacrifice grammar for brevity. High signal-to-noise.1213## Rules1415### Accessibility1617- Icon-only buttons need `aria-label`18- Form controls need `<label>` or `aria-label`19- Interactive elements need keyboard handlers (`onKeyDown`/`onKeyUp`)20- `<button>` for actions, `<a>`/`<Link>` for navigation (not `<div onClick>`)21- Images need `alt` (or `alt=""` if decorative)22- Decorative icons need `aria-hidden="true"`23- Async updates (toasts, validation) need `aria-live="polite"`24- Use semantic HTML (`<button>`, `<a>`, `<label>`, `<table>`) before ARIA25- Headings hierarchical `<h1>`–`<h6>`; include skip link for main content26- `scroll-margin-top` on heading anchors2728### Focus States2930- Interactive elements need visible focus: `focus-visible:ring-*` or equivalent31- Never `outline-none` / `outline: none` without focus replacement32- Use `:focus-visible` over `:focus` (avoid focus ring on click)33- Group focus with `:focus-within` for compound controls3435### Forms3637- Inputs need `autocomplete` and meaningful `name`38- Use correct `type` (`email`, `tel`, `url`, `number`) and `inputmode`39- Never block paste (`onPaste` + `preventDefault`)40- Labels clickable (`htmlFor` or wrapping control)41- Disable spellcheck on emails, codes, usernames (`spellCheck={false}`)42- Checkboxes/radios: label + control share single hit target (no dead zones)43- Submit button stays enabled until request starts; spinner during request44- Errors inline next to fields; focus first error on submit45- Placeholders end with `…` and show example pattern46- `autocomplete="off"` only for a specific field where a password manager demonstrably47 misfires. WCAG 1.3.5 requires the purpose of fields collecting information about the48 user to be programmatically determinable, and `autocomplete` is how that is met — so a49 blanket `off` on non-auth fields is a conformance failure, not a default50- Warn before navigation with unsaved changes (`beforeunload` or router guard)5152### Animation5354- Honor `prefers-reduced-motion` (provide reduced variant or disable)55- Animate `transform`/`opacity` only (compositor-friendly)56- Never `transition: all`—list properties explicitly57- Set correct `transform-origin`58- SVG: transforms on `<g>` wrapper with `transform-box: fill-box; transform-origin: center`59- Animations interruptible—respond to user input mid-animation6061### Typography6263- `…` not `...`64- Curly quotes `"` `"` not straight `"`65- Non-breaking spaces: `10 MB`, `⌘ K`, brand names66- Loading states end with `…`: `"Loading…"`, `"Saving…"`67- `font-variant-numeric: tabular-nums` for number columns/comparisons68- Use `text-wrap: balance` or `text-pretty` on headings (prevents widows)6970### Content Handling7172- Text containers handle long content: `truncate`, `line-clamp-*`, or `break-words`73- Flex children need `min-w-0` to allow text truncation74- Handle empty states—don't render broken UI for empty strings/arrays75- User-generated content: anticipate short, average, and very long inputs7677### Images7879- `<img>` needs explicit `width` and `height` (prevents CLS)80- Below-fold images: `loading="lazy"`81- Above-fold critical images: `priority` or `fetchpriority="high"`8283### Performance8485- Large lists (>50 items): virtualize (`virtua`, `content-visibility: auto`)86- No layout reads in render (`getBoundingClientRect`, `offsetHeight`, `offsetWidth`, `scrollTop`)87- Batch DOM reads/writes; avoid interleaving88- Prefer uncontrolled inputs; controlled inputs must be cheap per keystroke89- Add `<link rel="preconnect">` for CDN/asset domains90- Critical fonts: `<link rel="preload" as="font">` with `font-display: swap`9192### Navigation & State9394- URL reflects state—filters, tabs, pagination, expanded panels in query params95- Links use `<a>`/`<Link>` (Cmd/Ctrl+click, middle-click support)96- Deep-link all stateful UI (if uses `useState`, consider URL sync via nuqs or similar)97- Destructive actions need confirmation modal or undo window—never immediate9899### Touch & Interaction100101- `touch-action: manipulation` (prevents double-tap zoom delay)102- `-webkit-tap-highlight-color` set intentionally103- `overscroll-behavior: contain` in modals/drawers/sheets104- During drag: disable text selection, `inert` on dragged elements105- `autoFocus` sparingly—desktop only, single primary input; avoid on mobile106107### Safe Areas & Layout108109- Full-bleed layouts need `env(safe-area-inset-*)` for notches110- Avoid unwanted scrollbars: `overflow-x-hidden` on containers, fix content overflow111- Flex/grid over JS measurement for layout112113### Dark Mode & Theming114115- `color-scheme: dark` on `<html>` for dark themes (fixes scrollbar, inputs)116- `<meta name="theme-color">` matches page background117- Native `<select>`: explicit `background-color` and `color` (Windows dark mode)118119### Locale & i18n120121- Dates/times: use `Intl.DateTimeFormat` not hardcoded formats122- Numbers/currency: use `Intl.NumberFormat` not hardcoded formats123- Detect language via `Accept-Language` / `navigator.languages`, not IP124125### Hydration Safety126127- Inputs with `value` need `onChange` (or use `defaultValue` for uncontrolled)128- Date/time rendering: guard against hydration mismatch (server vs client)129- `suppressHydrationWarning` only where truly needed130131### Hover & Interactive States132133- Buttons/links need `hover:` state (visual feedback)134- Interactive states increase contrast: hover/active/focus more prominent than rest135136### Content & Copy137138- Active voice: "Install the CLI" not "The CLI will be installed"139- Sentence case for headings and buttons is the safer default: no per-word case rules and it140 localizes cleanly. Use Title Case only where a brand or navigation convention requires it,141 and then consistently per element type142- Numerals for counts: "8 deployments" not "eight"143- Specific button labels: "Save API Key" not "Continue"144- Error messages include fix/next step, not just problem145- Second person; avoid first person146- `&` over "and" where space-constrained147148### Anti-patterns (flag these)149150- `user-scalable=no` or `maximum-scale=1` disabling zoom151- `onPaste` with `preventDefault`152- `transition: all`153- `outline-none` without focus-visible replacement154- Inline `onClick` navigation without `<a>`155- `<div>` or `<span>` with click handlers (should be `<button>`)156- Images without dimensions157- Large arrays `.map()` without virtualization158- Form inputs without labels159- Icon buttons without `aria-label`160- Hardcoded date/number formats (use `Intl.*`)161- `autoFocus` without clear justification162163## Output Format164165Group by file. Use `file:line` format (VS Code clickable). Terse findings.166167```text168## src/Button.tsx169170src/Button.tsx:42 - icon button missing aria-label171src/Button.tsx:18 - input lacks label172src/Button.tsx:55 - animation missing prefers-reduced-motion173src/Button.tsx:67 - transition: all → list properties174175## src/Modal.tsx176177src/Modal.tsx:12 - missing overscroll-behavior: contain178src/Modal.tsx:34 - "..." → "…"179180## src/Card.tsx181182✓ pass183```184185State issue + location. Skip explanation unless fix non-obvious. No preamble.