Skip to main content
AI Commerce

AI Buyer Score: Would an AI Recommend Your Store?

Kamil Kaderbay 4 min read Updated Recently updated
#ai-buyer #ai-agents #e-commerce #shopify #recommendation
Share

AI shopping agents are already here

In 2026, autonomous shopping agents are no longer science fiction. OpenAI Operator, Google Shopping AI, Perplexity Shopping. These systems browse the web, compare products, and formulate purchase recommendations.

Their logic is simple: recommend the product that offers the clearest, most verifiable, and most complete signals.

The question is no longer β€œdoes my store convert well?” but: β€œwould my store be recommended by an AI shopping agent?”

What is the AI Buyer Score?

The AI Buyer Score is one of three pillars of the Verity Score audit. It simulates the behavior of an autonomous shopping agent facing your store and evaluates 9 recommendability criteria.

The verdict is binary: recommended or not recommended.

The 9 recommendability criteria

An AI shopping agent evaluates your store on 9 criteria before recommending a product:

  1. Clear, structured price : Present in schema.org (Offer with price), not just visually displayed
  2. Credible, accessible reviews : AggregateRating in the HTML source, not only loaded via JavaScript
  3. Documented shipping : Accessible policy page with explicit timelines and costs
  4. Returns possible : Accessible return policy in HTML with clear conditions
  5. Confirmed availability : Schema availability: InStock consistent with actual stock
  6. Identifiable brand : brand field in the Product schema for cross-store comparison
  7. Complete specifications : Detailed description (> 50 words) with structured attributes
  8. Claims/proofs coherence : Marketing promises (β€œFree shipping”) are backed by structured data
  9. Crawlability : Open robots.txt, working sitemap, native HTML content

A single blocking criterion (invisible price, blocked crawlers) can be enough to lose the recommendation. The AI agent doesn’t compromise. It recommends stores with complete signals, or it moves on to the next one.

For detailed guidance on each criterion with corrective actions, see the guide AI Buyer Score: The Shopping Agent Checklist.

The decision system

The agent doesn’t average scores. It applies a disqualification logic:

  • Price missing or hidden in JS β†’ not recommended (the agent can’t compare)
  • Reviews missing or JS-only β†’ weak signal (the agent can’t evaluate satisfaction)
  • robots.txt blocking β†’ not recommended (the agent simply can’t access the store)
  • Schema.org missing β†’ weak signal across all structured criteria

A single critical criteria failure is enough to lose the recommendation.

Why well-optimized CRO stores often fail

Paradoxically, the most visually β€œbeautiful” stores often fail the AI Buyer Score. Here’s why:

The JavaScript widget syndrome

Loox, Judge.me, Yotpo reviews. These Shopify widgets display gorgeous stars. But most load reviews via JavaScript after the initial render. Result: the HTML source contains zero reviews, and the shopping agent sees a store without customer feedback.

Solution: Verify that your review app injects a <script type="application/ld+json"> block with AggregateRating in the HTML source. Judge.me does this natively. Other apps may need configuration.

The price in a React component

Modern Shopify themes (Dawn, Sense) use web components and JavaScript to display prices, especially with variants. The price visible on screen may be absent from the initial HTML.

Solution: Ensure your Shopify theme generates the Offer schema with price via SSR (server-side rendering). Shopify does this by default in most themes, but customizations can break this behavior.

The shipping policy in a popup

β€œSee our shipping conditions” β†’ click β†’ JavaScript modal β†’ dynamically loaded content. The shopping agent doesn’t click your buttons. It reads your HTML.

Solution: Have a /policies/shipping-policy page accessible as static HTML, linked from the product page.

Verity Score gives you the answer

Rather than guessing, Verity Score automatically audits your store and clearly tells you whether an AI shopping agent would recommend it, with precise reasons and corrective actions for each weak point.

Quick wins to improve your AI Buyer Score

Priority 1: Complete Product schema

{
  "@type": "Product",
  "name": "Anti-Aging Retinol Serum 0.5%",
  "description": "Concentrated retinol serum...",
  "brand": { "@type": "Brand", "name": "YourBrand" },
  "offers": {
    "@type": "Offer",
    "price": "39.90",
    "priceCurrency": "USD",
    "availability": "https://schema.org/InStock"
  },
  "aggregateRating": {
    "@type": "AggregateRating",
    "ratingValue": "4.7",
    "reviewCount": "342"
  }
}

Priority 2: Open robots.txt for AI crawlers

Check that your robots.txt doesn’t have a global Disallow: /, and that there’s no specific blocking of GPTBot, PerplexityBot, ClaudeBot.

Priority 3: Native HTML content

Audit your product pages: description, price, reviews, and policies must be in the HTML source, not loaded via JavaScript.

For a deeper dive, see the full guide: AI Buyer Score: The Shopping Agent Checklist.


Would your store pass an AI shopping agent’s test? Run the free audit to find out.