agentspeed.
← all articles
Learn

What happens after an AI finds your site

Being mentioned is the easy half. What an agent can do when it arrives is a separate property of your site.

6 min read·
IN PLAIN ENGLISH

A lot of new tools will tell you whether an AI assistant said your company's name. That is only half the story. After the assistant mentions you, it goes to your page — and if your page shows a person one price while the hidden machine-readable part says another, the assistant confidently repeats the wrong one. Nothing looks broken. The page just tells two different stories.

Most of the tooling being built right now answers one question: did an AI assistant mention your brand? It is a fair question and it has a whole category of products behind it — run a set of prompts, count the mentions, report a visibility score.

None of it tells you what happened after the mention. An agent that hears your name goes to your page. What it can do when it arrives is a completely separate property of your site, and it is the one that decides whether the mention was worth anything.

The clearest example: two prices on one page

A product page shows $59. Its structured data — the block written specifically for machines — says 49.00, left behind by a sale that ended. Both numbers are on the page. A person only ever sees one of them.

WHAT A PERSON SEESAcme Widget$59.00WHAT AN AGENT READS"@type": "Offer","price": "49.00"WHAT THE BUYER IS TOLD“It’s $49.”Both numbers are on your page.

Every validator will pass this page. The markup is well-formed, the schema is correct, the required fields are present. Nothing is broken in the sense a linter understands. The page is simply telling two different stories, and the agent believes the one addressed to it.

This is what we call a coherence failure, and it is invisible to any tool that checks structure rather than agreement.

The same shape, in other places

Once you look for disagreement between the human view and the machine view, it turns up repeatedly.

Why visibility tools cannot see any of this

A mention-tracking tool observes the assistant’s output. Everything above happens on your page, before the assistant forms an answer, and leaves no trace in the output except a wrong price or a missing recommendation that nobody attributes to a markup mismatch.

The two measurements are complementary rather than competing. Visibility tells you the mention happened. Readiness tells you whether the mention could go anywhere. Being mentioned by an assistant that then quotes a price you will not honour is worse than not being mentioned.

How to check your own page in two minutes

Open your product page, view source, and search for application/ld+json. Compare every price, name and availability value in that block against what the rendered page shows. Then disable JavaScript and reload: whatever remains is approximately what an agent gets.

The free scan does this and the rest of it automatically, and every finding names the check it came from so you can read the rule at /rubric rather than take our word for it.

the same product pageBoth prices are on the page. A person sees one; an agent reads the other.
<!-- What the visitor sees -->
<span class="price">$59.00</span>

<!-- What the agent reads, left over from a sale -->
<script type="application/ld+json">
{
  "@type": "Offer",
  "price": "49.00",
  "priceCurrency": "USD"
}
</script>
FAQ
Is this the same as an SEO or schema validator?

No. A validator checks that your structured data is well-formed and complete. A coherence check compares it against what the page actually shows. A page can pass every validator while declaring a price it does not charge.

Do AI visibility tools catch this?

They cannot. They observe the assistant’s output; this happens on your page before the answer is formed, and it surfaces only as a wrong price or a missing recommendation that nobody traces back to a markup mismatch.

What is the fastest way to check my own site?

View source, search for application/ld+json, and compare every price and availability value against the rendered page. Then reload with JavaScript disabled — what remains is roughly what an agent receives.

See also
Verify on your site

Run a free AgentSpeed scan to see how your site scores across the live rubric: discoverability, readability, structured data, actionability, performance.

Run a scan →Browse all fixes →
What happens after an AI finds your site · AgentSpeed