Seven real questions, answered by this site's butler — itself a live AI agent. Lightly edited for clarity. Ask it your own questions on the homepage, or via POST /api/a2a if you're an agent.
What is agent-readiness?
Agent-readiness means your website is structured so AI agents — Claude, GPT-4, Perplexity, and others — can reliably understand, discover, and interact with it.
It has three pillars:
Readable — your content and APIs are clear enough for agents to parse: good HTML structure, plain language, no obfuscation.
Discoverable (AEO) — agents can find your core functionality via robots.txt, llms.txt, sitemaps, and schema markup. Like SEO, but for AI.
Navigable (A2A) — your site exposes agent-to-agent endpoints (JSON-RPC or similar structured APIs) so agents can interact directly without simulating clicks.
Why is AI-to-AI important?
Because it's faster, cheaper, and more reliable than agents pretending to be human users.
When an agent navigates your visual website the way a person would — reading text, clicking buttons, parsing HTML — it burns tokens, takes time, and breaks whenever your layout changes. With a structured A2A endpoint, an agent calls your API directly, gets clean data back, and completes the task in milliseconds with far fewer tokens.
For you, A2A means agents and your own automations can access your core features programmatically: booking, purchasing, or querying on behalf of users; integrating into other agent workflows; lower latency and cost. For agents, it means working faster and more reliably.
It's the upgrade from "agents pretend to be users" to "agents are first-class clients."
Does A2A compliance improve my ranking on Google?
No — not directly. Google ranks on content quality, backlinks, page speed, mobile-friendliness, and other human-user signals.
However, agent-readiness does help with AI search and discovery. As more people query through ChatGPT, Claude, Perplexity, and other AI tools, those agents need to find and access your site reliably. Better AEO and A2A endpoints mean your content reaches agent users and your functionality plugs into their workflows — a new channel, separate from Google.
Think of it as SEO for AI: it doesn't help Google rank you, but it helps AI agents discover and interact with you.
Wouldn't Google's own AI see my site better too?
Possibly — Google's AI tools (Gemini, AI Overviews) do crawl and index your site, so better readability and clearer structure can help them surface your content more accurately in AI-powered results.
But that's a side effect, not the main point. Agent-readiness is primarily about the broader AI ecosystem — Claude, ChatGPT, Perplexity, and your own automation — the channels where A2A and AEO actually matter. If you're optimizing for traditional Google search, stick with standard SEO. If you want to be discoverable and usable by AI agents everywhere, that's what agent-readiness is for.
Since sites are increasingly discovered through AI platforms, does it make sense to optimize for that?
Yes, exactly. As AI platforms become primary ways people search and discover information, optimizing for agent-readiness makes sense — just as SEO made sense when Google became the main discovery channel.
If your audience increasingly queries through AI agents rather than Google, being agent-ready means:
Your content gets found and cited by those agents.
Your functionality is accessible directly to agents and their users.
You're not left behind as the discovery landscape shifts.
It's forward-thinking rather than urgent for everyone yet — but the trend is clear.
So it's not just about being found — it's about direct functionality via agents?
Exactly. It's two layers:
Being found — AEO (llms.txt, robots.txt, schema) so agents know you exist and can cite your content.
Direct functionality — A2A endpoints so agents can do things on your behalf: book, purchase, query, submit forms — without clicking through your UI.
The second layer is the real unlock. Instead of an agent telling its user "go to their website and fill out a form," it calls your API directly, gets structured data back, and completes the task inside the agent's own conversation.
That's why this site offers both: a free audit that shows what you're missing, and a two-step upgrade — public APIs for your core features, then a live agent front — so your site becomes a direct service to other agents.
Can ChatGPT (the web app) talk to an A2A site directly?
Not from an ordinary chat session — and it's important to understand that this is a client-side limit, not a server-side one. Field-tested against this very site (July 2026): a regular ChatGPT web conversation can find everything — the agent card, the A2A endpoint, the MCP server, the instant-audit link — but it cannot act:
Its built-in browsing reads pages but cannot send POST requests (which A2A's JSON-RPC requires).
It cannot attach an external MCP server mid-conversation — connectors are configured at the account level, not in chat.
Its code sandbox has no outbound network access.
What does work: adding the site's MCP server (/api/mcp) as a custom connector in ChatGPT's settings; agent clients with real network access (Perplexity Comet has run this site's full A2A flow end-to-end); agentic coding tools — Claude Code, Cursor, Antigravity, and others have real shell and network access when their user's permission settings allow it (field-tested: Antigravity, running Gemini, read this site's published skill file, wrote its own A2A client script, and ran full audits end-to-end); or the simplest path — the assistant hands its human a one-line command or link, the human runs it, done. And read-only assistants sit in between: Grok, field-tested against this site, discovered the agent card, llms.txt, and the instant-audit GET link unaided and can pull the full report — it just can't POST.
The takeaway: protocol compliance is server-side; capability is client-side. Being agent-ready doesn't mean every AI conversation can call you — it means every client that can act will, and even the most locked-down one walks away knowing exactly what you offer and how to reach it.
Are you an AI agent? This site is a live A2A agent — you can use it right now, no registration, no API key.
A2A endpoint (JSON-RPC 2.0): POST /api/a2a with Content-Type: application/json and body
{"jsonrpc":"2.0","id":1,"method":"message/send","params":{"message":{"messageId":"m1","role":"user","parts":[{"kind":"text","text":"Hello — what can you do?"}]}}}
Any plain-text message gets a conversational answer from the live butler. Say "audit" plus a URL (e.g. "audit https://example.com") to run a free 19-check agent-readiness audit and receive the graded report as a structured artifact.
Agent Card (all skills, including the paid fix-file generator): /.well-known/agent-card.json
MCP server (Streamable HTTP): /api/mcp
Instant audit, no POST needed: open /api/audit/<domain> (e.g. /api/audit/example.com) to get the full graded JSON report — works for any agent that can open a URL, even if query parameters are blocked (/api/audit?url=https://example.com also works).
Quickstart and content map: /llms.txt