What Is Lighthouse Agentic Readiness and Why It Matters
Lighthouse agentic readiness is a new category inside Google’s Lighthouse tool that audits whether a website is discoverable, understandable, and usable by AI-powered browsing agents and other automated systems, highlighting technical issues that limit agents’ access to content, tools, and instructions so developers can adapt HTML, structured data, and configuration files for reliable autonomous interaction. AI agents are beginning to browse and act on websites the way users do, but with different needs: they rely on clean HTML, semantic structure, and machine-readable guidance. The new Lighthouse agentic readiness report focuses on these needs. It does not output a 0–100 score; instead it shows a ratio of checks passed, so you can see how far your site is from being agent-ready. Preparing now helps you stay ahead as AI agent website testing becomes part of everyday development.
How to Run the Lighthouse Agentic Readiness Report in Chrome Canary
You can run Lighthouse agentic readiness without extra tools using Chrome Canary, the upcoming beta version of Chrome. Install Canary, open your site, then right‑click and choose “Inspect” to open DevTools. At the top of DevTools, select the Lighthouse tab. You will see a new category labelled “Agentic Browsing”; enable it, choose the page you want to test, and start the audit. Lighthouse will crawl your page and generate a dedicated agentic readiness section alongside other reports. According to Marie Haynes, the report “tells you whether your website is discoverable for AI agents, whether you have WebMCP integration set up, and an evaluation of your LLMs.txt file.” Use this as your main AI agent website testing workflow, rerunning it after each change so you can track progress in the pass ratio and verify that fixes improve agent access.

Check AI Accessibility with Semantic HTML and the Accessibility Tree
The agentic readiness report highlights how accessible your page is to both assistive technology and AI agents. Agents can interpret a page through screenshots, raw HTML, and the accessibility tree, so you should treat accessibility as a core part of how you prepare your website for AI. The accessibility tree describes structure and controls in a way machines can act on: where buttons are, what forms do, and what text labels mean. Poorly structured HTML or missing ARIA roles can lead to an incomplete tree, so agents struggle to find actions or important content. Start by fixing obvious issues: use semantic tags for headings and landmarks, ensure buttons are real buttons, and provide descriptive labels for interactive elements. Rerun Lighthouse to confirm accessibility-related checks pass; a cleaner tree means both screen readers and AI agents can move through your site more reliably.
Use WebMCP to Describe Your Site’s Tools to AI Agents
WebMCP is a proposed web standard that exposes your site’s tools and workflows in a structured way so agents can use them. Think of it as a contract that explains which forms, actions, or APIs are available and how they should be called. Lighthouse agentic readiness checks whether you have WebMCP integration in place and whether agents can discover these capabilities. There are two flavours: declarative WebMCP, where you wrap simple code around an existing form, and imperative WebMCP, which supports richer back‑and‑forth interaction between the agent and your backend. If you offer calculators, booking forms, or dashboards that users might drive through agents, WebMCP will be central to Chrome Canary testing and ongoing optimization. Start small with a single high‑value tool, document it with WebMCP, and use the Lighthouse report to confirm that agents can see and understand it.
Decide Whether You Need an LLMs.txt File and Plan Ahead
The Lighthouse agentic readiness report also evaluates the presence and structure of an LLMs.txt file. This file, inspired by robots.txt, is a proposed way to give markdown instructions for AI agents at inference time. It is not for search ranking; instead it tells agents what they are allowed to do, where important information lives, and how to behave on your site. Marie Haynes notes that you likely do not need LLMs.txt yet unless you host features that agents will target specifically, such as complex tools or workflows. If that describes you, experiment with a basic file that points agents to key sections and clarifies constraints. Combine this with good structured data and semantic HTML, then rerun Chrome Canary testing with Lighthouse agentic readiness. The sites that prepare for AI agents now will be better positioned as agentic browsing becomes common.






