developer.apple.com

Report from 9/21/2026, 9:57:36 AM https://developer.apple.com
Latest run · lab, cold cache
39
9/21/2026
28-day score · p75 · the standard
39
25 runs
CRR46%latest
SSD24%latest
TC478 toklatest
TTFUT13 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.

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

Metrics

45%
CRR Content Recovery Poor
0.24
SSD Semantic Signal Density Poor
481 tok
TC Token Cost Good
27 ms
TTFUT Time to First Useful Token N/A

Token Cost breakdown

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

Content
56.2% · 2,774
Chrome (nav / header / footer)
43.7% · 2,158
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

Evidence55% 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.41 · 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 43.8% of tokens are non-content (boilerplate/chrome)

agent representation — token decomposition

EvidenceToken decomposition: content 56.2%, chrome 43.7%, boilerplate 0%, other 0.1%. Only 56.2% 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

highReduce unused JavaScripthighest leverage

across all scripts

Evidence174 KiB (57%) of JS goes unused.
ImpactLower transfer + Token Cost (TC).
Effort1–2 h
FixCode-split + lazy-load below-the-fold scripts; drop unused dependencies.
mediumCut total transfer weight

9.4 MB total

Evidence9.4 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?3521262114832 KiB75.3%24 KiB
https://developer.apple.com/assets/metrics/scripts/analytics.js28 KiB48.8%14 KiB
https://developer.apple.com/home/scripts/home-alt.js?18 KiB65.1%5 KiB
https://developer.apple.com/assets/includes/global-session-nav/session.js8 KiB46.2%4 KiB
https://sfss.cdn-apple.com/2.0.0-beta.2/sf-symbol.js?08102607260 3P4 KiB88.1%4 KiB
https://developer.apple.com/assets/scripts/ac-globalnav.built.js?352126211484 KiB78.8%3 KiB
https://developer.apple.com/assets/scripts/DeveloperBreadcrumbs.js?352126211483 KiB94.3%2 KiB
https://developer.apple.com/assets/scripts/media-card-infinite.js?26 KiB30.1%2 KiB
https://developer.apple.com/assets/scripts/getUserProfile.js2 KiB81.7%2 KiB
https://developer.apple.com/assets/scripts/getPersonalizedContent.js2 KiB60.1%1 KiB
https://developer.apple.com/assets/scripts/retinate.js?352126211482 KiB53.7%1 KiB
https://developer.apple.com/assets/scripts/sc-gallery.js?12 KiB53.1%1 KiB
https://developer.apple.com/assets/scripts/date-formatter.js3 KiB44.3%1 KiB
https://developer.apple.com/assets/metrics/scripts/analytics-module.js?352126211483 KiB41.7%1 KiB
https://developer.apple.com/assets/scripts/suggest-lang.js?502226382033 KiB23.4%1 KiB

Network

77Requests
9594 KiBTransferred
20Scripts
0%3rd-party
0Long tasks
Image (27)
7104 KiB
Fetch (4)
1122 KiB
Font (8)
1074 KiB
Stylesheet (15)
146 KiB
Script (20)
124 KiB
Document (1)
22 KiB
Other (2)
3 KiB
Heaviest requests (30)
URLTypeStatusTransfer
https://developer.apple.com/home/images/media-gallery/tile-sept26-announce/large_2x.pngImage2002066 KiB
https://developer.apple.com/api/v1/content/catalog/Fetch2001113 KiB
https://developer.apple.com/assets/elements/icons/sdk-27/sdk-27-256x256_2x.pngImage200987 KiB
https://developer.apple.com/home/images/media-gallery/tile-100sessions/large_2x.jpgImage200837 KiB
https://developer.apple.com/home/images/media-gallery/tile-sept26-event/large_2x.png?1Image200813 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-xcode27-xyz/large_2x.jpgImage200176 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/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://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://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/2EEEA04F-2370-409B-8864-1E3EE4D1DD88/10781_wide_466x262_2x.jpgImage20099 KiB
https://developer.apple.com/home/images/tile-visionos-27/visionos-27-large_2x.webpImage20098 KiB
https://developer.apple.com/assets/styles/global.dist.css?19212626191Stylesheet20083 KiB
https://developer.apple.com/home/images/tile-watchos-27/watchos-27-large_2x.webpImage20082 KiB
https://devimages-cdn.apple.com/wwdc-services/images/8/11314/11314_wide_250x141_2x.jpgImage20063 KiB
https://devimages-cdn.apple.com/wwdc-services/images/8/11312/11312_wide_250x141_2x.jpgImage20055 KiB
https://devimages-cdn.apple.com/wwdc-services/images/8/11316/11316_wide_250x141_2x.jpgImage20054 KiB
https://devimages-cdn.apple.com/wwdc-services/images/8/11309/11309_wide_250x141_2x.jpgImage20046 KiB
Analyzing…
running mobile + desktop · ~30s