Web quality audit
Run an evidence-led web quality audit covering performance, accessibility, SEO, best practices, and agentic browsing.
How to use it
Claude Code
- Run the line below. It pulls the whole folder into
~/.claude/skills/web-quality-audit, including the files SKILL.md points to. - Describe your job in plain words. Claude Code follows the skill from there.
npx degit addyosmani/web-quality-skills/skills/web-quality-audit#main ~/.claude/skills/web-quality-auditFor one project only, change the path to .claude/skills/web-quality-audit. This skill also uses robots.txt, llms.txt — copying SKILL.md alone won't be enough. See the folder on GitHub.
Claude (web or desktop app)
- On this page open ⋯ → Download .md.
- Save it as SKILL.md in a folder, zip the folder, then Customize → Skills → + → Create skill → Upload a skill.
- Pick the file and Save. Claude shows the name and description and runs a security scan.
- Check the skill is switched on.
- Start a new chat and describe your job in plain words. The AI follows the skill from there.
ChatGPT or another app
- ChatGPT: make a Project and paste it into Instructions.
- Neither? Paste it at the top of a new chat — it works for that chat.
Not working?
- Check which app you pasted it into — the steps above name the right one.
- Some skills need the paid tier of Claude or ChatGPT.
Paste into Claude, ChatGPT or Cursor.
Source of Web quality audit
Show the full text210 lines
| name | description | license | metadata |
|---|---|---|---|
| web-quality-audit | Run an evidence-led web quality audit covering performance, accessibility, SEO, best practices, and agentic browsing. Use when asked to "audit my site", "review web quality", "run lighthouse audit", "check page quality", or "optimize my website". | MIT | author: web-quality-skills version: "2.0 |
Web quality audit
Comprehensive quality review that combines live browser evidence with source inspection. Covers Performance, Accessibility, SEO, Best Practices, and Agentic Browsing without treating an aggregate score as proof of quality.
Lighthouse 13+. The Performance category now uses shared Performance Insights across Lighthouse and the DevTools Performance panel (announcement). Follow current insight names and evidence. Do not require removed audit IDs or automatically recreate their recommendations; some were retired because they were noisy, inactionable, or easy to over-recommend.
How it works
- Establish the audit target: representative URLs, important states and journeys, public versus authenticated access, and mobile/desktop scope.
- If a page can run, read the measurement workflow and collect a minimal live baseline before searching the codebase broadly.
- Use runtime failures to localize source inspection. Keep measured findings separate from hypotheses found only in code.
- Categorize by user impact and confidence, then make or recommend specific fixes.
- Re-run equivalent automated checks and the affected manual flows. Report what is verified and what still needs field or human validation.
Tool routing
Use the best capability already available; do not block the audit on optional setup.
| Need | Preferred route | Fallback |
|---|---|---|
| Performance and Core Web Vitals | Record a browser performance trace and analyze focused insights; with Chrome DevTools MCP, use performance_start_trace then performance_analyze_insight |
Lighthouse CLI or PageSpeed Insights lab data |
| Real-user performance | CrUX values included in current DevTools trace summaries | PageSpeed Insights/CrUX Vis; direct CrUX API only when a key is already available or automation is requested |
| Accessibility, SEO, Best Practices, Agentic Browsing | Run a live Lighthouse audit; with Chrome DevTools MCP, use lighthouse_audit |
Category-specific Lighthouse CLI audits plus manual checks |
| Rendered semantics and interaction | Inspect the accessibility tree and exercise the UI; with Chrome DevTools MCP, use take_snapshot and focused evaluate_script |
Browser/manual testing |
| Source smoke test | scripts/analyze.sh <path> |
Direct source inspection |
Chrome DevTools MCP's lighthouse_audit intentionally excludes performance. Its navigation mode reloads the page; use snapshot mode when preserving the current authenticated or user-created state matters. The static analyzer is a fast smoke test, not a substitute for a rendered-page audit.
Audit categories
Performance
Core Web Vitals — Must pass for good page experience:
- LCP (Largest Contentful Paint) < 2.5s. The largest visible element must render quickly. Optimize images, fonts, and server response time.
- INP (Interaction to Next Paint) < 200ms. User interactions must feel instant. Reduce JavaScript execution time and break up long tasks.
- CLS (Cumulative Layout Shift) < 0.1. Content must not jump around. Set explicit dimensions on images, embeds, and ads.
Resource Optimization:
- Compress images. Use WebP/AVIF with fallbacks. Serve correctly sized images via
srcset. - Minimize JavaScript. Remove unused code. Use code splitting. Defer non-critical scripts.
- Optimize CSS. Extract critical CSS. Remove unused styles. Avoid
@import. - Efficient fonts. Use
font-display: swap. Preload critical fonts. Subset to needed characters.
Loading Strategy:
- Preconnect to origins. Add
<link rel="preconnect">for third-party domains. - Preload critical assets. LCP images, fonts, and above-fold CSS.
- Lazy load below-fold content. Images, iframes, and heavy components.
- Cache effectively. Long cache TTLs for static assets. Immutable caching for hashed files.
Accessibility
Perceivable:
- Text alternatives. Every
<img>has meaningfulalttext. Decorative images usealt="". - Color contrast. Minimum 4.5:1 for normal text, 3:1 for large text (WCAG AA).
- Don't rely on color alone. Use icons, patterns, or text alongside color indicators.
- Captions and transcripts. Video has captions. Audio has transcripts.
Operable:
- Keyboard accessible. All functionality available via keyboard. No keyboard traps.
- Focus visible. Clear focus indicators on all interactive elements.
- Skip links. Provide "Skip to main content" for keyboard users.
- Sufficient time. Users can extend time limits. No auto-advancing content without controls.
Understandable:
- Page language. Set
langattribute on<html>. - Consistent navigation. Same navigation structure across pages.
- Error identification. Form errors clearly described and associated with fields.
- Labels and instructions. All form inputs have associated labels.
Robust:
- Valid HTML. No duplicate IDs. Properly nested elements.
- ARIA used correctly. Prefer native elements. ARIA roles match behavior.
- Name, role, value. Interactive elements have accessible names and correct roles.
SEO
Crawlability:
- Valid robots.txt. Doesn't block important resources.
- XML sitemap. Lists all important pages. Submitted to Search Console.
- Canonical URLs. Prevent duplicate content issues.
- No noindex on important pages. Check meta robots and headers.
On-Page SEO:
- Unique title tags. Make each title descriptive and concise; display truncation varies by device and result type.
- Meta descriptions. Write useful, page-specific summaries; search engines may choose a different snippet.
- Heading hierarchy. The primary heading is descriptive and the structure is logical; do not fail valid HTML solely for using more than one
<h1>. - Descriptive link text. Not "click here" or "read more".
Technical SEO:
- Mobile-friendly. Responsive design. Tap targets ≥ 48px.
- HTTPS. Secure connection required.
- Page experience signals. Use field Core Web Vitals as evidence, without promising a ranking change.
- Structured data. JSON-LD for rich snippets (Article, Product, FAQ, etc.).
Best practices
Security:
- HTTPS everywhere. No mixed content. HSTS enabled.
- No vulnerable libraries. Keep dependencies updated.
- CSP headers. Content Security Policy to prevent XSS.
- No exposed source maps. In production builds.
Modern Standards:
- No deprecated APIs. Replace
document.write, synchronous XHR, etc. - Valid doctype. Use
<!DOCTYPE html>. - Charset declared.
<meta charset="UTF-8">as first element in<head>. - No browser errors. Clean console. No CORS issues.
UX Patterns:
- No intrusive interstitials. Especially on mobile.
- Clear permission requests. Only ask when needed, with context.
- No misleading buttons. Buttons do what they say.
Agentic browsing
Use the Lighthouse Agentic Browsing results as technical signals for how well assistants can understand and interact with the rendered page.
- Accessible interaction surface. Semantic HTML, labels, names, roles, and states must expose meaningful controls in the accessibility tree.
- WebMCP integrations are valid when present. Review registered tools, schemas, and form coverage; do not add WebMCP solely to raise an audit score.
llms.txtis optional. A valid file may help compatible tools discover curated content, but a Lighthouse pass does not prove that search or AI products will ingest, rank, or cite it.- Keep this category separate from SEO claims. Agentic browsability is not evidence of search ranking or AI visibility.
Severity levels
| Level | Description | Action |
|---|---|---|
| Critical | Security vulnerabilities, complete failures | Fix immediately |
| High | Core Web Vitals failures, major a11y barriers | Fix before launch |
| Medium | Performance opportunities, SEO improvements | Fix within sprint |
| Low | Minor optimizations, code quality | Fix when convenient |
Audit output format
When performing an audit, structure findings as:
## Audit results
### Evidence
| Signal | Scope/conditions | Result | Source |
|--------|------------------|--------|--------|
| LCP | URL, phone, p75/28 days | 3.1s (needs improvement) | CrUX |
| Accessibility | URL, mobile navigation | 92 | Lighthouse |
### Critical issues (X found)
- **[Category]** Issue description. File: `path/to/file.js:123`
- **Impact:** Why this matters
- **Evidence:** Measured failure, runtime observation, or source hypothesis
- **Fix:** Specific code change or recommendation
### High priority (X found)
...
### Summary
- Performance: measured status and X findings
- Accessibility: automated status, X findings, manual checks pending/passed
- SEO: X findings
- Best Practices: X findings
- Agentic Browsing: X findings or not available
### Recommended priority
1. First fix this because...
2. Then address...
3. Finally optimize...
### Verification
- Re-run results under the same conditions
- Manual checks completed
- Field validation still pending
Quick checklist
Before every deploy
- Core Web Vitals passing
- No accessibility errors (axe/Lighthouse)
- No console errors
- HTTPS working
- Meta tags present
Weekly review
- Check Search Console for issues
- Review Core Web Vitals trends
- Update dependencies
- Test with screen reader
Monthly deep dive
- Full Lighthouse audit
- Performance profiling
- Accessibility audit with real users
- SEO keyword review
References
For detailed guidelines on specific areas:
| 1 | |
| 2 | name web-quality-audit |
| 3 | description Run an evidence-led web quality audit covering performance, accessibility, SEO, best practices, and agentic browsing. Use when asked to "audit my site", "review web quality", "run lighthouse audit", "check page quality", or "optimize my website". |
| 4 | license MIT |
| 5 | metadata |
| 6 | author web-quality-skills |
| 7 | version "2.0" |
| 8 | |
| 9 | |
| 10 | # Web quality audit |
| 11 | |
| 12 | Comprehensive quality review that combines live browser evidence with source inspection. Covers Performance, Accessibility, SEO, Best Practices, and Agentic Browsing without treating an aggregate score as proof of quality. |
| 13 | |
| 14 | > **Lighthouse 13+.** The Performance category now uses shared **Performance Insights** across Lighthouse and the DevTools Performance panel ([announcement]). Follow current insight names and evidence. Do not require removed audit IDs or automatically recreate their recommendations; some were retired because they were noisy, inactionable, or easy to over-recommend. |
| 15 | |
| 16 | ## How it works |
| 17 | |
| 18 | Establish the audit target: representative URLs, important states and journeys, public versus authenticated access, and mobile/desktop scope. |
| 19 | If a page can run, read [the measurement workflow] and collect a minimal live baseline before searching the codebase broadly. |
| 20 | Use runtime failures to localize source inspection. Keep measured findings separate from hypotheses found only in code. |
| 21 | Categorize by user impact and confidence, then make or recommend specific fixes. |
| 22 | Re-run equivalent automated checks and the affected manual flows. Report what is verified and what still needs field or human validation. |
| 23 | |
| 24 | ## Tool routing |
| 25 | |
| 26 | Use the best capability already available; do not block the audit on optional setup. |
| 27 | |
| 28 | | Need | Preferred route | Fallback | |
| 29 | |------|-----------------|----------| |
| 30 | | Performance and Core Web Vitals | Record a browser performance trace and analyze focused insights; with Chrome DevTools MCP, use `performance_start_trace` then `performance_analyze_insight` | Lighthouse CLI or PageSpeed Insights lab data | |
| 31 | | Real-user performance | CrUX values included in current DevTools trace summaries | PageSpeed Insights/CrUX Vis; direct CrUX API only when a key is already available or automation is requested | |
| 32 | | Accessibility, SEO, Best Practices, Agentic Browsing | Run a live Lighthouse audit; with Chrome DevTools MCP, use `lighthouse_audit` | Category-specific Lighthouse CLI audits plus manual checks | |
| 33 | | Rendered semantics and interaction | Inspect the accessibility tree and exercise the UI; with Chrome DevTools MCP, use `take_snapshot` and focused `evaluate_script` | Browser/manual testing | |
| 34 | | Source smoke test | `scripts/analyze.sh <path>` | Direct source inspection | |
| 35 | |
| 36 | Chrome DevTools MCP's `lighthouse_audit` intentionally excludes performance. Its navigation mode reloads the page; use snapshot mode when preserving the current authenticated or user-created state matters. The static analyzer is a fast smoke test, not a substitute for a rendered-page audit. |
| 37 | |
| 38 | ## Audit categories |
| 39 | |
| 40 | ### Performance |
| 41 | |
| 42 | **Core Web Vitals** — Must pass for good page experience: |
| 43 | **LCP (Largest Contentful Paint) < 2.5s.** The largest visible element must render quickly. Optimize images, fonts, and server response time. |
| 44 | **INP (Interaction to Next Paint) < 200ms.** User interactions must feel instant. Reduce JavaScript execution time and break up long tasks. |
| 45 | **CLS (Cumulative Layout Shift) < 0.1.** Content must not jump around. Set explicit dimensions on images, embeds, and ads. |
| 46 | |
| 47 | **Resource Optimization:** |
| 48 | **Compress images.** Use WebP/AVIF with fallbacks. Serve correctly sized images via `srcset`. |
| 49 | **Minimize JavaScript.** Remove unused code. Use code splitting. Defer non-critical scripts. |
| 50 | **Optimize CSS.** Extract critical CSS. Remove unused styles. Avoid `@import`. |
| 51 | **Efficient fonts.** Use `font-display: swap`. Preload critical fonts. Subset to needed characters. |
| 52 | |
| 53 | **Loading Strategy:** |
| 54 | **Preconnect to origins.** Add `<link rel="preconnect">` for third-party domains. |
| 55 | **Preload critical assets.** LCP images, fonts, and above-fold CSS. |
| 56 | **Lazy load below-fold content.** Images, iframes, and heavy components. |
| 57 | **Cache effectively.** Long cache TTLs for static assets. Immutable caching for hashed files. |
| 58 | |
| 59 | ### Accessibility |
| 60 | |
| 61 | **Perceivable:** |
| 62 | **Text alternatives.** Every `<img>` has meaningful `alt` text. Decorative images use `alt=""`. |
| 63 | **Color contrast.** Minimum 4.5:1 for normal text, 3:1 for large text (WCAG AA). |
| 64 | **Don't rely on color alone.** Use icons, patterns, or text alongside color indicators. |
| 65 | **Captions and transcripts.** Video has captions. Audio has transcripts. |
| 66 | |
| 67 | **Operable:** |
| 68 | **Keyboard accessible.** All functionality available via keyboard. No keyboard traps. |
| 69 | **Focus visible.** Clear focus indicators on all interactive elements. |
| 70 | **Skip links.** Provide "Skip to main content" for keyboard users. |
| 71 | **Sufficient time.** Users can extend time limits. No auto-advancing content without controls. |
| 72 | |
| 73 | **Understandable:** |
| 74 | **Page language.** Set `lang` attribute on `<html>`. |
| 75 | **Consistent navigation.** Same navigation structure across pages. |
| 76 | **Error identification.** Form errors clearly described and associated with fields. |
| 77 | **Labels and instructions.** All form inputs have associated labels. |
| 78 | |
| 79 | **Robust:** |
| 80 | **Valid HTML.** No duplicate IDs. Properly nested elements. |
| 81 | **ARIA used correctly.** Prefer native elements. ARIA roles match behavior. |
| 82 | **Name, role, value.** Interactive elements have accessible names and correct roles. |
| 83 | |
| 84 | ### SEO |
| 85 | |
| 86 | **Crawlability:** |
| 87 | **Valid robots.txt.** Doesn't block important resources. |
| 88 | **XML sitemap.** Lists all important pages. Submitted to Search Console. |
| 89 | **Canonical URLs.** Prevent duplicate content issues. |
| 90 | **No noindex on important pages.** Check meta robots and headers. |
| 91 | |
| 92 | **On-Page SEO:** |
| 93 | **Unique title tags.** Make each title descriptive and concise; display truncation varies by device and result type. |
| 94 | **Meta descriptions.** Write useful, page-specific summaries; search engines may choose a different snippet. |
| 95 | **Heading hierarchy.** The primary heading is descriptive and the structure is logical; do not fail valid HTML solely for using more than one `<h1>`. |
| 96 | **Descriptive link text.** Not "click here" or "read more". |
| 97 | |
| 98 | **Technical SEO:** |
| 99 | **Mobile-friendly.** Responsive design. Tap targets ≥ 48px. |
| 100 | **HTTPS.** Secure connection required. |
| 101 | **Page experience signals.** Use field Core Web Vitals as evidence, without promising a ranking change. |
| 102 | **Structured data.** JSON-LD for rich snippets (Article, Product, FAQ, etc.). |
| 103 | |
| 104 | ### Best practices |
| 105 | |
| 106 | **Security:** |
| 107 | **HTTPS everywhere.** No mixed content. HSTS enabled. |
| 108 | **No vulnerable libraries.** Keep dependencies updated. |
| 109 | **CSP headers.** Content Security Policy to prevent XSS. |
| 110 | **No exposed source maps.** In production builds. |
| 111 | |
| 112 | **Modern Standards:** |
| 113 | **No deprecated APIs.** Replace `document.write`, synchronous XHR, etc. |
| 114 | **Valid doctype.** Use `<!DOCTYPE html>`. |
| 115 | **Charset declared.** `<meta charset="UTF-8">` as first element in `<head>`. |
| 116 | **No browser errors.** Clean console. No CORS issues. |
| 117 | |
| 118 | **UX Patterns:** |
| 119 | **No intrusive interstitials.** Especially on mobile. |
| 120 | **Clear permission requests.** Only ask when needed, with context. |
| 121 | **No misleading buttons.** Buttons do what they say. |
| 122 | |
| 123 | ### Agentic browsing |
| 124 | |
| 125 | Use the Lighthouse Agentic Browsing results as technical signals for how well assistants can understand and interact with the rendered page. |
| 126 | |
| 127 | **Accessible interaction surface.** Semantic HTML, labels, names, roles, and states must expose meaningful controls in the accessibility tree. |
| 128 | **WebMCP integrations are valid when present.** Review registered tools, schemas, and form coverage; do not add WebMCP solely to raise an audit score. |
| 129 | **`llms.txt` is optional.** A valid file may help compatible tools discover curated content, but a Lighthouse pass does not prove that search or AI products will ingest, rank, or cite it. |
| 130 | **Keep this category separate from SEO claims.** Agentic browsability is not evidence of search ranking or AI visibility. |
| 131 | |
| 132 | ## Severity levels |
| 133 | |
| 134 | | Level | Description | Action | |
| 135 | |-------|-------------|--------| |
| 136 | | **Critical** | Security vulnerabilities, complete failures | Fix immediately | |
| 137 | | **High** | Core Web Vitals failures, major a11y barriers | Fix before launch | |
| 138 | | **Medium** | Performance opportunities, SEO improvements | Fix within sprint | |
| 139 | | **Low** | Minor optimizations, code quality | Fix when convenient | |
| 140 | |
| 141 | ## Audit output format |
| 142 | |
| 143 | When performing an audit, structure findings as: |
| 144 | |
| 145 | |
| 146 | ## Audit results |
| 147 | |
| 148 | ### Evidence |
| 149 | | Signal | Scope/conditions | Result | Source | |
| 150 | |--------|------------------|--------|--------| |
| 151 | | LCP | URL, phone, p75/28 days | 3.1s (needs improvement) | CrUX | |
| 152 | | Accessibility | URL, mobile navigation | 92 | Lighthouse | |
| 153 | |
| 154 | ### Critical issues (X found) |
| 155 | - **[Category]** Issue description. File: `path/to/file.js:123` |
| 156 | - **Impact:** Why this matters |
| 157 | - **Evidence:** Measured failure, runtime observation, or source hypothesis |
| 158 | - **Fix:** Specific code change or recommendation |
| 159 | |
| 160 | ### High priority (X found) |
| 161 | ... |
| 162 | |
| 163 | ### Summary |
| 164 | - Performance: measured status and X findings |
| 165 | - Accessibility: automated status, X findings, manual checks pending/passed |
| 166 | - SEO: X findings |
| 167 | - Best Practices: X findings |
| 168 | - Agentic Browsing: X findings or not available |
| 169 | |
| 170 | ### Recommended priority |
| 171 | 1. First fix this because... |
| 172 | 2. Then address... |
| 173 | 3. Finally optimize... |
| 174 | |
| 175 | ### Verification |
| 176 | - Re-run results under the same conditions |
| 177 | - Manual checks completed |
| 178 | - Field validation still pending |
| 179 | |
| 180 | |
| 181 | ## Quick checklist |
| 182 | |
| 183 | ### Before every deploy |
| 184 | [ ] Core Web Vitals passing |
| 185 | [ ] No accessibility errors (axe/Lighthouse) |
| 186 | [ ] No console errors |
| 187 | [ ] HTTPS working |
| 188 | [ ] Meta tags present |
| 189 | |
| 190 | ### Weekly review |
| 191 | [ ] Check Search Console for issues |
| 192 | [ ] Review Core Web Vitals trends |
| 193 | [ ] Update dependencies |
| 194 | [ ] Test with screen reader |
| 195 | |
| 196 | ### Monthly deep dive |
| 197 | [ ] Full Lighthouse audit |
| 198 | [ ] Performance profiling |
| 199 | [ ] Accessibility audit with real users |
| 200 | [ ] SEO keyword review |
| 201 | |
| 202 | ## References |
| 203 | |
| 204 | For detailed guidelines on specific areas: |
| 205 | [Performance Optimization] |
| 206 | [Core Web Vitals] |
| 207 | [Accessibility] |
| 208 | [SEO] |
| 209 | [Best Practices] |
| 210 |
Discussion
Browse more free Claude skills or everything in Marketing.