Table of contents of the article:
Over the past few days, many developers, technical SEOs, and webmasters have begun to notice a new entry in their Google PageSpeed Insights and Lighthouse reports: Agentic Browsing, translatable into Italian as agentic navigation o agent-based navigationThis isn't just a simple interface change, nor yet another minor control added to Lighthouse. It's rather a very interesting sign of the direction Google, Chrome, and the entire web ecosystem are heading: a web no longer designed just to be read and used by humans, but also by AI agents capable of interpreting a page, understanding the available actions and interacting with forms, buttons and interfaces.
The new feature comes with Lighthouse 13.3.0, the version that introduced the category Agentic Browsing in the default configuration. This means that agentive navigation is no longer just a hidden experiment or reserved for those who perform specific configurations, but is starting to become visible in the tools that many professionals already use daily to measure a page's technical quality, performance, accessibility, and SEO.
It's good to clarify this right away: Agentic Browsing is not a new Core Web VitalIt doesn't replace metrics like Largest Contentful Paint, Interaction to Next Paint, or Cumulative Layout Shift. It's not even, at least not currently, a declared SEO factor by Google Search. Instead, it's a new experimental Lighthouse category that attempts to answer a different question: How easy is it for an AI agent to understand and use this page?
What does agentic navigation mean?
To understand the concept, we need to start with the word "agent." An AI agent is software capable of performing tasks with a certain degree of autonomy. It doesn't just read text or return a response; it can observe a web page, interpret its structure, identify interactive elements, and attempt to complete a task.
For example, a user could ask their AI assistant to book a table, fill out a quote request, find a product on an e-commerce site, sign up for a newsletter, compare hosting plans, or retrieve specific technical information from online documentation. To perform these actions, the agent must understand which elements of the page are content, which are buttons, which are input fields, which data is required, and what action is performed by submitting a form.
A human can often navigate even an imperfect interface based on visual context, experience, intuition, and trial and error. An AI agent, however, requires more explicit cues: correct markup, programmatic names, field labels, consistent roles, an accessible structure, a stable layout, and, ultimately, specific metadata describing the available actions.
Why is this news important?
The new Agentic Browsing category represents a shift in perspective. For years, we've evaluated a site's quality primarily based on speed, accessibility, best practices, technical SEO, and mobile compatibility. These are still crucial elements. However, the web is entering a phase where a growing portion of interactions could be mediated by AI assistants, intelligent browsers, and automated systems.
In this scenario, it is no longer enough for a page to be fast and beautiful to look at. It must also be understandable by machinesNot in the old text-crawling sense, but in a more operational sense: the machine must be able to understand what it can do on the page and how to do it reliably.
This is where agentic navigation comes in. Lighthouse attempts to measure whether a page is designed to allow an agent to interact with it without unnecessary ambiguity. For a showcase site, it may seem like a secondary issue, but for e-commerce sites, booking portals, contact forms, member areas, knowledge bases, SaaS, marketplaces, and technical documentation, it can become an increasingly important aspect.
How is Agentic Browsing rated?
One of the most important features is that Agentic Browsing does not use a classic score from 0 to 100 As with other Lighthouse categories, Google itself explains that agentic web standards are still emerging, so the current goal isn't to create a definitive ranking, but to provide actionable technical signals.
The report therefore shows a ratio of passed and available checks, any pass or fail statuses, warnings, and information counts. In other words, it shouldn't be interpreted as "I have a 92, so I'm good" or "I have a 65, so I'm penalized." It should be read as a set of technical clues that indicate where a page can be made more readable and usable by AI agents.
Audits are deterministic, meaning they're based on reproducible technical signals. However, results may vary if the site dynamically registers tools via JavaScript, if the DOM changes significantly during loading, if the accessibility tree is unstable, or if the layout undergoes sudden changes.
WebMCP: The heart of the new agent interaction
One of the newest and most interesting elements related to Agentic Browsing is WebMCPIn simple terms, WebMCP allows a web page to expose operational capabilities to AI agents. These capabilities are called "tools," meaning instruments or actions that the site makes recognizable.
An example of a tool could be “Book a table”, “Add to cart”, “Subscribe to the newsletter”, “Request a quote” or “Check availability”. The idea is that the agent doesn't just have to guess what a form is for by looking at the page, but can read structured information describing the name, purpose, and parameters required by that action.
Lighthouse includes dedicated audits for registered WebMCP tools. Some checks are informative: if no tools are registered, the report may simply display an empty list. This is important because, at least today, not having WebMCP doesn't automatically mean failing the entire category. However, it does mean that the site isn't yet explicitly exposing actions designed for AI agents.
Forms become even more important
The new category places a strong emphasis on forms, as they are one of the key points where an agent interacts with a website. A contact form, a checkout, a login, a quote request, or a booking must be understandable not only visually but also semantically.
Lighthouse can report problems when a form uses incomplete WebMCP attributes, for example when a tool description is present but the name is missing, or when the name is present but the description is missing. It can also fail if a required field lacks an attribute. name, because without a clear name the agent cannot correctly construct the data to send.
It can also generate warnings when an optional field has a name but it doesn't have a parameter description or a label This point is particularly interesting for those developing WordPress themes, WooCommerce plugins, Elementor modules, Gravity Forms, Contact Form 7, or custom systems: many interfaces appear to work well for human users, but they aren't always ideally built for machine interpretation.
Agent Accessibility: Not Just for Screen Readers
Another pillar of agentic navigation is accessibility. AI agents can use theaccessibility tree, that is, the semantic representation of the page that the browser exposes to assistive technologies and automatic tools.
If a button is represented only by an icon without alternative text, if a field has no label, if a clickable element is a simple div Without the correct role or if an interactive component is poorly hidden in the accessibility tree, an agent may not understand what to do. The same problem applies to blind users, screen readers, and assistive technologies.
This is one of the most important messages of the new category: A more accessible website is also a website that is more understandable by AI agents.. So it's not about adding artificial optimizations to please Lighthouse, but about improving the structural quality of the frontend.
Layout stability: why CLS matters for agents too
The visual stability of the page is another key point. Lighthouse also connects agentive navigation to the Cumulative Layout Shift, a metric already known in the context of Core Web VitalsAn unstable layout is annoying for a human user, but it can become even more problematic for an agent.
Many agents rely on screenshots, element locations, or coordinates to understand where to click or which field to fill in. If a banner, unsized image, font, pop-up, or third-party script moves the elements during loading, the agent may misplace them, click the wrong button, or fail to complete the interaction.
This confirms something performance experts already know well: optimizing CLS isn't just about achieving a good PageSpeed score. It's about making the page more stable, predictable, and reliable for any form of interaction, whether human or automated.
llms.txt: A new convention, not a new robots.txt
Among the discoverability audits also appears llms.txt, an emerging convention designed to provide LLMs and AI agents with a readable summary of a site's main content. It is important not to confuse it with robots.txtThe robots.txt file is used to tell crawlers what they can and cannot crawl. llms.txt, on the other hand, is designed to help language models and agents better understand structure, important sections, and authoritative content.
Currently, the presence of llms.txt is optional. Lighthouse can indicate if the file generates server errors, while a standard 404 can be considered non-applicable. This means you shouldn't rush to create improvised files just to "pass a test." It makes sense to evaluate it especially for sites with technical documentation, knowledge bases, guides, complex catalogs, or numerous editorial resources.
Impact on WordPress, WooCommerce and CMS
For those working with WordPress, WooCommerce, Magento, PrestaShop, or other CMS, agent-based navigation is particularly interesting. Many modern websites are built with page builders, commercial themes, plugins, popups, sliders, form builders, and JavaScript components. All of this speeds up site production, but often results in redundant or semantically weak markup.
The result is that a site can be graphically convincing but unclear to an agent: unnamed buttons, generic links, forms without correct labels, poorly described required fields, invasive modals, dynamic elements that load late, and layout shifts caused by images, ads, or external scripts.
The new Agentic Browsing category therefore pushes for more rigorous frontend maintenance: semantic HTML, real accessibility, well-designed forms, stable interactions, less invasive JavaScript, and logically organized content.
Is it an SEO factor?
Currently, there's no evidence to suggest that Agentic Browsing is a direct ranking factor in Google Search. It would be wrong to present it as "the new SEO metric to optimize immediately." It's more accurate to define it as an experimental technical indicator, useful for assessing a site's readiness for the AI agent web.
However, many aspects measured by this new category coincide with already important good practices: accessibility, layout stability, form clarity, markup quality, and information structure. Even if Agentic Browsing is never used directly as an SEO signal, working on these aspects still improves the overall quality of the site.
Conclusion
The emergence of agentic navigation in Lighthouse and PageSpeed Insights is a significant development because it heralds a transformation of the web: pages will no longer be visited just by people and crawlers, but also by AI agents capable of performing tasks on behalf of users.
Agentic Browsing shouldn't be interpreted as a new Core Web Vital, nor as a definitive SEO score. It should be viewed as a set of technical signals that indicate whether a page is sufficiently clear, stable, accessible, and structured to be used by intelligent software.
For those who manage professional websites, e-commerce sites, CMSs, or web platforms, the message is clear: the future will increasingly reward fast, accessible, semantically correct pages designed not only to be viewed, but also to be understood and used by machines. Agentic navigation is still experimental, but it is one of the first concrete indicators of this new phase.

