www.latimes.com

Report from 9/21/2026, 1:17:55 PM https://www.latimes.com
Latest run · lab, cold cache
67
9/21/2026
28-day score · p75 · the standard
68
22 runs
CRR79%latest
SSD55%latest
TC429 toklatest
TTFUT34 ms28-day p75

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/latimes.com.svg)](https://agentvitals.dev/results?url=https%3A%2F%2Fwww.latimes.com)
<a href="https://agentvitals.dev/results?url=https%3A%2F%2Fwww.latimes.com"><img src="https://agentvitals.dev/badge/latimes.com.svg" alt="Core Agent Vitals" height="20"></a>
What AI tells your customers about youAgent confidence: HIGH
Business nameNews from California, across the nation and world - Los Angeles Times
CategoryWebPage
🟡Price$2 · guessed from page text (no structured data)
Locationnot applicable · not applicable to this page type
Hoursnot applicable · not applicable to this page type
Productsnot applicable · not applicable to this page type
DescriptionThe L.A. Times is a leading source of breaking news, entertainment, sports, politics, and more for Southern California and the world.

An agent can answer questions about you accurately. 3/4 applicable facts come from machine-readable structured data.

70
Overall score
weighted CAV (0–100)
WARN
0–4950–8990–100

Metrics

91%
CRR Content Recovery Needs work
0.54
SSD Semantic Signal Density Needs work
346 tok
TC Token Cost Good
18 ms
TTFUT Time to First Useful Token N/A

Token Cost breakdown

Where the page's tokens go (≈54,723 across regions). Most tokens are real content — the agent isn't paying much for chrome.

Content
83.5% · 45,678
Chrome (nav / header / footer)
16.5% · 9,045
Boilerplate (cookie / ad)
0% · 0
Other
0% · 0

Final screenshot

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

Diagnostics

medium CRR Content is hidden behind JavaScript

pre-JS raw HTML

Evidence9% 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.

medium SSD Low signal-to-noise for agents

content vs chrome/boilerplate

Evidencesignal 0.07 · generic JSON-LD 1/1
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.

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) Blocks: * (all) Learn →
~ sitemap.xml Stale (lastmod 2024-08-08T17:25:21-04:00) Learn →
JSON-LD structured data Types: WebPage Learn →
~ agents.json Absent (emerging standard) Learn →
~ WebMCP endpoint Absent (emerging standard) Learn →
~ OpenAPI / API docs No OpenAPI/Swagger found Learn →

Issues (6)

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).

Learn how to implement →

User-agent: GPTBot
Allow: /
Disallow: /admin/

Spec: https://platform.openai.com/docs/gptbot

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

~ XML sitemap fresh medium impact Stale (lastmod 2024-08-08T17:25:21-04:00)

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

✓ No CAPTCHA wall✓ No content-blocking cookie wall✓ Machine-readable prices✓ No login wall on public content✓ Structured data (JSON-LD)✓ 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.

81Transport posture (0–100, unscored)
3pass
1warn
1fail
Per-header findings (6)
HeaderEvidence
✅ HTTPSserved over HTTPS
✅ HSTSmax-age=63072000
✅ Content-Security-Policypolicy present, script-src does not allow inline
❌ X-Content-Type-Optionsmissing nosniff
⚠️ Referrer-Policyno referrer-policy header (browser default applies)
➖ CORS exposureno CORS headers on the document (normal for an HTML page)
Full profile — how to improve · unused JS · network · timing

How to improve

highSplit the heaviest unused bundlehighest leverage

3891-3b48ee07.bundle.js — 199 KiB transferred, 89.6% unused

EvidenceCDP JS coverage: 179 KiB of this bundle is never executed on load.
Impact~-179 KiB transfer; lower Token Cost + faster agent parse.
Effort30–90 min
FixDynamic-import() the below-the-fold parts of 3891-3b48ee07.bundle.js, or drop unused dependencies.
highCut third-party weight

brightspotcdn.com — 399 KiB, 24 requests, 36 ms main-thread

EvidenceThird-party is 64.5% of total transfer (63 requests); brightspotcdn.com is the largest.
ImpactFewer bytes + main-thread stalls before your content settles for an agent.
Effort1–3 h
FixLazy-load, self-host, or remove brightspotcdn.com; defer non-critical third-party scripts.
mediumCut total transfer weight

2.1 MB total

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

Third-party impact

63 third-party requests · 1405 KiB (64.5% of transfer) · 141 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
brightspotcdn.com24399 KiB36 ms
doubleclick.net3270 KiB43 ms
confiant-integrations.net2217 KiB55 ms
googletagmanager.com1183 KiB
permutive.app1140 KiB7 ms
californiatimes.com19130 KiB
aswpsdkus.com141 KiB
speedcurve.com112 KiB
chartbeat.com211 KiB
scorecardresearch.com21 KiB
adnxs.com11 KiB
permutive.com30 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.latimes.com/styleguide/3891-3b48ee07.bundle.js199 KiB89.6%179 KiB
https://securepubads.g.doubleclick.net/pagead/managed/js/gpt/m202609140101/pubads_impl.js?cb=122881037 3P211 KiB77.1%162 KiB
https://cdn.confiant-integrations.net/gptprebidnative/202609101829/wrap.js 3P154 KiB63.1%97 KiB
https://www.googletagmanager.com/gtag/js?id=G-FB5D97VJNM&l=adsData 3P183 KiB52.5%96 KiB
https://libs.platform.latimes.com/reg/tribune/latspot.min.js138 KiB49.3%68 KiB
https://activate.platform.californiatimes.com/caltimes/latimes/Bootstrap.js 3P85 KiB62.8%53 KiB
https://ca-times.brightspotcdn.com/resource/0000016e-6bb5-d505-abef-fbb7e4420000/styleguide/Core.min.c35723b75e8c12bceabbe955dd5c3772.gz.js 3P55 KiB60.5%33 KiB
https://aswpsdkus.com/notify/v1/ua-sdk.min.js 3P41 KiB78.5%32 KiB
https://68547f8f-2fd8-4ff3-9b63-51e86e2edee8.edge.permutive.app/68547f8f-2fd8-4ff3-9b63-51e86e2edee8-web.js 3P140 KiB17.2%24 KiB
https://www.latimes.com/styleguide/8105-79b88202.bundle.js21 KiB82.6%17 KiB
https://securepubads.g.doubleclick.net/tag/js/gpt.js 3P37 KiB43.6%16 KiB
https://activate.platform.californiatimes.com/caltimes/latimes/code/f25f6a8c945e3c36ed65c9760b23dc38.js?conditionId0=4849544&conditionId1=4973080 3P12 KiB92%11 KiB
https://libs.platform.latimes.com/meteringjs/latspot.js45 KiB20.8%9 KiB
https://cdn.speedcurve.com/js/lux.js?id=20201913 3P12 KiB70.8%9 KiB
https://www.latimes.com/styleguide/gvp-95842c06.bundle.js9 KiB90.9%8 KiB

Network

84Requests
2179 KiBTransferred
39Scripts
64.5%3rd-party
1Long tasks
Script (39)
1478 KiB
Font (8)
249 KiB
Image (22)
226 KiB
Document (1)
171 KiB
Stylesheet (2)
28 KiB
Other (3)
24 KiB
Fetch (3)
2 KiB
XHR (6)
2 KiB
Heaviest requests (30)
URLTypeStatusTransfer
https://securepubads.g.doubleclick.net/pagead/managed/js/gpt/m202609140101/pubads_impl.js?cb=122881037Script200211 KiB
https://www.latimes.com/styleguide/3891-3b48ee07.bundle.jsScript200199 KiB
https://www.googletagmanager.com/gtag/js?id=G-FB5D97VJNM&l=adsDataScript200183 KiB
https://www.latimes.com/Document200171 KiB
https://cdn.confiant-integrations.net/gptprebidnative/202609101829/wrap.jsScript200154 KiB
https://68547f8f-2fd8-4ff3-9b63-51e86e2edee8.edge.permutive.app/68547f8f-2fd8-4ff3-9b63-51e86e2edee8-web.jsScript200140 KiB
https://libs.platform.latimes.com/reg/tribune/latspot.min.jsScript200138 KiB
https://activate.platform.californiatimes.com/caltimes/latimes/Bootstrap.jsScript20085 KiB
https://ca-times.brightspotcdn.com/dims4/default/e13b05f/2147483647/strip/true/crop/1200x1200+0+0/resize/568x568!/format/webp/quality/75/?url=https%3A%2F%2Fedition.pagesuite.com%2Fget_image.aspx%3Fnewportal%3Dtrue%26w%3D1200%26pbid%3D50435180-e58e-48b5-8e0c-236bf740270e%26date%3D1789736400000Image20063 KiB
https://cdn.confiant-integrations.net/GfBGK_P3Adzw1hvTTkQjebew6Z4/gpt_and_prebid/config.jsScript20062 KiB
https://ca-times.brightspotcdn.com/resource/0000016e-6bb5-d505-abef-fbb7e4420000/styleguide/Core.min.c35723b75e8c12bceabbe955dd5c3772.gz.jsScript20055 KiB
https://www.latimes.com/styleguide/assets/ProximaNova-CondensedBold.woff2Font20052 KiB
https://www.latimes.com/styleguide/assets/ProximaNova-Regular.woff2Font20052 KiB
https://www.latimes.com/styleguide/assets/ProximaNova-SemiBold.woff2Font20051 KiB
https://libs.platform.latimes.com/meteringjs/latspot.jsScript20045 KiB
https://aswpsdkus.com/notify/v1/ua-sdk.min.jsScript20041 KiB
https://securepubads.g.doubleclick.net/tag/js/gpt.jsScript20037 KiB
https://ca-times.brightspotcdn.com/resource/0000016e-6bb5-d505-abef-fbb7e4420000/styleguide/assets/KisFBDisplay-Bold.4046c096f268453d9b0ff36ff067feec.woff2Font20032 KiB
https://ca-times.brightspotcdn.com/dims4/default/f23fd89/2147483647/strip/true/crop/3000x2000+0+0/resize/568x379!/format/webp/quality/75/?url=https%3A%2F%2Fcalifornia-times-brightspot.s3.amazonaws.com%2F4d%2F7f%2F4744f15447a1b664b88903f76777%2Fkelly-osbourne-and-aimee-osbourne.jpgImage20027 KiB
https://securepubads.g.doubleclick.net/pagead/managed/dict/m202609080101/gptOther20022 KiB
https://ca-times.brightspotcdn.com/dims4/default/d04dce0/2147483647/strip/true/crop/5000x3333+0+1/resize/840x560!/format/webp/quality/75/?url=https%3A%2F%2Fcalifornia-times-brightspot.s3.amazonaws.com%2F10%2F43%2F103569494831b3a3b01f2e4bbf07%2F1569774-me-childs-death-freezer-21.jpgImage20021 KiB
https://www.latimes.com/styleguide/8105-79b88202.bundle.jsScript20021 KiB
https://ca-times.brightspotcdn.com/resource/0000016e-6bb5-d505-abef-fbb7e4420000/styleguide/assets/BentonGothicCond-Black.296bb6689af9a44513ffcc30e4f20962.woff2Font20020 KiB
https://ca-times.brightspotcdn.com/dims4/default/694e646/2147483647/strip/true/crop/2404x1603+0+70/resize/568x379!/format/webp/quality/75/?url=https%3A%2F%2Fcalifornia-times-brightspot.s3.amazonaws.com%2F90%2Fc8%2Fedc4942143f5b44de2c28e35ace1%2Fla-me-golden-retriever-begs-to-play-with-intruder.jpgImage20018 KiB
https://ca-times.brightspotcdn.com/resource/0000016e-6bb5-d505-abef-fbb7e4420000/styleguide/styles-gvp.min.f2e5ec689d52a75cafeb65d6b5d0b912.gz.cssStylesheet20016 KiB
https://ca-times.brightspotcdn.com/dims4/default/16a5469/2147483647/strip/true/crop/5958x3972+0+0/resize/320x213!/format/webp/quality/75/?url=https%3A%2F%2Fcalifornia-times-brightspot.s3.amazonaws.com%2F59%2Fbf%2F7823c8684a75814e004c97c2405d%2F1569517-me-barrio-athletics-elysian-park-03jpg.jpgImage20016 KiB
https://ca-times.brightspotcdn.com/resource/0000016e-6bb5-d505-abef-fbb7e4420000/styleguide/assets/BentonGothic-Medium.0af2a448f6d58f8dd85f039eba38b50f.woff2Font20014 KiB
https://ca-times.brightspotcdn.com/resource/0000016e-6bb5-d505-abef-fbb7e4420000/styleguide/assets/BentonGothic-Bold.0173e1397f3e876c231fe162dd06864a.woff2Font20014 KiB
https://ca-times.brightspotcdn.com/resource/0000016e-6bb5-d505-abef-fbb7e4420000/styleguide/assets/BentonGothic-Regular.0c532721f81fc3dc5537f4f33e2023d8.woff2Font20014 KiB
https://cdn.speedcurve.com/js/lux.js?id=20201913Script20012 KiB

Long tasks (>50 ms)

StartDuration
346 ms54 ms
Analyzing…
running mobile + desktop · ~30s