Attract Group Logo
Attract Group Logo

Agentic Commerce: What Happens When the Buyer Is an AI Agent

9 min read
Vladimir Terekhov
Premium dimensional crimson product forms flowing through frosted-glass cards on an aurora gradient

Every conversation about agentic commerce skips straight to the checkout. An agent with a saved card, buying socks at 3am while you sleep.

That's the least interesting part, and the measurements say so. HUMAN Security's July 2026 look at agentic traffic found 76% of agent activity sitting on product and search routes. Checkout was 2.6%.

So the agent mostly isn't buying. It's shopping. It reads your catalog, forms an opinion, and then either hands you a shopper who has already decided, or quietly recommends somebody else. The second outcome never shows up in a dashboard you own.

What agentic commerce actually means today

Three different things wear this label, and they are at very different stages.

LayerWhat it isHow real, today
Assistant recommendationSomeone asks ChatGPT, Claude, Perplexity or Gemini for "best X under $200", the model answers from whatever it could read, the shopper clicks throughHappening at scale and visible in analytics
Browser agents on your siteComet, Claude's Chrome extension, ChatGPT Agent navigating pages, filtering, adding to cartReal, growing fast, still small in absolute volume
Agent-driven checkoutProtocol-level purchase: ACP (OpenAI's checkout spec), UCP, x402, AP2, MPPSpecs are live, measured activity is tiny

On the browser-agent side, that same HUMAN Security breakdown put Comet at 47.1% of agentic sessions, Claude's Chrome extension at 24%, ChatGPT Atlas at 15.5% (now being sunset) and ChatGPT Agent at 6.1%. E-commerce took 42% of agentic destinations, just behind publishers at 43.5%. Agentic traffic grew 7,851% year over year across 2025, off a very small base.

The first layer is the one that pays today. An assistant answering "best waterproof hiking boots under $200" is doing the job a price comparison website does, except it finishes comparing before the shopper ever sees a store. You either got included or you didn't.

The Shopify numbers are the part worth staring at

Shopify published platform-wide figures for Q1 2026:

  • AI-driven traffic up more than 8x year over year
  • Orders from AI-powered search up roughly 13x year over year
  • AI-referred shoppers converting about 50% higher, with 14% higher average order value
  • Beating organic in 23 of 25 categories
  • More than half of AI-referred sessions landing straight on a product page, against roughly 20% for organic

That last line explains the rest of them. Organic drops people on a collection page and asks them to browse. An assistant sends them to the exact product page with the decision already made.

> The figure to sit with isn't 13x. It's that a channel this small already converts better than the one you've been optimizing for a decade.

Now the honest caveat, because I don't want you building a forecast on one dataset. 180 Marketing looked at GA4 data from 94 ecommerce brands across 2025 and found ChatGPT sessions converting at 1.81% against 1.39% for non-branded organic. That's a 31% lift, not 50%, and average order value came out 14.3% lower rather than higher. Same direction on conversion, opposite direction on basket size.

For scale: Semrush's 2025 study of 50,000+ sites put AI traffic at 0.14% of visits overall, with retail up 343% year over year. Adobe measured GenAI-referred traffic to retail up 693% over the 2025 holiday season. Salesforce, watching more than 1.5 billion shoppers, logged AI-chat referral growth between 150% and 428% every single quarter from the start of 2024 through Q1 2026.

So: still small, growing fast, converting above average. Worth building for, not worth betting the quarter on.

What breaks when an agent hits a typical store

Google's web.dev guidance on agent-friendly sites (updated April 2026) says agents perceive a page three ways: screenshots, raw HTML, and the accessibility tree, which it describes as a high-fidelity map that ignores the visual noise of CSS.

Read that list again and notice what's missing. Your JavaScript.

Vercel's crawler analysis, using November 2024 data, found that no major AI crawler executes JavaScript. OpenAI, Anthropic, Meta and Perplexity fetch JS files and never run them. If your product page renders price, stock and variants client-side, an assistant reading it gets a shell.

It gets worse from there.

What breaksWhat it looks like from the agent's side
Client-rendered catalogPrice and availability simply absent
Stale URLsChatGPT burned 34.8% of its requests on 404s and Claude 34.2%, against Googlebot's 8.2% (Vercel, Nov 2024)
Icon-only buy buttonsAn unlabeled box in the accessibility tree
Div-based size and color pickersNot recognizable as controls at all
Placeholder-as-label formsThe agent guesses which field is which
Layout that moves per templateScreenshots stop matching the live page
Cookie and promo overlaysClicks land on a ghost layer

Two of those deserve more than a table row.

The accessibility tree check is pass/fail, and almost everyone fails

Lighthouse shipped an agentic browsing category in v13.3.0 back in May 2026, and it's now in Chrome DevTools and PageSpeed Insights. We ran it in August 2026. stripe.com scored 3/3. shopify.com scored 2/3, tripped by ARIA role and button-name violations. airbnb.com managed 1/2.

Shopify's own marketing site fails the button-name check. Your theme is not going to do better by accident.

The audit is unforgiving on purpose: it runs 38 axe rules and scores zero if any single one trips. One icon-only cart button with no accessible name takes the whole thing down. We pulled apart exactly what it looks at in the Lighthouse agentic browsing breakdown.

Layout stability is a commerce problem specifically

Google's example of what confuses an agent is an add-to-cart button sitting in a different position depending on the category. That isn't hypothetical, that's most themes with per-collection templates. CLS sits inside the agentic audit for the same reason, and Google spells out the rationale: agents that take screenshots get confused when the layout keeps shifting.

Adobe reported that 80% of early-access customers for its LLM Optimizer had critical content-visibility gaps, which matches what we tend to find the first time we open a store's raw HTML instead of its rendered page.

The bot access part nobody checks

Three classes of bot want your store, and each one needs a separate decision.

  • Search bots (OAI-SearchBot, Claude-SearchBot, PerplexityBot) are how you appear in answers at all. OpenAI documents it plainly: opted-out sites won't be shown in ChatGPT search answers.
  • Training bots (GPTBot, ClaudeBot) can be refused on their own, without costing you search visibility.
  • User-initiated agents (ChatGPT-User, Perplexity-User) are documented by their own vendors as possibly ignoring robots.txt. TollBit measured roughly 15% of AI scrapes ignoring an active disallow in H1 2026, with ChatGPT-User at 54%.

Robots.txt is a preference. Your CDN or WAF is the actual gate. Check your defaults while you're in there: Cloudflare begins blocking training and agent bots by default on ad-monetized pages from 15 September 2026, with search bots still allowed. The bot-by-bot detail is in our guide to AI crawlers.

One more for whoever runs your infrastructure: Fastly found more than 51% of AI requests reach origin, against under 9% of human requests. Caching does not absorb agents.

What an agent-operable store needs, in priority order

Ranked by strength of evidence, not by how new it sounds.

#FixWhy it ranks here
1Server-render title, price, stock and variants into HTMLNo major AI crawler runs JS (Vercel, Nov 2024)
2Real accessible names on every buy, filter and cart controlGoogle's audit is all-or-nothing, and Shopify itself fails it
3Stable layout, no add-to-cart button wandering between templatesGoogle's own worked example, plus CLS is in the audit
4<label for> and autocomplete on cart, checkout and filter formsAgents read labels, not placeholders
5Clean URLs, honest 404s, sitemap with lastmodA third of AI crawler requests are already wasted
6Robots plus WAF rules per bot classRobots.txt alone doesn't hold
7Product JSON-LDUseful, not mandatory. Google says structured data isn't required for generative AI search. Ship it because it makes price and availability unambiguous, not because you were told to.
8llms.txtFormat-correct or don't ship it. A malformed file scores worse than no file.
9WebMCP declarative form attributesPilot only: Chrome origin trial, no Firefox or Safari signal, no named production adopters. Background in WebMCP explained.
10Commerce protocols (ACP, UCP, x402)Wait until you have agent traffic worth converting

If your instinct was to start at 8 or 9 because they sound like the future, that's the instinct to fight. Items 1 through 5 are where the failures actually are.

Agentic commerce rewards deeply unglamorous work

Google's closing line on its agent-friendly guidance: "Everything we suggest to make a site 'agent-ready' also makes sites better for humans."

That's the trick, and it's a boring one. Nothing on the priority list is exotic. Server-render your product data, name your buttons, label your inputs, stop moving things around between templates. It's front-end hygiene that plenty of stores skipped because a human shopper could squint past it. An agent can't squint.

Here's the test I'd actually run, and it isn't "can an agent read my store". It's "can an agent finish a task on my store". Open a browser agent, ask it to put a specific size and color in the cart, apply a discount code, and get you a shipping estimate. Watch where it stalls. That first stall is your roadmap, and you usually don't have to wait long for it.

Then run `npx lighthouse https://yourstore.com --only-categories=agentic-browsing` and see whether the score agrees with what you just watched.

If you'd rather someone else did the staring, that's what our free agent-readiness audit is for. We'll tell you which of those ten items is costing you orders right now, and which one you can safely ignore for another year.

Share:
#AI & Automation#E-commerce/Retail#Accessibility
Vladimir Terekhov

Vladimir Terekhov

Co-founder and CEO at Attract Group

Ready to Start Your Project?

Let's discuss how we can help you achieve your business goals with cutting-edge technology solutions. Get a free consultation to explore how we can bring your vision to life.

Or call us directly:+1 888-438-4988

Request a Free Consultation

Your data will never be shared with anyone.