Two things break on images independently: accessibility (alt text) and performance (width/height). Most audits check one or the other. This one checks both in a single pass because the fixes are almost always shipped together.
The Image Alt Audit pulls every <img> on a page and grades each against the signals that move WCAG 1.1.1 compliance + Core Web Vitals CLS.
The six failure modes per image
- No
altattribute. The element has noaltat all. WCAG 1.1.1 failure. Screen readers announce the filename, which is usually gibberish. - Empty
alt=""withoutrole="presentation". Meant for decorative images; fine when correctly used, harmful when applied to content images. The tool distinguishes based on context. - Filename-as-alt.
alt="IMG_4821.jpg"oralt="hero-banner-final-v3". Human authored, but the LLM that processes a screen reader request still sees nonsense. The tool detects common filename patterns. - Alt under 5 characters. Almost always useless ("cat" is fine; "c" is not). Often a copy-paste error.
- Alt over 125 characters. Screen readers truncate or pause awkwardly. Consider moving long descriptions to
longdescor a figure caption. - Missing
width/heightattributes. Classic CLS contributor. The browser doesn't know the image's aspect ratio at parse time, so it reserves zero space, then jumps when the image loads. Core Web Vitals penalty.
The AI fix prompt
After audit, one click emits a prompt listing every flagged image with its current state, then asks an LLM to write useful 5-125 character alt strings describing the image content (not "image of X") and emit ready-to-paste <img> snippets with width, height, and loading="lazy" included.
Related reading
- WCAG Accessibility Audit — full WCAG 2.2 AA pass
- WCAG Fix Generator — companion fix tool
- Core Web Vitals Audit — page-weight + LCP / CLS / INP
- Content Credentials — C2PA provenance for images
Fact-check notes and sources
- WCAG 1.1.1 Non-text Content: w3.org/WAI/WCAG22/Understanding/non-text-content.html
- CLS and aspect-ratio: web.dev/articles/cls
- ADA accessibility lawsuit rates: seyfarth.com/news-insights (annual ADA litigation report)
The $97 Launch covers shipping accessible + performant sites from day one. The audit is the checkpoint before every deploy.