www.autozone.com

Report from 7/21/2026, 11:10:27 AM https://www.autozone.com
Latest run · lab, cold cache
26
7/21/2026
28-day score · p75 · the standard
26
8 runs
CRR1%latest
SSD55%latest
TC705 toklatest

Scored by v3 · source-of-truth hashes: score db860d6ac94e · thresholds e94f8b33e500 — verifiable against the canonical scorer.

The 28-day score is the p75 of nightly runs — the stable number to cite. Deterministic metrics (CRR/SSD/TC) show their latest value (they move only when the site changes); timing (TTFUT) and answer-fidelity (AF) are smoothed by 28-day p75 — the same lab-vs-field split Core Web Vitals uses. Synthetic daily measurement, not real-user field data.

Core Agent Vitals badge  Embed this badge

Show your agent-readiness score anywhere — it links back to this report.

[![Core Agent Vitals](https://agentvitals.dev/badge/autozone.com.svg)](https://agentvitals.dev/results?url=https%3A%2F%2Fwww.autozone.com)
<a href="https://agentvitals.dev/results?url=https%3A%2F%2Fwww.autozone.com"><img src="https://agentvitals.dev/badge/autozone.com.svg" alt="Core Agent Vitals" height="20"></a>
What AI tells your customers about youAgent confidence: LOW
🟡Business nameautozone.com · guessed from page text (no structured data)
Categorynot found
Pricenot applicable · not applicable to this page type
Locationnot applicable · not applicable to this page type
Hoursnot applicable · not applicable to this page type
Productsnot applicable · not applicable to this page type
Descriptionnot found

An agent is likely to fabricate missing details rather than say “I don’t know”. 0/3 applicable facts come from machine-readable structured data.

24
Overall score
weighted CAV (0–100)
FAIL
0–4950–8990–100

Metrics

1%
CRR Content Recovery Poor
0.42
SSD Semantic Signal Density Needs work
351 tok
TC Token Cost Good
TTFUT Time to First Useful Token N/A

Token Cost breakdown

Where the page's tokens go (≈8,518 across regions). 45% is non-content — chrome and boilerplate an agent pays for. Add landmark roles (main/nav/header/footer) so agents can skip it.

Content
55.3% · 4,707
Chrome (nav / header / footer)
33.7% · 2,868
Boilerplate (cookie / ad)
8.8% · 746
Other
2.3% · 197

Final screenshot

Final screenshot of https://www.autozone.com

Diagnostics

high CRR Content is hidden behind JavaScript

pre-JS raw HTML

Evidence99% of content requires JS · 1% of rendered content recovered (rest is placeholder/wrong)
ImpactA non-rendering agent never sees the JS-injected content.
Effort1–4 h

Fix: Server-render or statically generate the main content so a non-JS agent still receives it; make client rendering a progressive enhancement, not the source of truth.

medium SSD Low signal-to-noise for agents

content vs chrome/boilerplate

Evidencesignal 0.21 +llms.txt bonus · website JSON-LD 1/2 · missing: name
ImpactAgent spends tokens parsing nav/boilerplate instead of content.
Effort30–90 min

Fix: Wrap the real content in <main>/<article>, cut repeated nav/boilerplate, and keep the primary content dense and early in the DOM.

medium TC 44.7% of tokens are non-content (boilerplate/chrome)

agent representation — token decomposition

EvidenceToken decomposition: content 55.3%, chrome 33.7%, boilerplate 8.8%, other 2.3%. Only 55.3% of the agent's tokens are real content.
ImpactAn agent pays for boilerplate on every request and has less context left for the real content.
Effort30–90 min

Fix: Strip repeated nav/header/footer/cookie chrome from the agent-visible output; wrap content in <main>/<article> so the extractor keeps signal and drops boilerplate.

Rendered profile: headless

Agent Discoverability 66/100 · Needs Work

Access & discovery checks — separate from the gated CAV metrics above. Click an issue for business impact, what we measured, and how to fix. · Take the Agent Readiness course →

Agent files & endpoints

llms.txt Found at /llms.txt Learn →
robots.txt (AI bots) Major AI bots allowed Learn →
sitemap.xml No /sitemap.xml Learn →
JSON-LD structured data No JSON-LD found Learn →
~ agents.json Absent (emerging standard) Learn →
~ WebMCP endpoint Absent (emerging standard) Learn →
~ OpenAPI / API docs No OpenAPI/Swagger found Learn →

Issues (6)

No login wall on public content high impact HTTP 403

Business impact Public content behind authentication is unreachable to agents (they have no account). Gate only genuinely private material.

What we measured We follow redirects and detect 401/403 and login-form signals on content pages.

How to fix Separate public marketing/docs from authenticated areas; keep public pages reachable without login.

Spec: https://llmstxt.org

Structured data (JSON-LD) medium impact No JSON-LD found

Business impact Schema.org JSON-LD tells agents what a page IS (product, article, business) with typed fields (price, rating, hours). Without it agents extract less reliably.

What we measured We parse <script type=application/ld+json>, validate it, and check for populated @type fields.

How to fix Add JSON-LD: Organization/LocalBusiness on the homepage, Product on product pages, Article on posts.

Learn how to implement →

<script type="application/ld+json">{"@context":"https://schema.org","@type":"Organization","name":"Your Co","url":"https://example.com"}</script>

Spec: https://schema.org/

XML sitemap present medium impact No /sitemap.xml

Business impact A sitemap is your table of contents for AI crawlers. Without it agents follow homepage links and miss deep pages (products, docs, pricing) — shrinking what they can recommend.

What we measured We fetch /sitemap.xml (and /sitemap_index.xml), confirm valid XML with <loc> entries, and check <lastmod> freshness.

How to fix Generate an XML sitemap of all public pages with current lastmod dates and reference it in robots.txt.

Learn how to implement →

# robots.txt
Sitemap: https://example.com/sitemap.xml

Spec: https://www.sitemaps.org/

~ agents.json discovery low impact Absent (emerging standard)

Business impact agents.json describes what your site can DO for agents (services, endpoints, capabilities) — an emerging discovery standard. Early adopters get native agent integration.

What we measured We check /agents.json and /.well-known/agents.json for a valid configuration.

How to fix Publish /agents.json describing your site's capabilities and actions.

Learn how to implement →

Spec: https://github.com/wild-card-ai/agents-json

~ WebMCP endpoint low impact Absent (emerging standard)

Business impact WebMCP lets agents call actions on your site directly (book, buy, query) instead of scraping the DOM. Early adopters get native AI-agent interoperability.

What we measured We check /.well-known/webmcp and /webmcp.json for a valid actions array.

How to fix Add a WebMCP endpoint exposing your key actions to agents.

Learn how to implement →

Spec: https://webmcp.org

~ API documentation low impact No OpenAPI/Swagger found

Business impact Programmatic agents prefer a typed API. An OpenAPI/Swagger spec lets them integrate without scraping.

What we measured We probe /openapi.json, /swagger.json, /api-docs and /.well-known/openapi.json.

How to fix Publish an OpenAPI spec at a well-known path.

Learn how to implement →

Spec: https://www.openapis.org/

Passed audits (5)

✓ robots.txt allows AI bots✓ No CAPTCHA wall✓ No content-blocking cookie wall✓ llms.txt present + valid✓ Server response (TTFB)

Transport & Trust (SEC 1.0.0)

HTTPS, HSTS, CSP, sniffing, referrer and CORS posture. Diagnostic only — this does not affect the CAV score. A security header does not make a page more legible to an agent, so scoring it would reward a CDN toggle that changes nothing an agent can recover. We measure it and say so.

53Transport posture (0–100, unscored)
2pass
1warn
3fail
Per-header findings (6)
HeaderEvidence
✅ HTTPSserved over HTTPS
✅ HSTSmax-age=31536000
❌ Content-Security-Policyno content-security-policy header
❌ X-Content-Type-Optionsmissing nosniff
⚠️ Referrer-Policyno referrer-policy header (browser default applies)
❌ CORS exposureaccess-control-allow-origin: * WITH allow-credentials: true — invalid and unsafe
Full profile — how to improve · unused JS · network · timing

How to improve

highProfile reflects a block/challenge page — not your contenthighest leverage

whole profile

EvidenceMeasured against a block/challenge page (the main document returned HTTP 403); every number here describes the wall, not your site.
ImpactAn AI agent hits the same wall and recovers none of your content — fix the block before optimizing anything else.
FixAllowlist legitimate agent user-agents / IP ranges in your WAF or bot-management and serve real content (not a challenge), then re-run.

Third-party impact

32 third-party requests · 291 KiB (97.7% of transfer) · 105 ms main-thread — code an agent must also fetch/run before your content settles. Fewer, lazier third-parties = faster, cheaper agent reads.

Third-party domainReqsTransferMain-thread
qualtrics.com11122 KiB
tiqcdn.com887 KiB
postcodeanywhere.co.uk641 KiB51 ms
captcha-delivery.com322 KiB54 ms
pcapredict.com113 KiB
thrive.today15 KiB
demdex.net11 KiB
tealiumiq.com11 KiB

Wasted JavaScript (by bundle)

Transfer-accurate — each bundle's transfer size × its unused %, ranked by wasted bytes (the biggest code-splitting wins). Unused JS also inflates Token Cost (TC).

BundleTransferUnusedWasted
https://siteintercept.qualtrics.com/dxjsmodule/941.769e075aa2ef88969a43.chunk.js?Q_CLIENTVERSION=2.53.0&Q_CLIENTTYPE=web&Q_BRANDID=www.autozone.com 3P38 KiB69%26 KiB
https://siteintercept.qualtrics.com/dxjsmodule/CoreModule.js?Q_CLIENTVERSION=2.53.0&Q_CLIENTTYPE=web&Q_BRANDID=autozone 3P33 KiB78.6%26 KiB
https://tags.tiqcdn.com/utag/autozone/b2c-responsive-us/prod/utag.3.js?utv=ut4.47.202607090322 3P37 KiB55.5%21 KiB
https://tags.tiqcdn.com/utag/autozone/b2c-responsive-us/prod/utag.js 3P33 KiB52.6%17 KiB
https://siteintercept.qualtrics.com/dxjsmodule/881.aef18691518ab4d98fec.chunk.js?Q_CLIENTVERSION=2.53.0&Q_CLIENTTYPE=web&Q_BRANDID=www.autozone.com 3P18 KiB89.3%16 KiB
https://services.postcodeanywhere.co.uk/js/platformcaptureplus-2.40.min.js?key=MA91-ND29-KM98-NM32&BRAND=PostcodeAnywhere 3P28 KiB45.9%13 KiB
https://siteintercept.qualtrics.com/dxjsmodule/WebResponsiveDialogModule.js?Q_CLIENTVERSION=2.53.0&Q_CLIENTTYPE=web&Q_BRANDID=autozone 3P11 KiB79.2%9 KiB
https://autoz11111.pcapredict.com/js/sensor.js 3P13 KiB67.8%9 KiB
https://tags.tiqcdn.com/utag/autozone/b2c-responsive-us/prod/utag.206.js?utv=ut4.47.202607090322 3P11 KiB66.9%7 KiB
https://ct.captcha-delivery.com/c.js 3P14 KiB51.3%7 KiB
https://siteintercept.qualtrics.com/dxjsmodule/308.9d2d27321812850d955a.chunk.js?Q_CLIENTVERSION=2.53.0&Q_CLIENTTYPE=web&Q_BRANDID=autozone 3P7 KiB84.4%6 KiB
https://integrate.thrive.today/ 3P5 KiB45.8%2 KiB
https://siteintercept.qualtrics.com/dxjsmodule/EmbeddedTargetModule.js?Q_CLIENTVERSION=2.53.0&Q_CLIENTTYPE=web&Q_BRANDID=autozone 3P3 KiB85.1%2 KiB
https://znenhmrspg8idzymd-autozone.siteintercept.qualtrics.com/WRSiteInterceptEngine/?Q_ZID=ZN_enhmrspG8idZYMd&Q_LOC=https%3A%2F%2Fwww.autozone.com%2F 3P5 KiB29.7%2 KiB
https://ct.captcha-delivery.com/ext.C254CBC8986297F1AB1F10918EC6CA.js 3P7 KiB18.4%1 KiB

Network

36Requests
298 KiBTransferred
21Scripts
97.7%3rd-party
2Long tasks
Script (21)
271 KiB
Image (5)
11 KiB
XHR (6)
7 KiB
Other (1)
4 KiB
Stylesheet (1)
2 KiB
Document (2)
2 KiB
Heaviest requests (30)
URLTypeStatusTransfer
https://siteintercept.qualtrics.com/dxjsmodule/941.769e075aa2ef88969a43.chunk.js?Q_CLIENTVERSION=2.53.0&Q_CLIENTTYPE=web&Q_BRANDID=www.autozone.comScript20038 KiB
https://tags.tiqcdn.com/utag/autozone/b2c-responsive-us/prod/utag.3.js?utv=ut4.47.202607090322Script20037 KiB
https://siteintercept.qualtrics.com/dxjsmodule/CoreModule.js?Q_CLIENTVERSION=2.53.0&Q_CLIENTTYPE=web&Q_BRANDID=autozoneScript20033 KiB
https://tags.tiqcdn.com/utag/autozone/b2c-responsive-us/prod/utag.jsScript20033 KiB
https://services.postcodeanywhere.co.uk/js/platformcaptureplus-2.40.min.js?key=MA91-ND29-KM98-NM32&BRAND=PostcodeAnywhereScript20028 KiB
https://siteintercept.qualtrics.com/dxjsmodule/881.aef18691518ab4d98fec.chunk.js?Q_CLIENTVERSION=2.53.0&Q_CLIENTTYPE=web&Q_BRANDID=www.autozone.comScript20018 KiB
https://ct.captcha-delivery.com/c.jsScript20014 KiB
https://autoz11111.pcapredict.com/js/sensor.jsScript20013 KiB
https://siteintercept.qualtrics.com/dxjsmodule/WebResponsiveDialogModule.js?Q_CLIENTVERSION=2.53.0&Q_CLIENTTYPE=web&Q_BRANDID=autozoneScript20011 KiB
https://tags.tiqcdn.com/utag/autozone/b2c-responsive-us/prod/utag.206.js?utv=ut4.47.202607090322Script20011 KiB
https://ct.captcha-delivery.com/ext.C254CBC8986297F1AB1F10918EC6CA.jsScript2007 KiB
https://siteintercept.qualtrics.com/dxjsmodule/308.9d2d27321812850d955a.chunk.js?Q_CLIENTVERSION=2.53.0&Q_CLIENTTYPE=web&Q_BRANDID=autozoneScript2007 KiB
https://integrate.thrive.today/Script2005 KiB
https://services.postcodeanywhere.co.uk/images/icons/captureplus/loqatelogoinverted.svgImage2005 KiB
https://znenhmrspg8idzymd-autozone.siteintercept.qualtrics.com/WRSiteInterceptEngine/?Q_ZID=ZN_enhmrspG8idZYMd&Q_LOC=https%3A%2F%2Fwww.autozone.com%2FScript2005 KiB
https://www.autozone.com/favicon.icoOther2004 KiB
https://services.postcodeanywhere.co.uk/images/icons/captureplus/loader.gifImage2003 KiB
https://siteintercept.qualtrics.com/WRSiteInterceptEngine/Targeting.php?Q_ZoneID=ZN_enhmrspG8idZYMd&Q_CLIENTVERSION=2.53.0&Q_CLIENTTYPE=webXHR2003 KiB
https://siteintercept.qualtrics.com/dxjsmodule/EmbeddedTargetModule.js?Q_CLIENTVERSION=2.53.0&Q_CLIENTTYPE=web&Q_BRANDID=autozoneScript2003 KiB
https://services.postcodeanywhere.co.uk/css/platformcaptureplus-2.40.min.css?key=MA91-ND29-KM98-NM32&BRAND=PostcodeAnywhereStylesheet2002 KiB
https://services.postcodeanywhere.co.uk/images/icons/captureplus/geolocationicon.svgImage2002 KiB
https://siteintercept.qualtrics.com/WRSiteInterceptEngine/Asset.php?Module=SI_1WYXGtZBDGcNOiG&Version=37&Q_ORIGIN=https://www.autozone.com&Q_CLIENTVERSION=2.53.0&Q_CLIENTTYPE=web&Q_BrandTier=RQqcwhV2J1&Q_ARCACHEVERSION=21&Q_BRANDDC=iad1XHR2002 KiB
https://www.autozone.com/Document4032 KiB
https://tags.tiqcdn.com/utag/autozone/b2c-responsive-us/prod/utag.15.js?utv=ut4.47.202508131720Script2002 KiB
https://siteintercept.qualtrics.com/dxjsmodule/147.c84a094c6c0838b08571.chunk.js?Q_CLIENTVERSION=2.53.0&Q_CLIENTTYPE=web&Q_BRANDID=autozoneScript2001 KiB
https://tags.tiqcdn.com/utag/autozone/b2c-responsive-us/prod/utag.214.js?utv=ut4.47.202505150408Script2001 KiB
https://tags.tiqcdn.com/utag/autozone/b2c-responsive-us/prod/utag.16.js?utv=ut4.47.202411250658Script2001 KiB
https://siteintercept.qualtrics.com/WRSiteInterceptEngine/Asset.php?Module=CR_8eNI9wSiZJ7d5Eq&Version=1&Q_InterceptID=SI_1WYXGtZBDGcNOiG&Q_ORIGIN=https://www.autozone.com&Q_CLIENTVERSION=2.53.0&Q_CLIENTTYPE=web&Q_BrandTier=RQqcwhV2J1&Q_ARCACHEVERSION=21&Q_BRANDDC=iad1XHR2001 KiB
https://dpm.demdex.net/id?d_visid_ver=2.5.0&d_fieldgroup=MC&d_rtbd=json&d_ver=2&d_orgid=0E3334FA53DA8C980A490D44%40AdobeOrg&d_nsid=0&ts=1784548406264XHR2001 KiB
https://collect.tealiumiq.com/autozone/b2c-responsive-us/2/i.gifXHR2001 KiB

Long tasks (>50 ms)

StartDuration
2117 ms54 ms
730 ms51 ms
Analyzing…
running mobile + desktop · ~30s