www.snowflake.com

Report from 9/18/2026, 10:06:03 AM https://www.snowflake.com
Latest run · lab, cold cache
60
9/18/2026
28-day score · p75 · the standard
4/7 runs — building history (nightly)

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/snowflake.com.svg)](https://agentvitals.dev/results?url=https%3A%2F%2Fwww.snowflake.com)
<a href="https://agentvitals.dev/results?url=https%3A%2F%2Fwww.snowflake.com"><img src="https://agentvitals.dev/badge/snowflake.com.svg" alt="Core Agent Vitals" height="20"></a>
What AI tells your customers about youAgent confidence: LOW
🟡Business nameThe Snowflake AI Data Cloud - Mobilize Data, Apps, and AI · 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
🟡DescriptionSnowflake powers AI, data engineering, applications, and analytics on a trusted, scalable AI Data Cloud—eliminating silos and accelerating innovation. · guessed from page text (no structured data)

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.

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

Metrics

64%
CRR Content Recovery Poor
0.93
SSD Semantic Signal Density Good
2,036 tok
TC Token Cost Good
77 ms
TTFUT Time to First Useful Token N/A

Token Cost breakdown

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

Content
0.7% · 107
Chrome (nav / header / footer)
1.6% · 260
Boilerplate (cookie / ad)
4.5% · 725
Other
93.2% · 14,952

Final screenshot

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

Diagnostics

high CRR Content is hidden behind JavaScript

pre-JS raw HTML

Evidence36% of content requires JS
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.

high TC 99.3% of tokens are non-content (boilerplate/chrome)

agent representation — token decomposition

EvidenceToken decomposition: content 0.7%, chrome 1.6%, boilerplate 4.5%, other 93.2%. Only 0.7000000000000028% 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 72/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 Absent at /llms.txt and /.well-known/llms.txt Learn →
robots.txt (AI bots) Major AI bots allowed Learn →
sitemap.xml Found at /sitemap_index.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 content-blocking cookie wall medium impact Consent platform: optanon (verify it doesn't block content)

Business impact A consent wall that hides content until a click is invisible to agents — they cannot click 'Accept'.

What we measured We fingerprint OneTrust, Cookiebot, Usercentrics and similar managers and flag content-blocking ones.

How to fix Use an overlay banner that leaves content in the DOM, not a blocking interstitial.

Spec: https://gdpr.eu/cookies/

llms.txt present high impact Absent at /llms.txt and /.well-known/llms.txt

Business impact llms.txt is the robots.txt for AI: it tells agents what your site is, what matters, and where to find it. Without it AI guesses — and guessing means inaccurate recommendations and lost visibility.

What we measured We fetch /llms.txt and /.well-known/llms.txt and validate the spec (H1 title + a one-line blockquote summary). We also note /llms-full.txt (your full content as Markdown).

How to fix Create /llms.txt with a short summary + key pages; optionally /llms-full.txt with full content in Markdown.

Learn how to implement →

# Your Site
> One-line description for AI agents.

## Key pages
- /products — catalog
- /pricing — plans
- /docs — documentation

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/

~ 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 (6)

✓ robots.txt allows AI bots✓ No CAPTCHA wall✓ Machine-readable prices✓ No login wall on public content✓ XML sitemap present + fresh✓ 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.

100Transport posture (0–100, unscored)
6pass
0warn
0fail
Per-header findings (6)
HeaderEvidence
✅ HTTPSserved over HTTPS
✅ HSTSmax-age=31536000; includeSubDomains; preload
✅ Content-Security-Policypolicy present, script-src does not allow inline
✅ X-Content-Type-Optionsnosniff
✅ Referrer-Policyno-referrer-when-downgrade
✅ CORS exposureaccess-control-allow-origin: *
Full profile — how to improve · unused JS · network · timing

How to improve

highSplit the heaviest unused bundlehighest leverage

clientlib-react.lc-33ce6d780fb3b0a1f65ef566e1c81c2a-lc.min.js — 481 KiB transferred, 75.4% unused

EvidenceCDP JS coverage: 363 KiB of this bundle is never executed on load.
Impact~-363 KiB transfer; lower Token Cost + faster agent parse.
Effort30–90 min
FixDynamic-import() the below-the-fold parts of clientlib-react.lc-33ce6d780fb3b0a1f65ef566e1c81c2a-lc.min.js, or drop unused dependencies.
highBreak up long main-thread tasks

longest task 260 ms (1 total)

EvidenceMain thread blocked 260 ms by the longest task.
ImpactFaster interactivity + content settling.
Effort1–4 h
FixSplit heavy work, defer third-party scripts, move compute off the main thread.
mediumCut total transfer weight

6.3 MB total

Evidence6.3 MB transferred.
ImpactCheaper, faster fetch on slow links.
Effort1–3 h
FixEnable Brotli, serve WebP/AVIF images, defer non-critical resources.

Third-party impact

59 third-party requests · 831 KiB (12.9% of transfer) · 8 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
googletagmanager.com2392 KiB
cookielaw.org11248 KiB
mktoweb.com577 KiB
adobedtm.com272 KiB
hlx.page3329 KiB
cloudflareinsights.com110 KiB8 ms
adobedc.net21 KiB
googleapis.com11 KiB
onetrust.com10 KiB
google-analytics.com10 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://www.snowflake.com/etc.clientlibs/snowflake-site/clientlibs/clientlib-react.lc-33ce6d780fb3b0a1f65ef566e1c81c2a-lc.min.js481 KiB75.4%363 KiB
https://www.googletagmanager.com/gtag/js?id=G-KXJB3GGT1Y&cx=c&gtm=4e69g1 3P185 KiB49.3%91 KiB
https://www.googletagmanager.com/gtm.js?id=GTM-5Q8R2G 3P207 KiB41.6%86 KiB
https://cdn.cookielaw.org/scripttemplates/202606.2.0/otBannerSdk.js 3P137 KiB62.4%85 KiB
https://www.snowflake.com/etc.clientlibs/snowflake-site/clientlibs/clientlib-react/resources/static/js/vendor-gsap.52cc85b4.chunk.js69 KiB74.8%52 KiB
https://252-rfo-227.mktoweb.com/js/forms2/js/forms2.min.js 3P68 KiB59.5%40 KiB
https://www.snowflake.com/etc.clientlibs/snowflake-site/clientlibs/clientlib-react/resources/static/js/chunk-content.227589b0.chunk.js42 KiB86.1%37 KiB
https://assets.adobedtm.com/0a17b55ca7cd/44cd06dd2ecb/launch-643b1321858d.min.js 3P71 KiB43%31 KiB
https://www.snowflake.com/etc.clientlibs/snowflake-site/clientlibs/clientlib-react/resources/static/js/chunk-cards.41e79be8.chunk.js29 KiB97%28 KiB
https://www.snowflake.com/etc/cloudsettings.kernel.js/conf/snowflake-site/settings/cloudsettings/legacy/contexthub58 KiB45.3%26 KiB
https://www.snowflake.com/etc.clientlibs/snowflake-site/clientlibs/clientlib-react/resources/static/js/vendor-markdown.8757b8da.chunk.js22 KiB99.5%22 KiB
https://www.snowflake.com/etc.clientlibs/snowflake-site/clientlibs/clientlib-react/resources/static/js/chunk-forms.1a29fb45.chunk.js22 KiB87.9%19 KiB
https://www.snowflake.com/etc.clientlibs/snowflake-site/clientlibs/clientlib-react/resources/static/js/chunk-nav.da46c465.chunk.js18 KiB75.6%13 KiB
https://www.snowflake.com/etc.clientlibs/snowflake-site/clientlibs/clientlib-react/resources/static/js/chunk-shared-cards.05a8a680.chunk.js11 KiB87.2%10 KiB
https://cdn.cookielaw.org/scripttemplates/otSDKStub.js 3P9 KiB49.1%5 KiB

Network

175Requests
6440 KiBTransferred
46Scripts
12.9%3rd-party
1Long tasks
Image (63)
3962 KiB
Script (46)
1527 KiB
Font (5)
477 KiB
Stylesheet (11)
145 KiB
Document (2)
141 KiB
Other (5)
100 KiB
Fetch (11)
74 KiB
XHR (7)
9 KiB
Ping (24)
3 KiB
Manifest (1)
1 KiB
Heaviest requests (30)
URLTypeStatusTransfer
https://www.snowflake.com/adobe/dynamicmedia/deliver/dm-aid--d65ee248-f0f0-4863-bd92-8d436d03babe/booking-com-hero.png?preferwebp=true&quality=85&width=1440Image200588 KiB
https://www.snowflake.com/etc.clientlibs/snowflake-site/clientlibs/clientlib-react.lc-33ce6d780fb3b0a1f65ef566e1c81c2a-lc.min.jsScript200481 KiB
https://www.snowflake.com/adobe/dynamicmedia/deliver/dm-aid--3be4db83-f169-4b6e-b820-290454abc04e/agents-coco-hp.png?preferwebp=true&quality=85&width=1440Image200472 KiB
https://www.snowflake.com/adobe/dynamicmedia/deliver/dm-aid--cb68b717-6826-459e-948b-3afff94ce411/under-armour-hero.png?preferwebp=true&quality=85&width=1440Image200314 KiB
https://www.snowflake.com/adobe/dynamicmedia/deliver/dm-aid--d11947d1-42bf-482c-a011-112c96cbbcda/sanofi-hero.png?preferwebp=true&quality=85&width=1440Image200305 KiB
https://www.snowflake.com/adobe/dynamicmedia/deliver/dm-aid--e5fa6edb-55ef-41ae-a84d-c1b671b2d562/energyhub-hero.png?preferwebp=true&quality=85&width=1440Image200266 KiB
https://www.snowflake.com/fonts/Lato-Regular.woff2Font200207 KiB
https://www.snowflake.com/fonts/Lato-Bold.woff2Font200207 KiB
https://www.googletagmanager.com/gtm.js?id=GTM-5Q8R2GScript200207 KiB
https://www.snowflake.com/adobe/dynamicmedia/deliver/dm-aid--fcc60c2f-f1df-48a4-a5f3-7f4c622bcc2a/1000x630-summit-27-promo-card.png?preferwebp=true&quality=85&width=1440Image200206 KiB
https://www.googletagmanager.com/gtag/js?id=G-KXJB3GGT1Y&cx=c&gtm=4e69g1Script200185 KiB
https://www.snowflake.com/adobe/dynamicmedia/deliver/dm-aid--8d15c8ec-2c26-4b9d-a26b-5e10f86e70bf/soc-og-swt-1200x628.png?preferwebp=true&quality=85&width=1440Image200182 KiB
https://www.snowflake.com/content/snowflake-site/global/en/news/press-releases/snowflake-to-present-at-upcoming-investor-conferences-08-03/_jcr_content/_cq_featuredimage.coreimg.png/1785762839140/og-social-snowflake-newsroom.pngImage200181 KiB
https://www.snowflake.com/en/Document200141 KiB
https://cdn.cookielaw.org/scripttemplates/202606.2.0/otBannerSdk.jsScript200137 KiB
https://www.snowflake.com/content/snowflake-site/global/en/news/press-releases/snowflake-reports-financial-results-for-the-second-quarter-of-fiscal-2027/_jcr_content/_cq_featuredimage.coreimg.png/1788379873123/fy27q2-infographic.pngImage200134 KiB
https://www.snowflake.com/content/snowflake-site/global/en/news/press-releases/snowflake-unlocks-better-ai-economics-dynamic-model-routing/_jcr_content/_cq_featuredimage.coreimg.png/1787009185405/blog-pr-cortex-ai-gateway-1680x720-02.pngImage200127 KiB
https://www.snowflake.com/etc.clientlibs/snowflake-site/clientlibs/clientlib-react.lc-ad72aa51f3210282791814f5d267d4db-lc.min.cssStylesheet200110 KiB
https://www.snowflake.com/adobe/dynamicmedia/deliver/dm-aid--7659a63e-3df1-413a-abb8-1c199decb534/web-ai-data-predictions-2026-960x540%25402x.png?preferwebp=true&quality=85&width=1440Image20095 KiB
https://www.snowflake.com/content/snowflake-site/global/en.model.jsonOther20093 KiB
https://www.snowflake.com/adobe/dynamicmedia/deliver/dm-aid--dbdc9688-4e6c-4c59-96ad-e46b25f0e17c/fanatics-hero.png?preferwebp=true&quality=85&width=1440Image20090 KiB
https://www.snowflake.com/content/dam/snowflake-site/general/static/images/si-sidenav.svgImage20075 KiB
https://www.snowflake.com/adobe/dynamicmedia/deliver/dm-aid--143d39e6-144d-44ae-b45d-601b2e664678/soc-og-mmds-5th-edition-1200x628.png?preferwebp=true&quality=85&width=1440Image20074 KiB
https://assets.adobedtm.com/0a17b55ca7cd/44cd06dd2ecb/launch-643b1321858d.min.jsScript20071 KiB
https://www.snowflake.com/etc.clientlibs/snowflake-site/clientlibs/clientlib-react/resources/static/js/vendor-gsap.52cc85b4.chunk.jsScript20069 KiB
https://252-rfo-227.mktoweb.com/js/forms2/js/forms2.min.jsScript20068 KiB
https://www.snowflake.com/content/dam/snowflake-site/general/static/images/response-1.svgImage20067 KiB
https://www.snowflake.com/etc/cloudsettings.kernel.js/conf/snowflake-site/settings/cloudsettings/legacy/contexthubScript20058 KiB
https://www.snowflake.com/content/dam/snowflake-site/general/static/images/response-chart.svgImage20055 KiB
https://cdn.cookielaw.org/consent/e2fcdaea-38d6-4c35-8d59-c2f96dbce597/019f6c2b-a4a6-7a38-902c-45b79672ba9a/en.jsonFetch20047 KiB

Long tasks (>50 ms)

StartDuration
472 ms260 ms
Analyzing…
running mobile + desktop · ~30s