Google has quietly expanded the scope of its Chrome Lighthouse tool, introducing a new “Agentic Browsing” audit that looks for an llms.txt file at the root of a website. While the change may seem technical, it signals a broader shift toward making the web more navigable for artificial‑intelligence agents that power features such as AI Overviews, AI Mode, and generative‑search snippets. In this article we unpack what the new audit does, why Google cares about llms.txt, how the check works, and what site owners can do today to stay ahead of the curve.
What the new llms.txt audit actually checks
Lighthouse’s “Agentic Browsing” category is designed to evaluate how well a site is structured for machine interaction, rather than for human visitors alone. Among the deterministic checks that run when you launch a Lighthouse report, the presence of an llms.txt file is now a distinct line item. The audit looks for a plain‑text file located at the domain root (e.g., https://example.com/llms.txt) that contains a concise, machine‑readable summary of the site’s purpose, primary content types, and any special instructions for AI agents.
If the file is missing, Lighthouse flags the audit as a failure and reduces the site’s “agentic readiness” score. The tool does not assign a traditional 0‑100 Lighthouse score for this category; instead it shows a fractional pass ratio (for example, 0.75 / 1.00) alongside a list of individual pass/fail signals such as WebMCP integration, accessibility‑tree integrity, layout stability, and the llms.txt presence.
Why Google introduced llms.txt and the Agentic Browsing category
In recent months Google has rolled out a suite of AI‑driven search features that rely on large language models (LLMs) to synthesize information from the web. These agents need to crawl sites quickly, understand high‑level structure, and extract the most relevant content without parsing every page in depth. The llms.txt file acts as a “road map” for those agents, offering a short, standardized description that can be read in milliseconds.
Google’s own documentation frames the file as a discoverability and efficiency signal, not a replacement for traditional robots.txt directives. By providing a machine‑readable summary, site owners can reduce the time an AI agent spends “figuring out” the site, which in turn can improve the freshness and relevance of AI‑generated search results that draw from their content.
The move also aligns with Google’s broader “Agentic Browsing” initiative, which evaluates whether a site is built for interaction with autonomous software agents. This includes checks for WebMCP (Web Manifest for Content Providers), a well‑structured accessibility tree, and layout stability measured by Cumulative Layout Shift (CLS). Together, these signals help Google decide how confidently an AI can surface a site’s information in generative‑search answers.
How the audit works and what it measures
When you run a Lighthouse report in Chrome DevTools or via the command‑line interface, the Agentic Browsing category runs a series of deterministic tests. Below is a snapshot of the current checklist:
- WebMCP integration: Verifies that the site publishes a Web Manifest for Content Providers, which helps agents discover content feeds and metadata.
- Accessibility tree integrity: Ens

Leave a Comment