www.latimes.com

Report from 7/24/2026, 1:16:12 PM https://www.latimes.com
Latest run · lab, cold cache
67
7/24/2026
28-day score · p75 · the standard
67
7 runs
CRR80%latest
SSD55%latest
TC444 toklatest
TTFUT27 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.

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

Metrics

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

Token Cost breakdown

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

Content
82.9% · 43,457
Chrome (nav / header / footer)
17.1% · 8,990
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

Evidence8% 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

8250-4bd20e3e.bundle.js — 218 KiB transferred, 88.8% unused

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

brightspotcdn.com — 451 KiB, 23 requests, 65 ms main-thread

EvidenceThird-party is 68.5% of total transfer (59 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.
mediumBreak up long main-thread tasks

longest task 104 ms (4 total)

EvidenceMain thread blocked 104 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

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

59 third-party requests · 1445 KiB (68.5% of transfer) · 272 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.com23451 KiB65 ms
doubleclick.net3256 KiB54 ms
confiant-integrations.net2226 KiB104 ms
googletagmanager.com1179 KiB
permutive.app1136 KiB12 ms
californiatimes.com18130 KiB28 ms
aswpsdkus.com141 KiB
speedcurve.com113 KiB9 ms
chartbeat.com211 KiB
scorecardresearch.com21 KiB
adnxs.com11 KiB
prmutv.co10 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/8250-4bd20e3e.bundle.js218 KiB88.8%194 KiB
https://securepubads.g.doubleclick.net/pagead/managed/js/gpt/m202607210101/pubads_impl.js 3P197 KiB77.3%152 KiB
https://cdn.confiant-integrations.net/gptprebidnative/202607132048/wrap.js 3P153 KiB61.3%94 KiB
https://www.googletagmanager.com/gtag/js?id=G-FB5D97VJNM&l=adsData 3P179 KiB51.6%93 KiB
https://activate.platform.californiatimes.com/caltimes/latimes/Bootstrap.js 3P83 KiB63%52 KiB
https://ca-times.brightspotcdn.com/resource/0000016e-6bb5-d505-abef-fbb7e4420000/styleguide/Core.min.3fda2beacdc66fec5b275b593b863f88.gz.js 3P57 KiB60.4%34 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 3P136 KiB18.6%25 KiB
https://libs.platform.latimes.com/reg/tribune/latspot.min.js38 KiB49.3%19 KiB
https://securepubads.g.doubleclick.net/tag/js/gpt.js 3P36 KiB45.8%17 KiB
https://activate.platform.californiatimes.com/caltimes/latimes/code/cf5a63b68f5d54aeb310d9051b6bfa85.js?conditionId0=4849544&conditionId1=4973080 3P15 KiB91.9%14 KiB
https://libs.platform.latimes.com/meteringjs/latspot.js45 KiB20.4%9 KiB
https://cdn.speedcurve.com/js/lux.js?id=20201913 3P13 KiB71.1%9 KiB
https://www.latimes.com/styleguide/gvp-a52295ce.bundle.js9 KiB90.6%8 KiB
https://libs.platform.latimes.com/newsletter-campaign-manager/latest.js8 KiB94.8%7 KiB

Network

79Requests
2108 KiBTransferred
38Scripts
68.5%3rd-party
4Long tasks
Script (38)
1365 KiB
Image (20)
275 KiB
Font (8)
249 KiB
Document (1)
163 KiB
Stylesheet (2)
28 KiB
Other (3)
24 KiB
Fetch (2)
2 KiB
XHR (5)
2 KiB
Heaviest requests (30)
URLTypeStatusTransfer
https://www.latimes.com/styleguide/8250-4bd20e3e.bundle.jsScript200218 KiB
https://securepubads.g.doubleclick.net/pagead/managed/js/gpt/m202607210101/pubads_impl.jsScript200197 KiB
https://www.googletagmanager.com/gtag/js?id=G-FB5D97VJNM&l=adsDataScript200179 KiB
https://www.latimes.com/Document200163 KiB
https://cdn.confiant-integrations.net/gptprebidnative/202607132048/wrap.jsScript200153 KiB
https://68547f8f-2fd8-4ff3-9b63-51e86e2edee8.edge.permutive.app/68547f8f-2fd8-4ff3-9b63-51e86e2edee8-web.jsScript200136 KiB
https://activate.platform.californiatimes.com/caltimes/latimes/Bootstrap.jsScript20083 KiB
https://cdn.confiant-integrations.net/GfBGK_P3Adzw1hvTTkQjebew6Z4/gpt_and_prebid/config.jsScript20073 KiB
https://ca-times.brightspotcdn.com/dims4/default/5e807f1/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%3D1784898000000Image20060 KiB
https://ca-times.brightspotcdn.com/resource/0000016e-6bb5-d505-abef-fbb7e4420000/styleguide/Core.min.3fda2beacdc66fec5b275b593b863f88.gz.jsScript20057 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://libs.platform.latimes.com/reg/tribune/latspot.min.jsScript20038 KiB
https://securepubads.g.doubleclick.net/tag/js/gpt.jsScript20036 KiB
https://ca-times.brightspotcdn.com/dims4/default/ebd7668/2147483647/strip/true/crop/4284x2856+0+1428/resize/568x379!/format/webp/quality/75/?url=https%3A%2F%2Fcalifornia-times-brightspot.s3.amazonaws.com%2F90%2F55%2F38ab5ea0442189b30468ee6bf29d%2Fwk-england-house-raffle-002.jpegImage20036 KiB
https://ca-times.brightspotcdn.com/dims4/default/555c56e/2147483647/strip/true/crop/6016x4011+0+3/resize/568x379!/format/webp/quality/75/?url=https%3A%2F%2Fcalifornia-times-brightspot.s3.amazonaws.com%2Fee%2Fdb%2F8ce5dbbb4abe8b13131b2b89cf12%2F1542747-wk-witches-cottage-jrcm-002.jpgImage20032 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/07c19f5/2147483647/strip/true/crop/6945x4630+131+0/resize/840x560!/format/webp/quality/75/?url=https%3A%2F%2Fcalifornia-times-brightspot.s3.amazonaws.com%2F44%2F0f%2Fee72f443440987cfb56b55311dea%2F1556526-me-lapd-memorial-ceremony-cmh-09.jpgImage20028 KiB
https://securepubads.g.doubleclick.net/pagead/managed/dict/m202607230101/gptOther20023 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/faf0569/2147483647/strip/true/crop/6016x4011+0+1/resize/568x379!/format/webp/quality/75/?url=https%3A%2F%2Fcalifornia-times-brightspot.s3.amazonaws.com%2F7c%2F27%2Fee8add6445e597fee22b4831bf61%2F1562852-tr-airbnb-hosts-cashed-in-on-world-cup-0018.jpgImage20017 KiB
https://ca-times.brightspotcdn.com/resource/0000016e-6bb5-d505-abef-fbb7e4420000/styleguide/styles-gvp.min.3f777c6f060dce4afa8de8857d29832b.gz.cssStylesheet20016 KiB
https://ca-times.brightspotcdn.com/dims4/default/0b04900/2147483647/strip/true/crop/5000x3333+0+0/resize/320x213!/format/webp/quality/75/?url=https%3A%2F%2Fcalifornia-times-brightspot.s3.amazonaws.com%2F73%2Fe0%2Fdc3d02124df89a7b706cf5701697%2F1547387-me-ice-tsa-lax03-el.jpgImage20015 KiB
https://ca-times.brightspotcdn.com/dims4/default/27111a7/2147483647/strip/true/crop/4463x2975+1+0/resize/320x213!/format/webp/quality/75/?url=https%3A%2F%2Fcalifornia-times-brightspot.s3.amazonaws.com%2Fe6%2F0a%2F7b281e214314847b5e3a7119d667%2F1538665-me-homeless-count-metro-1-gmf.jpgImage20015 KiB
https://activate.platform.californiatimes.com/caltimes/latimes/code/cf5a63b68f5d54aeb310d9051b6bfa85.js?conditionId0=4849544&conditionId1=4973080Script20015 KiB
https://ca-times.brightspotcdn.com/resource/0000016e-6bb5-d505-abef-fbb7e4420000/styleguide/assets/BentonGothic-Medium.0af2a448f6d58f8dd85f039eba38b50f.woff2Font20015 KiB
https://ca-times.brightspotcdn.com/resource/0000016e-6bb5-d505-abef-fbb7e4420000/styleguide/assets/BentonGothic-Bold.0173e1397f3e876c231fe162dd06864a.woff2Font20014 KiB

Long tasks (>50 ms)

StartDuration
625 ms104 ms
289 ms59 ms
353 ms55 ms
561 ms54 ms
Analyzing…
running mobile + desktop · ~30s