developer.apple.com

Report from 8/10/2026, 10:00:22 AM https://developer.apple.com
Latest run · lab, cold cache
40
8/10/2026
28-day score · p75 · the standard
45
22 runs
CRR53%latest
SSD22%latest
TC429 toklatest
TTFUT22 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/developer.apple.com.svg)](https://agentvitals.dev/results?url=https%3A%2F%2Fdeveloper.apple.com)
<a href="https://agentvitals.dev/results?url=https%3A%2F%2Fdeveloper.apple.com"><img src="https://agentvitals.dev/badge/developer.apple.com.svg" alt="Core Agent Vitals" height="20"></a>
What AI tells your customers about youAgent confidence: LOW
🟡Business nameApple Developer · 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
🟡DescriptionThere’s never been a better time to develop for Apple platforms. · 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.

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

Metrics

53%
CRR Content Recovery Poor
0.22
SSD Semantic Signal Density Poor
429 tok
TC Token Cost Good
6 ms
TTFUT Time to First Useful Token N/A

Token Cost breakdown

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

Content
58.3% · 2,919
Chrome (nav / header / footer)
41.6% · 2,085
Boilerplate (cookie / ad)
0% · 0
Other
0.1% · 7

Final screenshot

Final screenshot of https://developer.apple.com

Diagnostics

high CRR Content is hidden behind JavaScript

pre-JS raw HTML

Evidence47% 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 SSD Low signal-to-noise for agents

content vs chrome/boilerplate

Evidencesignal 0.38 · JSON-LD 0/1 · missing: structured-data
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 41.7% of tokens are non-content (boilerplate/chrome)

agent representation — token decomposition

EvidenceToken decomposition: content 58.3%, chrome 41.6%, boilerplate 0%, other 0.1%. Only 58.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 Absent at /llms.txt and /.well-known/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)

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/

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✓ No login wall on public content✓ 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.

92Transport posture (0–100, unscored)
4pass
1warn
0fail
Per-header findings (6)
HeaderEvidence
✅ HTTPSserved over HTTPS
✅ HSTSmax-age=31536000; includeSubDomains, max-age=31536000
✅ Content-Security-Policypolicy present, script-src does not allow inline
✅ X-Content-Type-Optionsnosniff
⚠️ 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

mediumSplit the heaviest unused bundle

jquery-3.6.0.min.js — 89 KiB transferred, 75.3% unused

EvidenceCDP JS coverage: 67 KiB of this bundle is never executed on load.
Impact~-67 KiB transfer; lower Token Cost + faster agent parse.
Effort30–90 min
FixDynamic-import() the below-the-fold parts of jquery-3.6.0.min.js, or drop unused dependencies.
mediumCut total transfer weight

13.3 MB total

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

1 third-party requests · 4 KiB (0% of transfer) — code an agent must also fetch/run before your content settles. Fewer, lazier third-parties = faster, cheaper agent reads.

Third-party domainReqsTransferMain-thread
cdn-apple.com14 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://developer.apple.com/assets/scripts/lib/jquery/jquery-3.6.0.min.js?3521262114889 KiB75.3%67 KiB
https://developer.apple.com/assets/metrics/scripts/analytics.js84 KiB48.8%41 KiB
https://developer.apple.com/home/scripts/home-alt.js?127 KiB65.1%17 KiB
https://developer.apple.com/assets/scripts/ac-globalnav.built.js?3521262114816 KiB78.8%12 KiB
https://developer.apple.com/assets/includes/global-session-nav/session.js22 KiB46.2%10 KiB
https://developer.apple.com/assets/scripts/DeveloperBreadcrumbs.js?352126211486 KiB94.3%5 KiB
https://developer.apple.com/assets/scripts/media-card-infinite.js?217 KiB30.1%5 KiB
https://sfss.cdn-apple.com/2.0.0-beta.2/sf-symbol.js?47092644221 3P4 KiB88.1%4 KiB
https://developer.apple.com/assets/metrics/scripts/analytics-module.js?352126211486 KiB41.7%3 KiB
https://developer.apple.com/assets/scripts/sc-gallery.js?15 KiB53.1%3 KiB
https://developer.apple.com/assets/scripts/date-formatter.js6 KiB44.3%3 KiB
https://developer.apple.com/assets/scripts/getPersonalizedContent.js4 KiB60.1%3 KiB
https://developer.apple.com/assets/scripts/retinate.js?352126211485 KiB53.7%2 KiB
https://developer.apple.com/assets/scripts/getUserProfile.js3 KiB81.7%2 KiB
https://developer.apple.com/assets/scripts/color-scheme-toggle.js11 KiB15.4%2 KiB

Network

77Requests
13582 KiBTransferred
20Scripts
0%3rd-party
0Long tasks
Fetch (4)
5542 KiB
Image (27)
5257 KiB
Stylesheet (15)
1236 KiB
Font (8)
1074 KiB
Script (20)
321 KiB
Document (1)
134 KiB
Other (2)
18 KiB
Heaviest requests (30)
URLTypeStatusTransfer
https://developer.apple.com/api/v1/content/catalog/Fetch2005482 KiB
https://developer.apple.com/assets/elements/icons/sdk-27/sdk-27-256x256_2x.pngImage200987 KiB
https://developer.apple.com/assets/styles/global.dist.css?19212626191Stylesheet200928 KiB
https://developer.apple.com/home/images/media-gallery/tile-100sessions/large_2x.jpgImage200837 KiB
https://developer.apple.com/home/images/media-gallery/tile-wwrecaps26/large_2x.jpgImage200475 KiB
https://developer.apple.com/home/images/tile-tvos-27/tvos-27-large_2x.webpImage200271 KiB
https://developer.apple.com/home/images/tile-ipados-27/ipados-27-large_2x.webpImage200242 KiB
https://www.apple.com/wss/fonts/SF-Pro-Text/v3/sf-pro-text_medium.woff2Font200230 KiB
https://www.apple.com/wss/fonts/SF-Pro-Text/v3/sf-pro-text_semibold.woff2Font200230 KiB
https://www.apple.com/wss/fonts/SF-Pro-Text/v3/sf-pro-text_regular.woff2Font200216 KiB
https://developer.apple.com/home/images/tile-macos-27/macos-27-large_2x.webpImage200214 KiB
https://developer.apple.com/home/images/media-gallery/tile-xcode27beta/large_2x.jpgImage200198 KiB
https://devimages-cdn.apple.com/wwdc-services/images/9B2E82C5-4DDF-4B9A-9459-328D8E297696/6DFBC2B4-92D8-4241-A3A0-34EC1DA37EE6/10824_wide_466x262_2x.jpgImage200171 KiB
https://developer.apple.com/assets/elements/icons/xcode-s-dark/xcode-s-dark-256x256_2x.pngImage200155 KiB
https://developer.apple.com/home/images/media-gallery/tile-whatsnew/large_2x.jpgImage200149 KiB
https://devimages-cdn.apple.com/wwdc-services/images/9B2E82C5-4DDF-4B9A-9459-328D8E297696/ADB00267-2D63-4EBA-B0E7-E2CEBD981FB7/10794_wide_466x262_2x.jpgImage200143 KiB
https://devimages-cdn.apple.com/wwdc-services/images/9B2E82C5-4DDF-4B9A-9459-328D8E297696/47BE2F6C-78E8-4AF4-9318-9FF3EDB1A049/10906_wide_466x262_2x.jpgImage200135 KiB
https://developer.apple.com/Document200134 KiB
https://developer.apple.com/home/images/tile-ios-27/ios-27-large_2x.webpImage200130 KiB
https://www.apple.com/wss/fonts/SF-Pro-Display/v3/sf-pro-display_semibold.woff2Font200127 KiB
https://developer.apple.com/home/images/media-gallery/tile-search/large_2x.jpgImage200127 KiB
https://www.apple.com/wss/fonts/SF-Pro-Display/v3/sf-pro-display_bold.woff2Font200126 KiB
https://developer.apple.com/assets/styles/globalnav.css?34212621148Stylesheet200122 KiB
https://devimages-cdn.apple.com/wwdc-services/images/9B2E82C5-4DDF-4B9A-9459-328D8E297696/CA6CB08E-B5AA-4189-8721-BA9AFFAB2AD9/10773_wide_466x262_2x.jpgImage200120 KiB
https://www.apple.com/wss/fonts/SF-Pro-Display/v3/sf-pro-display_regular.woff2Font200115 KiB
https://devimages-cdn.apple.com/wwdc-services/images/9B2E82C5-4DDF-4B9A-9459-328D8E297696/E55F4892-E3CC-490A-89C8-54F57F06999E/10782_wide_466x262_2x.jpgImage200107 KiB
https://devimages-cdn.apple.com/wwdc-services/images/9B2E82C5-4DDF-4B9A-9459-328D8E297696/C263A47D-C4FE-4EF1-9EA5-CA4B9ADF6022/10870_wide_466x262_2x.jpgImage200104 KiB
https://devimages-cdn.apple.com/wwdc-services/images/9B2E82C5-4DDF-4B9A-9459-328D8E297696/8115DC34-09C7-4B51-B54A-90EEC9A75CC4/10872_wide_466x262_2x.jpgImage200102 KiB
https://devimages-cdn.apple.com/wwdc-services/images/9B2E82C5-4DDF-4B9A-9459-328D8E297696/91E7ABC9-3DE5-4760-B47F-3D7F22CBB2BD/10755_wide_466x262_2x.jpgImage200102 KiB
https://devimages-cdn.apple.com/wwdc-services/images/9B2E82C5-4DDF-4B9A-9459-328D8E297696/41F1B2C2-AA24-42B1-87CA-03BC7E635CC4/10722_wide_466x262_2x.jpgImage200101 KiB
Analyzing…
running mobile + desktop · ~30s