Core Web Vitals optimization skill

Optimize Core Web Vitals (LCP, INP, CLS) for better page experience using field and lab evidence.

by addyosmani · MIT license · GitHub ↗
INSTALL
mkdir -p ~/.claude/skills && curl -sL https://codeload.github.com/addyosmani/web-quality-skills/tar.gz/afa8da942115 \
  | tar -xz -C ~/.claude/skills --strip-components=2 web-quality-skills-afa8da942115/skills/core-web-vitals
Copies only this folder into ~/.claude/skills/core-web-vitals, pinned to commit afa8da9 · ✓ run on 25 Sep 2026: all 4 files
Download ZIPOnly this folder · 4 files · 10.8 KB

Files of Core Web Vitals optimization

Files 4 files

Used from elsewhere in the repo

Show the full text229 lines
namedescriptionlicensemetadata
core-web-vitalsOptimize Core Web Vitals (LCP, INP, CLS) for better page experience using field and lab evidence. Use when asked to "improve Core Web Vitals", "fix LCP", "reduce CLS", "optimize INP", "page experience optimization", or "fix layout shifts".MIT author: web-quality-skills version: "2.0

Core Web Vitals optimization

Targeted optimization for the three Core Web Vitals using field data to identify user impact and browser traces to diagnose causes.

Measure before optimizing

When a runnable URL is available, read the performance measurement workflow. Prefer this sequence:

  1. Check page-level CrUX p75 data, with a clearly labeled origin fallback when page data is unavailable.
  2. Record a browser performance trace under stated conditions. With Chrome DevTools MCP, trace summaries can include CrUX alongside the observed lab metrics.
  3. Analyze only the insights associated with the failing metric, then inspect the implicated code and resources.
  4. Re-run equivalent lab measurements after the fix. Do not claim an immediate field improvement; CrUX and first-party RUM need new user visits.

If only source code is available, identify likely causes but do not claim that LCP, INP, or CLS is failing without runtime evidence.

The three metrics

Metric Measures Good Needs work Poor
LCP Loading ≤ 2.5s 2.5s – 4s > 4s
INP Interactivity ≤ 200ms 200ms – 500ms > 500ms
CLS Visual Stability ≤ 0.1 0.1 – 0.25 > 0.25

Google measures at the 75th percentile — 75% of page visits must meet "Good" thresholds.


LCP: Largest Contentful Paint

LCP measures when the largest visible content element renders. Usually this is:

  • Hero image or video
  • Large text block
  • Background image
  • <svg> element
Common LCP issues

1. Slow server response (TTFB > 800ms)

Fix: CDN, caching, optimized backend, edge rendering

2. Render-blocking resources

<!-- ❌ Blocks rendering -->
<link rel="stylesheet" href="/all-styles.css">

<!-- ✅ Critical CSS inlined, rest deferred -->
<style>/* Critical above-fold CSS */</style>
<link rel="preload" href="/styles.css" as="style" 
      onload="this.onload=null;this.rel='stylesheet'">

3. Slow resource load times

<!-- ❌ LCP image is discovered only after a stylesheet loads -->
<div class="hero"></div>

<!-- ✅ Discoverable in initial HTML and prioritized -->
<link rel="preload" href="/hero.webp" as="image" fetchpriority="high">
<img src="/hero.webp" alt="Hero" fetchpriority="high">

Prefer a discoverable <img> with fetchpriority="high". Add the preload only when the trace shows that the resource would otherwise be discovered late; duplicate or speculative preloads can compete for bandwidth.

4. Client-side rendering delays

// ❌ Content loads after JavaScript
useEffect(() => {
  fetch('/api/hero-text').then(r => r.json()).then(setHeroText);
}, []);

// ✅ Server-side or static rendering
// Use SSR, SSG, or streaming to send HTML with content
export async function getServerSideProps() {
  const heroText = await fetchHeroText();
  return { props: { heroText } };
}

5. Make navigations instant with the Speculation Rules API

For sites with predictable same-origin journeys, prerendering a likely next page can make a successful subsequent navigation much faster. Treat this as a measured navigation optimization, not a substitute for fixing the current page's LCP.

<script type="speculationrules">
{
  "prerender": [{
    "where": { "href_matches": "/*" },
    "eagerness": "moderate"
  }]
}
</script>

Current Chrome behavior is specific enough to guide the choice:

eagerness Trigger
conservative Pointer or touch down
moderate Desktop: 200ms hover, or earlier pointer down; mobile: viewport heuristics
eager Chrome 143+: desktop 10ms hover; mobile 50ms after the anchor enters the viewport
immediate As soon as the rules are observed

Start conservatively and measure prediction hit rate, transferred bytes, server load, and navigation improvement before expanding the rules. Recheck Chrome's maintained eagerness documentation before hardcoding timing-sensitive behavior.

Caveats:

  • Bandwidth/CPU cost. Each prerender is roughly a full page load. Scope where carefully (href_matches patterns, exclude logout/checkout) and avoid immediate outside small sites.
  • Side effects fire early. Analytics, ads, and any code that runs on load will fire when the prerender starts, not when the user navigates. Gate side effects on the prerenderingchange event or document.prerendering.
  • Chromium-only. Safari and Firefox ignore the script — it's a progressive enhancement, never a regression.
LCP optimization checklist
- [ ] TTFB < 800ms (use CDN, edge caching)
- [ ] LCP resource is discoverable in initial HTML and prioritized; preload only if the trace shows late discovery
- [ ] LCP image optimized (WebP/AVIF, correct size)
- [ ] Critical CSS inlined (< 14KB)
- [ ] No render-blocking JavaScript in <head>
- [ ] Fonts don't block text rendering (font-display: swap)
- [ ] LCP element in initial HTML (not JS-rendered)
- [ ] Speculation Rules added for likely-next navigations (moderate eagerness)
LCP element identification

This snippet diagnoses the current page session. It is not field data.

// Find your LCP element
new PerformanceObserver((list) => {
  const entries = list.getEntries();
  const lastEntry = entries[entries.length - 1];
  console.log('LCP element:', lastEntry.element);
  console.log('LCP time:', lastEntry.startTime);
}).observe({ type: 'largest-contentful-paint', buffered: true });

INP: Interaction to Next Paint

INP measures responsiveness across clicks, taps, and key presses during a visit. Diagnose its input delay, processing time, and presentation delay separately; a slow interaction may involve main-thread contention before the handler, expensive application work, or delayed rendering after it.

When field INP is poor or a trace identifies a slow interaction, read the INP reference for trace interpretation, yielding patterns, third-party and rendering causes, a single-session observer, and first-party attribution.


CLS: Cumulative Layout Shift

CLS measures unexpected layout shifts across a page visit. Use field attribution or a trace to identify the shifted node and the trigger; do not assume the visible victim caused the shift.

When field CLS is poor or a trace reports shifts, read the CLS reference for reserved-space patterns, dynamic content, font and animation fixes, a debugging observer, and a verification checklist.


Measurement sources

Source Use
Browser performance trace (Chrome DevTools MCP: performance_start_trace) Observe one load or interaction and diagnose focused insights; use included CrUX context when available
CrUX or Search Console Prioritize aggregated real-user outcomes at p75
Lighthouse CLI or PageSpeed Insights Controlled lab fallback when DevTools tools are unavailable
First-party RUM Segment current production experience by route, device, release, and attribution
Raw PerformanceObserver Inspect one page session during debugging

Do not route performance through Chrome DevTools MCP's lighthouse_audit; that capability intentionally covers non-performance Lighthouse categories. Do not compare a single lab value directly with a field p75 as if they were equivalent samples.

When adding or reviewing production collection, read the first-party RUM reference. Prefer the web-vitals library because raw browser APIs do not by themselves implement every Core Web Vital's lifecycle and reporting rules.


Framework quick fixes

Next.js
// LCP: Use next/image with priority
import Image from 'next/image';
<Image src="/hero.jpg" priority fill alt="Hero" />

// INP: Use dynamic imports
const HeavyComponent = dynamic(() => import('./Heavy'), { ssr: false });

// CLS: Image component handles dimensions automatically
React
// LCP: Preload in head
<link rel="preload" href="/hero.jpg" as="image" fetchpriority="high" />

// INP: Memoize and useTransition
const [isPending, startTransition] = useTransition();
startTransition(() => setExpensiveState(newValue));

// CLS: Always specify dimensions in img tags
Vue/Nuxt
<!-- LCP: Use nuxt/image with preload -->
<NuxtImg src="/hero.jpg" preload loading="eager" />

<!-- INP: Use async components -->
<component :is="() => import('./Heavy.vue')" />

<!-- CLS: Use aspect-ratio CSS -->
<img :style="{ aspectRatio: '16/9' }" />

References

1---
2name: core-web-vitals
3description: Optimize Core Web Vitals (LCP, INP, CLS) for better page experience using field and lab evidence. Use when asked to "improve Core Web Vitals", "fix LCP", "reduce CLS", "optimize INP", "page experience optimization", or "fix layout shifts".
4license: MIT
5metadata:
6 author: web-quality-skills
7 version: "2.0"
8---
9 
10# Core Web Vitals optimization
11 
12Targeted optimization for the three Core Web Vitals using field data to identify user impact and browser traces to diagnose causes.
13 
14## Measure before optimizing
15 
16When a runnable URL is available, read [the performance measurement workflow](../performance/references/MEASUREMENT.md). Prefer this sequence:
17 
181. Check page-level CrUX p75 data, with a clearly labeled origin fallback when page data is unavailable.
192. Record a browser performance trace under stated conditions. With Chrome DevTools MCP, trace summaries can include CrUX alongside the observed lab metrics.
203. Analyze only the insights associated with the failing metric, then inspect the implicated code and resources.
214. Re-run equivalent lab measurements after the fix. Do not claim an immediate field improvement; CrUX and first-party RUM need new user visits.
22 
23If only source code is available, identify likely causes but do not claim that LCP, INP, or CLS is failing without runtime evidence.
24 
25## The three metrics
26 
27| Metric | Measures | Good | Needs work | Poor |
28|--------|----------|------|------------|------|
29| **LCP** | Loading | ≤ 2.5s | 2.5s – 4s | > 4s |
30| **INP** | Interactivity | ≤ 200ms | 200ms – 500ms | > 500ms |
31| **CLS** | Visual Stability | ≤ 0.1 | 0.1 – 0.25 | > 0.25 |
32 
33Google measures at the **75th percentile** — 75% of page visits must meet "Good" thresholds.
34 
35---
36 
37## LCP: Largest Contentful Paint
38 
39LCP measures when the largest visible content element renders. Usually this is:
40- Hero image or video
41- Large text block
42- Background image
43- `<svg>` element
44 
45### Common LCP issues
46 
47**1. Slow server response (TTFB > 800ms)**
48```
49Fix: CDN, caching, optimized backend, edge rendering
50```
51 
52**2. Render-blocking resources**
53```html
54<!-- ❌ Blocks rendering -->
55<link rel="stylesheet" href="/all-styles.css">
56 
57<!-- ✅ Critical CSS inlined, rest deferred -->
58<style>/* Critical above-fold CSS */</style>
59<link rel="preload" href="/styles.css" as="style"
60 onload="this.onload=null;this.rel='stylesheet'">
61```
62 
63**3. Slow resource load times**
64```html
65<!-- ❌ LCP image is discovered only after a stylesheet loads -->
66<div class="hero"></div>
67 
68<!-- ✅ Discoverable in initial HTML and prioritized -->
69<link rel="preload" href="/hero.webp" as="image" fetchpriority="high">
70<img src="/hero.webp" alt="Hero" fetchpriority="high">
71```
72 
73Prefer a discoverable `<img>` with `fetchpriority="high"`. Add the preload only when the trace shows that the resource would otherwise be discovered late; duplicate or speculative preloads can compete for bandwidth.
74 
75**4. Client-side rendering delays**
76```javascript
77// ❌ Content loads after JavaScript
78useEffect(() => {
79 fetch('/api/hero-text').then(r => r.json()).then(setHeroText);
80}, []);
81 
82// ✅ Server-side or static rendering
83// Use SSR, SSG, or streaming to send HTML with content
84export async function getServerSideProps() {
85 const heroText = await fetchHeroText();
86 return { props: { heroText } };
87}
88```
89 
90**5. Make navigations instant with the Speculation Rules API**
91 
92For sites with predictable same-origin journeys, prerendering a likely next page can make a successful subsequent navigation much faster. Treat this as a measured navigation optimization, not a substitute for fixing the current page's LCP.
93 
94```html
95<script type="speculationrules">
96{
97 "prerender": [{
98 "where": { "href_matches": "/*" },
99 "eagerness": "moderate"
100 }]
101}
102</script>
103```
104 
105Current Chrome behavior is specific enough to guide the choice:
106 
107| `eagerness` | Trigger |
108|-------------|---------|
109| `conservative` | Pointer or touch down |
110| `moderate` | Desktop: 200ms hover, or earlier pointer down; mobile: viewport heuristics |
111| `eager` | Chrome 143+: desktop 10ms hover; mobile 50ms after the anchor enters the viewport |
112| `immediate` | As soon as the rules are observed |
113 
114Start conservatively and measure prediction hit rate, transferred bytes, server load, and navigation improvement before expanding the rules. Recheck [Chrome's maintained eagerness documentation](https://developer.chrome.com/docs/web-platform/prerender-pages#eagerness) before hardcoding timing-sensitive behavior.
115 
116Caveats:
117- **Bandwidth/CPU cost.** Each prerender is roughly a full page load. Scope `where` carefully (`href_matches` patterns, exclude logout/checkout) and avoid `immediate` outside small sites.
118- **Side effects fire early.** Analytics, ads, and any code that runs on load will fire when the prerender starts, not when the user navigates. Gate side effects on the [`prerenderingchange` event](https://developer.chrome.com/docs/web-platform/prerender-pages#detect_when_a_page_is_prerendered_or_used_for_a_full_navigation) or `document.prerendering`.
119- **Chromium-only.** Safari and Firefox ignore the script — it's a progressive enhancement, never a regression.
120 
121### LCP optimization checklist
122 
123```markdown
124- [ ] TTFB < 800ms (use CDN, edge caching)
125- [ ] LCP resource is discoverable in initial HTML and prioritized; preload only if the trace shows late discovery
126- [ ] LCP image optimized (WebP/AVIF, correct size)
127- [ ] Critical CSS inlined (< 14KB)
128- [ ] No render-blocking JavaScript in <head>
129- [ ] Fonts don't block text rendering (font-display: swap)
130- [ ] LCP element in initial HTML (not JS-rendered)
131- [ ] Speculation Rules added for likely-next navigations (moderate eagerness)
132```
133 
134### LCP element identification
135 
136This snippet diagnoses the current page session. It is not field data.
137 
138```javascript
139// Find your LCP element
140new PerformanceObserver((list) => {
141 const entries = list.getEntries();
142 const lastEntry = entries[entries.length - 1];
143 console.log('LCP element:', lastEntry.element);
144 console.log('LCP time:', lastEntry.startTime);
145}).observe({ type: 'largest-contentful-paint', buffered: true });
146```
147 
148---
149 
150## INP: Interaction to Next Paint
151 
152INP measures responsiveness across clicks, taps, and key presses during a visit. Diagnose its input delay, processing time, and presentation delay separately; a slow interaction may involve main-thread contention before the handler, expensive application work, or delayed rendering after it.
153 
154When field INP is poor or a trace identifies a slow interaction, read [the INP reference](references/INP.md) for trace interpretation, yielding patterns, third-party and rendering causes, a single-session observer, and first-party attribution.
155 
156---
157 
158## CLS: Cumulative Layout Shift
159 
160CLS measures unexpected layout shifts across a page visit. Use field attribution or a trace to identify the shifted node and the trigger; do not assume the visible victim caused the shift.
161 
162When field CLS is poor or a trace reports shifts, read [the CLS reference](references/CLS.md) for reserved-space patterns, dynamic content, font and animation fixes, a debugging observer, and a verification checklist.
163 
164---
165 
166## Measurement sources
167 
168| Source | Use |
169|--------|-----|
170| Browser performance trace (Chrome DevTools MCP: `performance_start_trace`) | Observe one load or interaction and diagnose focused insights; use included CrUX context when available |
171| CrUX or Search Console | Prioritize aggregated real-user outcomes at p75 |
172| Lighthouse CLI or PageSpeed Insights | Controlled lab fallback when DevTools tools are unavailable |
173| First-party RUM | Segment current production experience by route, device, release, and attribution |
174| Raw `PerformanceObserver` | Inspect one page session during debugging |
175 
176Do not route performance through Chrome DevTools MCP's `lighthouse_audit`; that capability intentionally covers non-performance Lighthouse categories. Do not compare a single lab value directly with a field p75 as if they were equivalent samples.
177 
178When adding or reviewing production collection, read [the first-party RUM reference](../performance/references/RUM.md). Prefer the `web-vitals` library because raw browser APIs do not by themselves implement every Core Web Vital's lifecycle and reporting rules.
179 
180---
181 
182## Framework quick fixes
183 
184### Next.js
185```jsx
186// LCP: Use next/image with priority
187import Image from 'next/image';
188<Image src="/hero.jpg" priority fill alt="Hero" />
189 
190// INP: Use dynamic imports
191const HeavyComponent = dynamic(() => import('./Heavy'), { ssr: false });
192 
193// CLS: Image component handles dimensions automatically
194```
195 
196### React
197```jsx
198// LCP: Preload in head
199<link rel="preload" href="/hero.jpg" as="image" fetchpriority="high" />
200 
201// INP: Memoize and useTransition
202const [isPending, startTransition] = useTransition();
203startTransition(() => setExpensiveState(newValue));
204 
205// CLS: Always specify dimensions in img tags
206```
207 
208### Vue/Nuxt
209```vue
210<!-- LCP: Use nuxt/image with preload -->
211<NuxtImg src="/hero.jpg" preload loading="eager" />
212 
213<!-- INP: Use async components -->
214<component :is="() => import('./Heavy.vue')" />
215 
216<!-- CLS: Use aspect-ratio CSS -->
217<img :style="{ aspectRatio: '16/9' }" />
218```
219 
220## References
221 
222- [Detailed LCP optimization](references/LCP.md) — read when an LCP trace points to discovery, loading, or render delay
223- [Detailed INP optimization](references/INP.md) — read when a trace or field attribution identifies a slow interaction
224- [Detailed CLS optimization](references/CLS.md) — read when a trace or field attribution identifies unexpected shifts
225- [web.dev LCP](https://web.dev/articles/lcp)
226- [web.dev INP](https://web.dev/articles/inp)
227- [web.dev CLS](https://web.dev/articles/cls)
228- [Performance skill](../performance/SKILL.md)
229