www.npr.org
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.
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.
Metrics
Token Cost breakdown
Where the page's tokens go (≈37,202 across regions). 100% is non-content — chrome and boilerplate an agent pays for. Add landmark roles (main/nav/header/footer) so agents can skip it.
Final screenshot
Diagnostics
pre-JS raw HTML
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.
content vs chrome/boilerplate
Fix: Wrap the real content in <main>/<article>, cut repeated nav/boilerplate, and keep the primary content dense and early in the DOM.
agent representation (Chrome/markdown output)
Fix: Trim boilerplate, collapse repeated structures, and drop decorative markup from agent-visible content so an agent spends fewer tokens to read the page.
Rendered profile: headless
Metrics
Token Cost breakdown
Where the page's tokens go (≈35,609 across regions). 100% is non-content — chrome and boilerplate an agent pays for. Add landmark roles (main/nav/header/footer) so agents can skip it.
Final screenshot
Diagnostics
content vs chrome/boilerplate
Fix: Wrap the real content in <main>/<article>, cut repeated nav/boilerplate, and keep the primary content dense and early in the DOM.
pre-JS raw HTML
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.
agent representation (Chrome/markdown output)
Fix: Trim boilerplate, collapse repeated structures, and drop decorative markup from agent-visible content so an agent spends fewer tokens to read the page.
Rendered profile: headless
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
Issues (8)
✗ robots.txt allows AI bots high impact Blocks: * (all)
Business impact If robots.txt blocks AI crawlers you are invisible to ChatGPT, Claude and Perplexity — they skip you and recommend a competitor instead.
What we measured We read /robots.txt and test it against 16 AI user-agents (GPTBot, ClaudeBot, PerplexityBot, …) for a Disallow that blocks them.
How to fix Allow major AI bots to public content; restrict only private paths (/admin, /api).
User-agent: GPTBot
Allow: /
Disallow: /admin/
~ No content-blocking cookie wall medium impact Consent platform: onetrust (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.
# Your Site
> One-line description for AI agents.
## Key pages
- /products — catalog
- /pricing — plans
- /docs — documentationSpec: 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.
<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.
# robots.txt
Sitemap: https://example.com/sitemap.xml
~ 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.
~ 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.
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.
Passed audits (3)
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.
Per-header findings (6)
| Header | Evidence |
|---|---|
| ✅ HTTPS | served over HTTPS |
| ❌ HSTS | no strict-transport-security header |
| ❌ Content-Security-Policy | no content-security-policy header |
| ✅ X-Content-Type-Options | nosniff |
| ✅ Referrer-Policy | no-referrer-when-downgrade |
| ❌ CORS exposure | access-control-allow-origin: * WITH allow-credentials: true — invalid and unsafe |
How to improve
whole profile
Third-party impact
339 third-party requests · 6228 KiB (79.2% of transfer) · 7509 ms main-thread — code an agent must also fetch/run before your content settles. Fewer, lazier third-parties = faster, cheaper agent reads.
| Third-party domain | Reqs | Transfer | Main-thread |
|---|---|---|---|
| brightspotcdn.com | 26 | 1174 KiB | — |
| doubleclick.net | 17 | 764 KiB | 1678 ms |
| media-amazon.com | 6 | 522 KiB | 88 ms |
| googletagmanager.com | 3 | 458 KiB | 330 ms |
| gstatic.com | 1 | 374 KiB | 122 ms |
| geoedge.be | 13 | 373 KiB | 514 ms |
| amazon-adsystem.com | 36 | 316 KiB | 282 ms |
| cookielaw.org | 13 | 249 KiB | 695 ms |
| stripe.com | 2 | 240 KiB | 108 ms |
| jwpcdn.com | 4 | 216 KiB | 291 ms |
| pubmatic.com | 22 | 197 KiB | 341 ms |
| googleapis.com | 3 | 153 KiB | 69 ms |
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).
| Bundle | Transfer | Unused | Wasted |
|---|---|---|---|
| https://securepubads.g.doubleclick.net/pagead/managed/js/gpt/m202607160101/pubads_impl.js?cb=31099788 3P | 626 KiB | 57% | 357 KiB |
| https://www.gstatic.com/recaptcha/releases/A7KpaEASfhDcK0nXxgQEyyYv/recaptcha__en.js 3P | 374 KiB | 63% | 236 KiB |
| https://js.stripe.com/v3/ 3P | 240 KiB | 74.7% | 179 KiB |
| https://imasdk.googleapis.com/js/sdkloader/ima3.js 3P | 151 KiB | 70.2% | 106 KiB |
| https://www.googletagmanager.com/gtm.js?id=GTM-NHZ4W3X>m=4e67h1 3P | 147 KiB | 65.3% | 96 KiB |
| https://www.googletagmanager.com/gtag/js?id=G-XK44GJHVBE&cx=c>m=4e67h1 3P | 176 KiB | 49.4% | 87 KiB |
| https://ads.pubmatic.com/AdServer/js/pwt/162268/7835/pwt.js 3P | 183 KiB | 47.4% | 87 KiB |
| https://cdn.piano.io/api/tinypass.min.js 3P | 136 KiB | 61% | 83 KiB |
| https://cdn.cookielaw.org/scripttemplates/202601.1.0/otBannerSdk.js 3P | 127 KiB | 61.5% | 78 KiB |
| https://prod-eks-bundles.npr.org/dist/bundles/81.0333e70ebca644b06cf6.chunk.js | 103 KiB | 61.6% | 63 KiB |
| https://ssl.p.jwpcdn.com/player/v/8.20.10/provider.hlsjs.js 3P | 103 KiB | 59.2% | 61 KiB |
| https://prod-eks-bundles.npr.org/dist/bundles/1.4b290c4797456da79d00.chunk.js | 124 KiB | 49% | 61 KiB |
| https://prod-eks-bundles.npr.org/dist/bundles/3.c1da04b9877ef88619d2.chunk.js | 83 KiB | 72.8% | 60 KiB |
| https://www.npr.org/5o0HlDny8AjDDAhD4RImZg06/pD3EQwVu/bjt-Fl8sBQ/VWY_e/hkZMxsM?v=036952a5-0c5f-652c-ba19-ef56ae10b81e | 161 KiB | 36.7% | 59 KiB |
| https://prod-eks-bundles.npr.org/dist/bundles/4.bff63085dfd93ea5aa7a.chunk.js | 94 KiB | 58.9% | 55 KiB |
Network
Heaviest requests (30)
| URL | Type | Status | Transfer |
|---|---|---|---|
| https://securepubads.g.doubleclick.net/pagead/managed/js/gpt/m202607160101/pubads_impl.js?cb=31099788 | Script | 200 | 626 KiB |
| https://m.media-amazon.com/images/S/al-na-9d5791cf-3faf/49459180-0ab3-463d-89f7-c64e0876d57e.png | Image | 200 | 459 KiB |
| https://www.gstatic.com/recaptcha/releases/A7KpaEASfhDcK0nXxgQEyyYv/recaptcha__en.js | Script | 200 | 374 KiB |
| https://rumcdn.geoedge.be/880a45f2-0015-49d2-b38f-2d26be44ae09/grumi.js | Script | 200 | 342 KiB |
| https://prod-eks-bundles.npr.org/dist/bundles/fonts-css-44720144d4aac44e09ad.css | Stylesheet | 200 | 342 KiB |
| https://js.stripe.com/v3/ | Script | 200 | 240 KiB |
| https://ads.pubmatic.com/AdServer/js/pwt/162268/7835/pwt.js | Script | 200 | 183 KiB |
| https://www.googletagmanager.com/gtag/js?id=G-XK44GJHVBE&cx=c>m=4e67h1 | Script | 200 | 176 KiB |
| https://www.npr.org/5o0HlDny8AjDDAhD4RImZg06/pD3EQwVu/bjt-Fl8sBQ/VWY_e/hkZMxsM?v=036952a5-0c5f-652c-ba19-ef56ae10b81e | Script | 200 | 161 KiB |
| https://media.npr.org/chrome/npr-logo-2026-animated.gif | Image | 200 | 158 KiB |
| https://imasdk.googleapis.com/js/sdkloader/ima3.js | Script | 200 | 151 KiB |
| https://www.googletagmanager.com/gtm.js?id=GTM-NHZ4W3X>m=4e67h1 | Script | 200 | 147 KiB |
| https://e1cef1f0-495f-4973-ba1c-880786e73a66.edge.permutive.app/e1cef1f0-495f-4973-ba1c-880786e73a66-web.js | Script | 200 | 137 KiB |
| https://cdn.piano.io/api/tinypass.min.js | Script | 200 | 136 KiB |
| https://www.googletagmanager.com/gtm.js?id=GTM-MVD397M | Script | 200 | 135 KiB |
| https://cdn.cookielaw.org/scripttemplates/202601.1.0/otBannerSdk.js | Script | 200 | 127 KiB |
| https://prod-eks-bundles.npr.org/dist/bundles/1.4b290c4797456da79d00.chunk.js | Script | 200 | 124 KiB |
| https://cdn.optimizely.com/js/11107397707.js | Script | 200 | 123 KiB |
| https://npr.brightspotcdn.com/dims3/default/strip/false/crop/3193x1796+323+0/resize/300/quality/100/format/png/?url=http%3A%2F%2Fnpr-brightspot.s3.amazonaws.com%2F8f%2F42%2F6a2c03bb4e68a595c9a6501165e2%2Fimage.png | Image | 200 | 118 KiB |
| https://ssl.p.jwpcdn.com/player/v/8.20.10/provider.hlsjs.js | Script | 200 | 103 KiB |
| https://prod-eks-bundles.npr.org/dist/bundles/81.0333e70ebca644b06cf6.chunk.js | Script | 200 | 103 KiB |
| https://npr.brightspotcdn.com/dims3/default/strip/false/crop/7347x4133+0+0/resize/800/quality/85/format/jpeg/?url=http%3A%2F%2Fnpr-brightspot.s3.amazonaws.com%2Fd3%2Fe9%2Fc1759101496fb8370843163a8e4f%2F20260717-vince-staples-tiny-desk-photo-credit-alanteserene-as04.jpg | Image | 200 | 96 KiB |
| https://npr.brightspotcdn.com/dims3/default/strip/false/crop/2048x1152+0+0/resize/800/quality/85/format/jpeg/?url=http%3A%2F%2Fnpr-brightspot.s3.amazonaws.com%2Fdb%2F0a%2Fc8944f664df08b1ff805ba0b601a%2F20260518-napalm-death-vanessacastillo3.jpg | Image | 200 | 96 KiB |
| https://npr.brightspotcdn.com/dims3/default/strip/false/crop/5304x2984+0+1915/resize/300/quality/100/format/jpeg/?url=http%3A%2F%2Fnpr-brightspot.s3.amazonaws.com%2Fcb%2Fb0%2F5edde377471694b42276d4fad0e9%2Fnpr-071026-josephwilliams-1-8.JPG | Image | 200 | 94 KiB |
| https://prod-eks-bundles.npr.org/dist/bundles/4.bff63085dfd93ea5aa7a.chunk.js | Script | 200 | 94 KiB |
| https://c.amazon-adsystem.com/aax2/apstag.js | Script | 200 | 91 KiB |
| https://videos-cloudfront-usp.jwpsrv.com/6a602095_1738e9844a55a48a50b9c30c58bbf3ee03012a15/sites/GlQS13rH/media/1Trg8Sya/versions/OqsCAbwi/manifest.ism/manifest-audio_0_Z4hZjKHH_QU5l390n=112001-video_0_Z4hZjKHH_ndnZX6uZ=245345-1.ts | XHR | 200 | 89 KiB |
| https://www.npr.org/ | Document | 200 | 89 KiB |
| https://prod-eks-bundles.npr.org/dist/bundles/3.c1da04b9877ef88619d2.chunk.js | Script | 200 | 83 KiB |
| https://pagead2.googlesyndication.com/pagead/managed/js/activeview/current/ufs_web_display.js | Script | 200 | 73 KiB |
Long tasks (>50 ms)
| Start | Duration |
|---|---|
| 7963 ms | 1041 ms |
| 2057 ms | 386 ms |
| 7561 ms | 303 ms |
| 1082 ms | 271 ms |
| 2633 ms | 269 ms |
| 380 ms | 260 ms |
| 6903 ms | 258 ms |
| 13514 ms | 246 ms |
| 6302 ms | 221 ms |
| 9108 ms | 206 ms |