core-web-vitals

Optimize LCP, INP, and CLS with prioritized remediation plans.

11|2|Updated Jan 15, 2026
One-click install
npx skills add https://github.com/runkids/my-skills --skill core-web-vitals
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: core-web-vitals
Source: https://github.com/runkids/my-skills/tree/main/core-web-vitals
Command: npx skills add https://github.com/runkids/my-skills --skill core-web-vitals

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve?

This Skill helps teams diagnose and optimize Core Web Vitals (LCP, INP, CLS) to improve page experience and search rankings, reducing user friction and bounce rates.

Core Features & Use Cases

  • Guided optimization of LCP, INP, and CLS with actionable steps and checks.
  • Real-world scenarios: optimizing the homepage hero, product detail pages, and content feeds where performance or layout shifts occur.
  • Reference-driven remediation: leverages the included LCP/INP/CLS references to implement recommended techniques and validate improvements.

Quick Start

Optimize the Core Web Vitals for the target page to reduce loading time, improve interactivity, and stabilize layout, then provide a prioritized action plan and implementation notes.

Frequently Asked Questions about core-web-vitals

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I improve Core Web Vitals scores for better page experience?

Core Web Vitals—LCP (Largest Contentful Paint), INP (Interaction to Next Paint), and CLS (Cumulative Layout Shift)—are Google's metrics for page experience and search ranking. Optimize them by addressing slow load times, unresponsive interactions, and layout shifts through resource scheduling, image optimization, critical CSS, and SSR/CSR strategies.

What's the difference between LCP, INP, and CLS, and why do they matter?

LCP measures loading performance (how fast content appears), INP measures interactivity (how quickly the page responds to input), and CLS measures visual stability (how much the layout shifts unexpectedly). Together they determine your page experience score and influence search rankings.

How do I fix slow Largest Contentful Paint on my homepage or product pages?

LCP delays stem from unoptimized images, render-blocking resources, or server latency. Prioritize critical resources, optimize and defer images, implement critical CSS extraction, and consider SSR to render content server-side before sending to the browser.

Can I reduce layout shifts without rewriting my frontend code?

Layout shifts (CLS) often come from late-loading ads, images without dimensions, or dynamic content injection. Reserve space for dynamic elements, set explicit width and height attributes, defer third-party scripts, and avoid inserting content above existing elements.

What's the fastest way to diagnose Core Web Vitals problems on multiple pages?

Run targeted diagnosis on marketing, product, and content pages where performance issues manifest. Analyze each page type separately—heroes and feeds have different bottlenecks—then apply a prioritized remediation plan addressing the highest-impact metrics first.

Do I need to rebuild my site to meet Core Web Vitals thresholds?

Not necessarily. Many improvements—image optimization, resource scheduling, critical CSS, and layout stabilization—work within existing architectures. However, CSR sites may benefit from SSR or hybrid rendering to reduce initial load times and improve LCP.