By Ryan Kings, Founder & CTO at AEOForged · Published June 2026 · 8 min read
What Is Agent Readiness? The Technical Standards That Make Websites AI-Operable
What Is Agent Readiness? The Technical Standards That Make Websites AI-Operable
Agent readiness is the set of technical standards that let autonomous AI agents discover, understand, and operate a website. It covers protocols, manifests, middleware, and discovery files across three layers: discoverability, content accessibility, and operability.
Unlike AI content readiness (whether answer engines cite your pages) or traditional SEO (human search rankings), agent readiness determines whether software agents can interact with your site at all. A site that passes all 33 checks can be found through standardised manifests, queried for clean content, and operated through defined protocols.
Why does agent readiness matter in 2026?
Agent readiness matters because autonomous AI agents now evaluate specific technical signals before interacting with a website. If those signals are missing, agents skip the site or fall back to unreliable HTML scraping.
Two major platforms formalised this shift in early 2026. Cloudflare launched isitagentready.com in April 2026 as a public scoring tool that checks 16 agent-facing signals. Google followed in May 2026 with Lighthouse 13.3.0, adding an Agentic Browsing category as a default audit with 8 checks. The FORKOFF framework provides a separate 100-point composite score. These are not experimental features. They reflect an industry consensus that agent readiness is a baseline technical requirement, not an advanced optimisation.
What are the three layers of agent readiness?
Agent readiness breaks into three layers, each building on the last: discoverability (can agents find you), content accessibility (can agents read you cleanly), and operability (can agents take actions on your site).
Layer 1: Discoverability. Agents begin with discovery files, not HTML crawls. The key signals include robots.txt with explicit AI bot rules and a Content-Signal directive, a valid sitemap.xml referenced from robots.txt, a well-formed llms.txt manifest with an H1 heading, blockquote summary, and absolute URLs, HTTP Link headers on the homepage, and auto-discovery link tags in the page head.
Layer 2: Content accessibility. When agents fetch a page, they prefer structured content over rendered HTML. Markdown content negotiation lets agents request clean text via the Accept header. Server-side rendering ensures content is visible without JavaScript execution. Schema.org JSON-LD blocks (Organization, WebSite, Article, FAQPage) help agents disambiguate entities. A correct H1-to-H6 heading hierarchy with stable IDs enables deep-linking to specific claims.
Layer 3: Operability. This is the frontier layer. It covers protocols that let agents act on your site: agents.json (action manifests), MCP Server Cards at the well-known endpoint defined by SEP-2127, A2A Agent Cards for agent-to-agent delegation, Agent Skills indexes, OAuth/OIDC discovery for authenticated workflows, and API Catalogs per RFC 9727.
What are the 33 signals and how are they measured?
The 33 signals are deterministic checks: each is a real HTTP probe, DNS lookup, or HTML parse, not a model-generated estimate. AEOForge's agent readiness tool sends requests as 5 different agent user-agents, parses robots.txt directives, resolves well-known endpoints, validates JSON-LD, and checks content negotiation responses. Every result is reproducible and re-checkable after fixes.
The checks map to three established frameworks for cross-reference:
- Cloudflare isitagentready.com (16 checks, scored as Basic/Advanced/Expert tiers)
- Google Lighthouse Agentic Browsing (8 audits added in v13.3.0)
- FORKOFF (100-point composite, Tier D through Tier A)
What does a real before-and-after look like?
Measured results from AEOForge's own website (aeoforge.com), June 2026:
Before remediation: 11 of 33 signals detected, 21 missing. Cloudflare scored 25% (Basic tier, 4 of 16). Lighthouse Agentic Browsing scored 50% (4 of 8). FORKOFF scored 46% (Tier D). The site had no llms.txt, no agents.json, no MCP Server Card, and no markdown content negotiation.
After remediation: 28 of 33 signals detected, 4 marked N/A. Cloudflare scored 75% (Advanced tier, 12 of 16). Lighthouse scored 100% (8 of 8). FORKOFF scored 100% (Tier A). All applicable signals went green. The 4 grey N/A items are commerce-specific protocols (payment verification, product feeds) not applicable to a SaaS content tool.
The entire remediation took one working day using AEOForge's own tooling. The before and after scores are from the same deterministic probe suite, so the comparison is apples-to-apples.
Where should you start fixing agent readiness?
Start with discoverability signals because they gate everything else. If agents cannot find your manifests, operability protocols are irrelevant.
The recommended remediation order for 2026:
- robots.txt with AI bot rules and Content-Signal directive (10 minutes)
- sitemap.xml confirmed valid and referenced from robots.txt (10 minutes)
- llms.txt with H1, blockquote summary, and 10-20 absolute links per the llms.txt spec (1 hour)
- Auto-discovery link tags in your layout head (15 minutes)
- Markdown content negotiation via a single middleware file (1-2 hours)
- Schema.org JSON-LD for Organization and WebSite on the homepage (1 hour)
- agents.json + MCP Server Card generated from your live site and deployed to well-known endpoints (1-2 hours)
Steps 1 through 4 can take a site from Tier D to Tier B in under two hours. Full operability (steps 5 through 7) typically requires an additional half-day.
How do you measure progress?
Run an agent readiness check before and after each change. The deterministic probe returns which of the 33 signals passed, which failed, and compatibility scores for Cloudflare, Lighthouse, and FORKOFF. Because the checks are HTTP-based and reproducible, you get an objective diff, not a subjective assessment.
Key takeaways
- Agent readiness is the set of 33 technical signals that determine whether AI agents can discover, read, and operate a website.
- Cloudflare, Google Lighthouse 13.3.0, and FORKOFF all formalised agent readiness scoring in 2026, making it a baseline expectation.
- The three layers are discoverability (manifests and robots.txt), content accessibility (markdown negotiation and schema), and operability (MCP, A2A, agents.json).
- Every check is a deterministic HTTP probe or HTML parse, not an AI-generated estimate, so results are reproducible.
- AEOForge's own site went from 11/33 signals (Tier D) to 28/33 signals (Tier A) in a single working day.
- Start with discoverability: robots.txt, sitemap, and llms.txt can move a site from Tier D to Tier B in under two hours.
- Agent readiness is distinct from content readiness and traditional SEO; a site can rank well for humans and still be invisible to agents.