Core Web Vitals and AI Visibility — The Connection
Performance has always been a ranking factor. But for AI crawlers, it has an additional dimension: If your website loads too slowly, the crawler abandons the visit — and your content never gets indexed.
What Are Core Web Vitals?
Core Web Vitals are Google's standardized performance metrics. The three most important:
- LCP (Largest Contentful Paint) — How quickly does the largest visible content load? Target: under 2.5 seconds.
- CLS (Cumulative Layout Shift) — How stable is the layout during loading? Target: under 0.1.
- TBT (Total Blocking Time) — How long does JavaScript block interaction? Target: under 200ms.
Why Performance Matters for AI Crawlers
AI crawlers have a time budget per website. If your page takes 8 seconds to load, the crawler can index fewer pages — or abandons entirely. Fast websites get more pages crawled and more content indexed.
Additionally, AI systems use performance as a quality signal. A fast, well-optimized website signals professional maintenance — an indirect trust signal.
Optimizing LCP
The Largest Contentful Paint is often the hero image or main heading. Key levers:
- Serve images in modern formats (WebP, AVIF)
- Inline critical CSS
- Reduce server response time (TTFB under 600ms)
- Lazy load images below the fold
Reducing CLS
- Always specify
widthandheightfor images - Load web fonts with
font-display: swap - Reserve space for ad banners
- Don't insert dynamic content above existing content
Minimizing TBT
- Remove unused scripts
- Load third-party scripts asynchronously
- Use code splitting — only load what's needed
- Offload heavy computations to Web Workers
What scan8 Measures
The "Performance" category in scan8 runs a full Lighthouse audit. You'll see your performance score (0-100), LCP, CLS, TBT, FCP and Speed Index — with specific ratings and recommendations.
Rule of thumb: A website with a Lighthouse Performance Score above 90 is treated preferentially by AI crawlers. Below 50 needs attention.