developer.hashicorp.com

Report from 7/24/2026, 9:58:15 AM https://developer.hashicorp.com
Latest run · lab, cold cache
49
7/24/2026
28-day score · p75 · the standard
49
12 runs
CRR96%latest
SSD23%latest
TC185 toklatest
TTFUT99 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.hashicorp.com.svg)](https://agentvitals.dev/results?url=https%3A%2F%2Fdeveloper.hashicorp.com)
<a href="https://agentvitals.dev/results?url=https%3A%2F%2Fdeveloper.hashicorp.com"><img src="https://agentvitals.dev/badge/developer.hashicorp.com.svg" alt="Core Agent Vitals" height="20"></a>
What AI tells your customers about youAgent confidence: LOW
🟡Business nameHashiCorp 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
🟡DescriptionExplore HashiCorp product documentation, tutorials, and examples. · 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.

We recovered only a shell of this page (under 200 tokens) — likely a soft bot-block or a client-rendered app that served our scanner almost no content. The metrics below reflect that shell, not your real site; the score is capped until an agent can retrieve real content.
49
Overall score
weighted CAV (0–100)
FAIL
0–4950–8990–100

Metrics

96%
CRR Content Recovery Good
0.23
SSD Semantic Signal Density Poor
185 tok
TC Token Cost Good
48 ms
TTFUT Time to First Useful Token N/A

Token Cost breakdown

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

Content
26.9% · 388
Chrome (nav / header / footer)
73.1% · 1,056
Boilerplate (cookie / ad)
0% · 0
Other
0% · 0

Final screenshot

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

Diagnostics

high SSD Low signal-to-noise for agents

content vs chrome/boilerplate

Evidencesignal 0.39 · 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.

high TC 73.1% of tokens are non-content (boilerplate/chrome)

agent representation — token decomposition

EvidenceToken decomposition: content 26.9%, chrome 73.1%, boilerplate 0%, other 0%. Only 26.900000000000006% 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 76/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 Found at /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 (5)

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/

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

✓ robots.txt allows AI bots✓ No CAPTCHA wall✓ No content-blocking cookie wall✓ No login wall on public content✓ XML sitemap present + fresh✓ 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.

63Transport posture (0–100, unscored)
3pass
1warn
2fail
Per-header findings (6)
HeaderEvidence
✅ HTTPSserved over HTTPS
✅ HSTSmax-age=63072000
❌ Content-Security-Policyno content-security-policy header
❌ X-Content-Type-Optionsmissing nosniff
⚠️ Referrer-Policyno referrer-policy header (browser default applies)
✅ CORS exposureaccess-control-allow-origin: *
Full profile — how to improve · unused JS · network · timing

How to improve

highSplit the heaviest unused bundlehighest leverage

_app-9dfa55350e8282b5.js — 200 KiB transferred, 69.7% unused

EvidenceCDP JS coverage: 140 KiB of this bundle is never executed on load.
Impact~-140 KiB transfer; lower Token Cost + faster agent parse.
Effort30–90 min
FixDynamic-import() the below-the-fold parts of _app-9dfa55350e8282b5.js, or drop unused dependencies.
mediumBreak up long main-thread tasks

longest task 172 ms (7 total)

EvidenceMain thread blocked 172 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.

Third-party impact

13 third-party requests · 226 KiB (14.7% of transfer) · 316 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
googletagmanager.com1123 KiB173 ms
datadoghq-browser-agent.com251 KiB70 ms
datagrail.io234 KiB
instana.io215 KiB73 ms
usefathom.com23 KiB
browser-intake-datadoghq.com41 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.hashicorp.com/_next/static/chunks/pages/_app-9dfa55350e8282b5.js?dpl=dpl_CVqD7WfUFDZoTT4zve93DtXDafLQ200 KiB69.7%140 KiB
https://www.googletagmanager.com/gtm.js?id=GTM-TPQLJF3 3P123 KiB59.1%73 KiB
https://developer.hashicorp.com/_next/static/chunks/467-120adb8fbcf0bca9.js?dpl=dpl_CVqD7WfUFDZoTT4zve93DtXDafLQ103 KiB66.1%68 KiB
https://developer.hashicorp.com/_next/static/chunks/framework-216aa196f8f9f81e.js?dpl=dpl_CVqD7WfUFDZoTT4zve93DtXDafLQ60 KiB62.5%37 KiB
https://developer.hashicorp.com/_next/static/chunks/main-5e6a4dcf41ee939c.js?dpl=dpl_CVqD7WfUFDZoTT4zve93DtXDafLQ40 KiB48.4%19 KiB
https://developer.hashicorp.com/_next/static/chunks/2918-9461b291f8a2d5c2.js?dpl=dpl_CVqD7WfUFDZoTT4zve93DtXDafLQ34 KiB45.9%16 KiB
https://developer.hashicorp.com/_next/static/chunks/2235.49dd8687cc7ec182.js?dpl=dpl_CVqD7WfUFDZoTT4zve93DtXDafLQ16 KiB55.6%9 KiB
https://eum.instana.io/1.8.1/eum.min.js 3P14 KiB51.8%7 KiB
https://api.consentjs.datagrail.io/consent/5f1417e8-cbe7-426a-81a3-88ba9530f2b8/006c318f-9273-4ee9-a67b-14cfde7348d1/consent.js 3P33 KiB20.9%7 KiB
https://developer.hashicorp.com/_vercel/speed-insights/script.js5 KiB94.2%5 KiB
https://developer.hashicorp.com/_next/static/chunks/1419-4d896195d38d7b25.js?dpl=dpl_CVqD7WfUFDZoTT4zve93DtXDafLQ7 KiB24.2%2 KiB
https://cdn.usefathom.com/script.js 3P3 KiB52.2%1 KiB
https://developer.hashicorp.com/_next/static/chunks/webpack-a551d6399878e599.js?dpl=dpl_CVqD7WfUFDZoTT4zve93DtXDafLQ4 KiB34.8%1 KiB
https://developer.hashicorp.com/_next/static/chunks/pages/index-a6d40d52fa3dd805.js?dpl=dpl_CVqD7WfUFDZoTT4zve93DtXDafLQ10 KiB1.5%0 KiB
https://developer.hashicorp.com/_next/static/chunks/886.f0302d119f74cb37.js?dpl=dpl_CVqD7WfUFDZoTT4zve93DtXDafLQ0 KiB2.8%0 KiB

Network

87Requests
1537 KiBTransferred
36Scripts
14.7%3rd-party
7Long tasks
Script (36)
658 KiB
Other (21)
413 KiB
Image (5)
353 KiB
Stylesheet (4)
61 KiB
Fetch (19)
32 KiB
Document (1)
20 KiB
Ping (1)
0 KiB
Heaviest requests (30)
URLTypeStatusTransfer
https://developer.hashicorp.com/_next/static/media/search-card-graphic.ea7acb93.svg?dpl=dpl_CVqD7WfUFDZoTT4zve93DtXDafLQImage200276 KiB
https://developer.hashicorp.com/_next/static/media/svg-sprite.e0bb55ed.svgOther200252 KiB
https://developer.hashicorp.com/_next/static/chunks/pages/_app-9dfa55350e8282b5.js?dpl=dpl_CVqD7WfUFDZoTT4zve93DtXDafLQScript200200 KiB
https://www.googletagmanager.com/gtm.js?id=GTM-TPQLJF3Script200123 KiB
https://developer.hashicorp.com/_next/static/chunks/467-120adb8fbcf0bca9.js?dpl=dpl_CVqD7WfUFDZoTT4zve93DtXDafLQScript200103 KiB
https://developer.hashicorp.com/_next/static/media/background.7d79c4a5.svg?dpl=dpl_CVqD7WfUFDZoTT4zve93DtXDafLQImage20061 KiB
https://developer.hashicorp.com/_next/static/chunks/framework-216aa196f8f9f81e.js?dpl=dpl_CVqD7WfUFDZoTT4zve93DtXDafLQScript20060 KiB
https://www.datadoghq-browser-agent.com/datadog-rum-v4.jsOther20051 KiB
https://developer.hashicorp.com/_next/static/css/02f1512987801b1c.css?dpl=dpl_CVqD7WfUFDZoTT4zve93DtXDafLQStylesheet20043 KiB
https://developer.hashicorp.com/_next/static/chunks/main-5e6a4dcf41ee939c.js?dpl=dpl_CVqD7WfUFDZoTT4zve93DtXDafLQScript20040 KiB
https://developer.hashicorp.com/_next/static/chunks/2918-9461b291f8a2d5c2.js?dpl=dpl_CVqD7WfUFDZoTT4zve93DtXDafLQScript20034 KiB
https://api.consentjs.datagrail.io/consent/5f1417e8-cbe7-426a-81a3-88ba9530f2b8/006c318f-9273-4ee9-a67b-14cfde7348d1/consent.jsScript20033 KiB
https://developer.hashicorp.com/Document20020 KiB
https://developer.hashicorp.com/_next/static/chunks/2235.49dd8687cc7ec182.js?dpl=dpl_CVqD7WfUFDZoTT4zve93DtXDafLQScript20016 KiB
https://eum.instana.io/1.8.1/eum.min.jsScript20014 KiB
https://developer.hashicorp.com/_next/image?url=%2F_next%2Fstatic%2Fmedia%2Fcertifications-graphic.9ec22cba.svg&w=640&q=75&dpl=dpl_CVqD7WfUFDZoTT4zve93DtXDafLQImage20014 KiB
https://developer.hashicorp.com/_next/static/chunks/9242-dca2a5b42379086b.js?dpl=dpl_CVqD7WfUFDZoTT4zve93DtXDafLQOther20014 KiB
https://developer.hashicorp.com/_next/static/css/840f88c1e71a50b2.css?dpl=dpl_CVqD7WfUFDZoTT4zve93DtXDafLQStylesheet20010 KiB
https://developer.hashicorp.com/_next/static/chunks/1134-8c7a625f2a85240f.js?dpl=dpl_CVqD7WfUFDZoTT4zve93DtXDafLQOther20010 KiB
https://developer.hashicorp.com/_next/static/chunks/pages/index-a6d40d52fa3dd805.js?dpl=dpl_CVqD7WfUFDZoTT4zve93DtXDafLQScript20010 KiB
https://developer.hashicorp.com/_next/static/chunks/3557-ce7e6c7e817a8346.js?dpl=dpl_CVqD7WfUFDZoTT4zve93DtXDafLQOther2009 KiB
https://developer.hashicorp.com/_next/static/chunks/5073-600779c0c32b6c89.js?dpl=dpl_CVqD7WfUFDZoTT4zve93DtXDafLQOther2008 KiB
https://developer.hashicorp.com/_next/static/chunks/1419-4d896195d38d7b25.js?dpl=dpl_CVqD7WfUFDZoTT4zve93DtXDafLQScript2007 KiB
https://developer.hashicorp.com/_next/static/chunks/9769-c955e14008cdd937.js?dpl=dpl_CVqD7WfUFDZoTT4zve93DtXDafLQOther2007 KiB
https://developer.hashicorp.com/_next/static/chunks/pages/certifications-0c3cef1c29ff88b3.js?dpl=dpl_CVqD7WfUFDZoTT4zve93DtXDafLQOther2007 KiB
https://developer.hashicorp.com/_next/static/chunks/8270-511e28b8983bd60d.js?dpl=dpl_CVqD7WfUFDZoTT4zve93DtXDafLQOther2006 KiB
https://developer.hashicorp.com/_next/data/build-TfctsWXpff2fKS/well-architected-framework.jsonFetch2006 KiB
https://developer.hashicorp.com/_next/static/chunks/8923-5ef5ea57c60bfecb.js?dpl=dpl_CVqD7WfUFDZoTT4zve93DtXDafLQOther2006 KiB
https://developer.hashicorp.com/_next/static/chunks/pages/well-architected-framework-76705e758886d297.js?dpl=dpl_CVqD7WfUFDZoTT4zve93DtXDafLQOther2006 KiB
https://developer.hashicorp.com/_next/static/chunks/5932-e2ec5a54954d976a.js?dpl=dpl_CVqD7WfUFDZoTT4zve93DtXDafLQOther2005 KiB

Long tasks (>50 ms)

StartDuration
1278 ms172 ms
474 ms134 ms
682 ms94 ms
1094 ms72 ms
820 ms69 ms
907 ms51 ms
622 ms50 ms
Analyzing…
running mobile + desktop · ~30s