惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

U
Unit 42
Vercel News
Vercel News
博客园 - 叶小钗
大猫的无限游戏
大猫的无限游戏
MyScale Blog
MyScale Blog
P
Proofpoint News Feed
量子位
Engineering at Meta
Engineering at Meta
B
Blog RSS Feed
博客园 - 【当耐特】
Recent Announcements
Recent Announcements
Google DeepMind News
Google DeepMind News
D
DataBreaches.Net
Stack Overflow Blog
Stack Overflow Blog
博客园 - 聂微东
小众软件
小众软件
Hugging Face - Blog
Hugging Face - Blog
人人都是产品经理
人人都是产品经理
IT之家
IT之家
T
The Blog of Author Tim Ferriss
Last Week in AI
Last Week in AI
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Jina AI
Jina AI
博客园 - 三生石上(FineUI控件)

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Google PageSpeed's New Agentic Browsing Score: Why a Webs...
naveen gaur · 2026-06-18 · via DEV Community

naveen gaur

Google recently introduced a new category in PageSpeed Insights called Agentic Browsing.

While most developers focus on Performance, Accessibility, Best Practices, and SEO, this new category evaluates something different:

Can AI agents understand and interact with your website effectively?

This is one of the clearest signals yet that websites are increasingly being evaluated not only for human users and search engines, but also for AI systems.


What Is Agentic Browsing?

According to Google's documentation, Agentic Browsing audits are designed to evaluate whether a website is easily understandable and navigable by AI agents.

The current audits focus on areas such as:

  • Accessibility tree quality
  • llms.txt implementation
  • Layout stability
  • WebMCP integration readiness

The goal is simple:

AI systems need reliable signals to understand content, navigation, actions, and business information.

A website that is visually usable for humans may still be difficult for an AI agent to interpret.


A Real Example: SEO 100, Agentic Browsing 0/3

One of the most interesting findings from Google's new audit is that traditional SEO success doesn't guarantee AI readiness.

Example Website

pagespeed data showing agentic ai score

Scores:

  • Performance: 94
  • Accessibility: 77
  • Best Practices: 100
  • SEO: 100
  • Agentic Browsing: 0/3

Despite achieving a perfect SEO score, the site failed Google's Agentic Browsing checks.

The failures included:

  • Accessibility tree issues
  • Invalid or missing llms.txt
  • Accessibility-related interaction problems

This demonstrates an important distinction:

Traditional SEO and AI discoverability overlap, but they are not identical.


What a Passing Agentic Browsing Score Looks Like

For comparison, I also tested my own portfolio website ( naveengaur.com ).

pagespeed data showing agentic ai score

Results:

  • Performance: 100
  • Accessibility: 100
  • Best Practices: 100
  • SEO: 100
  • Agentic Browsing: 3/3

The goal wasn't simply to achieve a perfect score.

The goal was to ensure the website provides clear signals for:

  • Human visitors
  • Search engines
  • Accessibility tools
  • AI systems

Google's Agentic Browsing audit currently evaluates factors such as:

  • Accessibility tree quality
  • llms.txt implementation
  • Layout stability
  • WebMCP readiness

Passing these checks doesn't guarantee AI visibility, but it does indicate that a website is providing cleaner, more machine-readable signals.

What's particularly interesting is the contrast between the two examples:

Metric Client Website NaveenGaur.com
Performance 94 100
SEO 100 100
Agentic Browsing 0/3 3/3

This demonstrates that traditional SEO alone is no longer the complete picture.

As AI-assisted search and recommendation systems become more common, websites need to be optimized not only for rankings and users, but also for machine understanding.

Understanding the Accessibility Tree

One of the most significant Agentic Browsing checks evaluates whether the accessibility tree is properly structured.

For developers, this means ensuring:

  • Buttons have discernible text
  • Links have meaningful labels
  • ARIA roles are appropriate
  • Presentational elements are correctly defined

Example failures reported by Google:

<button role="button" class="owl-dot active"></button>

Without accessible text, humans may understand the UI visually, but AI systems and assistive technologies receive very little context.

Similarly:

<a href="/contact"></a>

A link without meaningful text creates ambiguity for both screen readers and AI systems.

The takeaway:

Semantic HTML matters more than ever.


Why llms.txt Matters

Another Agentic Browsing audit checks for llms.txt recommendations.

A typical failure looks like:

Fetch of llms.txt failed

The purpose of llms.txt is to provide structured guidance for large language models.

Think of it as a machine-readable overview of:

  • Important pages
  • Business offerings
  • Documentation
  • Preferred content locations

While implementation practices are still evolving, Google's inclusion of llms.txt in Lighthouse suggests that machine-readable guidance is becoming increasingly important.


Layout Stability Isn't Just About UX Anymore

Agentic Browsing also evaluates Cumulative Layout Shift (CLS).

Traditionally, CLS was viewed primarily as a user experience metric.

Now it has another implication:

AI agents interacting with websites benefit from predictable interfaces.

When buttons move unexpectedly due to layout shifts:

  • Users click the wrong thing
  • Automation becomes less reliable
  • AI interactions become harder

Stable interfaces improve outcomes for both humans and machines.


What About WebMCP?

Google's audit also references WebMCP.

The current reports include checks such as:

  • WebMCP form coverage
  • WebMCP tools registered
  • WebMCP schema validation

The broader goal is enabling AI systems to identify and interact with website capabilities more reliably.

Examples include:

  • Contact forms
  • Booking systems
  • Search functionality
  • Interactive tools

Although adoption is still early, it's clear that Google expects machine-readable interfaces to play a larger role in the future web.


AI Traffic Is Already Real

One common reaction to Agentic Browsing is:

"This sounds interesting, but are AI systems actually sending traffic?"

In my own analytics, the answer is yes.

Traffic source data for naveengaur.com
Recent traffic sources included:

Source Sessions
Bing Organic 77
ChatGPT Referral 48
Google Organic 23

The numbers themselves aren't the story.

The story is that AI platforms are already generating measurable traffic.

This is no longer theoretical.


Building an AI-Ready Website

If you're maintaining WordPress sites, client websites, or SaaS products, these are the areas worth reviewing today:

Accessibility

  • Button labels
  • Link text
  • ARIA roles
  • Landmark regions
  • Keyboard navigation

Content Structure

  • Proper heading hierarchy
  • Semantic HTML
  • Clear page organization

Technical Foundations

  • llms.txt
  • Structured data
  • Stable layouts
  • Core Web Vitals

Future Readiness

  • Monitor Agentic Browsing audits
  • Evaluate WebMCP opportunities
  • Test machine-readable interactions

Final Thoughts

The introduction of Agentic Browsing may end up being one of the most significant additions to Lighthouse in recent years.

Not because it replaces SEO.

Not because it replaces performance.

But because it introduces a new question:

Can AI systems understand and interact with your website effectively?

As conversational search, AI assistants, and autonomous agents become more common, websites that provide stronger machine-readable signals may gain a meaningful advantage.

For developers, technical SEOs, and WordPress professionals, this is an area worth paying close attention to.


Naveen Gaur is a WordPress Performance Specialist & Full-Stack Consultant specializing in speed optimization, Core Web Vitals, and technical audits for high-performance websites.

Naveen Gaur | WordPress Performance Specialist & Full-Stack Consultant

WordPress Performance Specialist & Full-Stack Consultant | Technical SEO · Emergency Recovery · Custom Web Apps | Helping Founders Fix What Others Can’t

favicon naveengaur.com