# Web Quality Audit
> Comprehensive web quality audit covering performance, accessibility, SEO, and best practices. Use when asked to "audit my site", "review web quality", "run lighthouse audit", "check page quality", or "optimize my website".
Source: https://skillsagentes.com/skills/addyosmani/web-quality-skills/web-quality-audit
Repository: https://github.com/addyosmani/web-quality-skills
Author: addyosmani
License: MIT
Updated: hace 3 meses
Context cost: 56 tok installed, 1.9k tok once triggered, 2.8k tok with every bundled file
Bundle: 2 files, 11 KB
Permissions requested: none declared
## Install
```bash
npx -y skills add addyosmani/web-quality-skills --skill web-quality-audit --agent claude-code
```
## What it does
- Analiza código o proyecto en busca de problemas de calidad web
- Clasifica hallazgos por severidad: Critical, High, Medium, Low
- Da recomendaciones accionables con ejemplos de código
- Estructura los resultados en un formato de informe con resumen y prioridades
## Use it when
- Piden "audit my site" o "review web quality"
- Piden "run lighthouse audit" o "check page quality"
- Piden "optimize my website"
## What triggers it
- "Audita la calidad web de mi sitio"
- "Haz una revisión de calidad web completa"
- "Ejecuta un audit de lighthouse en mi página"
- "Revisa el rendimiento, accesibilidad y SEO de mi web"
## Before you install
- Needs on PATH: jq
- Environment: ISSUES, MAX_FINDINGS, MAX_PER_CATEGORY_PER_FILE, TARGET, WARNINGS
## Files
- SKILL.md — 7 KB
- scripts/analyze.sh — 4 KB
## SKILL.md
Reproduced verbatim from addyosmani/web-quality-skills under MIT. This section is the upstream document and is in English.
# Web quality audit
Comprehensive quality review based on Google Lighthouse audits. Covers Performance, Accessibility, SEO, and Best Practices across 150+ checks.
> **Lighthouse v13 note (Oct 2025+).** Lighthouse has migrated the Performance category from per-opportunity audits to **Performance Insight Audits** ([announcement](https://developer.chrome.com/blog/moving-lighthouse-to-insights)). Several individual audit names this skill historically referenced — *First Meaningful Paint*, *No Document Write*, *Uses Passive Event Listeners*, *Uses Rel Preload* — have been removed or merged. The underlying *advice* is unchanged and still applies; only the report format moved. The CLS-related audits ("layout shifts", "non-composited animations", "unsized images") are now consolidated into a single `cls-culprits-insight`, and image audits are merged into `image-delivery-insight`. Treat older Lighthouse JSON output as a superset, not a contradiction.
## How it works
1. Analyze the provided code/project for quality issues
2. Categorize findings by severity (Critical, High, Medium, Low)
3. Provide specific, actionable recommendations
4. Include code examples for fixes
## Audit categories
### Performance (40% of typical issues)
**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 `` 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 (30% of typical issues)
**Perceivable:**
* **Text alternatives.** Every `` has meaningful `alt` text. Decorative images use `alt=""`.
* **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 `lang` attribute on ``.
* **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 (15% of typical issues)
**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.** 50-60 characters. Primary keyword included.
* **Meta descriptions.** 150-160 characters. Compelling and unique.
* **Heading hierarchy.** Single `