www.house.gov

Report from 7/24/2026, 1:01:03 PM https://www.house.gov
Latest run · lab, cold cache
42
7/24/2026
28-day score · p75 · the standard
42
12 runs
CRR100%latest
SSD50%latest
TC12259 toklatest
TTFUT19 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/house.gov.svg)](https://agentvitals.dev/results?url=https%3A%2F%2Fwww.house.gov)
<a href="https://agentvitals.dev/results?url=https%3A%2F%2Fwww.house.gov"><img src="https://agentvitals.dev/badge/house.gov.svg" alt="Core Agent Vitals" height="20"></a>
What AI tells your customers about youAgent confidence: LOW
🟡Business nameHomepage | house.gov · 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
Descriptionnot found

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.

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

Metrics

100%
CRR Content Recovery Good
0.50
SSD Semantic Signal Density Needs work
12,625 tok
TC Token Cost Poor
24 ms
TTFUT Time to First Useful Token N/A

Token Cost breakdown

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

Content
99.4% · 22,617
Chrome (nav / header / footer)
0% · 0
Boilerplate (cookie / ad)
0% · 0
Other
0.6% · 146

Final screenshot

Final screenshot of https://www.house.gov

Diagnostics

high TC Token cost over budget — 0.5999999999999943% non-content

agent representation (Chrome/markdown output)

EvidenceToken decomposition: content 99.4%, chrome 0%, boilerplate 0%, other 0.6%. 12625 tokens total.
ImpactAn agent pays for every token; 0.5999999999999943% is chrome/boilerplate/other and crowds the context window.
Effort30–90 min

Fix: Trim boilerplate, collapse repeated structures, and drop decorative markup from agent-visible content so an agent spends fewer tokens to read the page.

medium SSD Low signal-to-noise for agents

content vs chrome/boilerplate

Evidencesignal 0.99 (full) · 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.

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=16000000; includeSubDomains; preload;
✅ 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

gtm.js — 173 KiB transferred, 47.8% unused (third-party)

EvidenceCDP JS coverage: 82 KiB of this bundle is never executed on load.
Impact~-82 KiB transfer; lower Token Cost + faster agent parse.
Effort30–90 min
FixDynamic-import() the below-the-fold parts of gtm.js, or drop unused dependencies. It is third-party — lazy-load or remove it.
mediumReduce layout shift

cumulative layout shift

EvidenceCLS is 0.192.
ImpactStable layout for render + screenshot.
Effort30–60 min
FixSet explicit width/height on images; reserve space for late-loading content.
mediumBreak up long main-thread tasks

longest task 234 ms (5 total)

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

3 third-party requests · 323 KiB (22.3% of transfer) · 145 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.com2323 KiB145 ms
google-analytics.com10 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.googletagmanager.com/gtm.js?id=GTM-TQX94K2 3P173 KiB47.8%82 KiB
https://www.googletagmanager.com/gtag/js?id=G-65K8PR1QER&cx=c&gtm=4e67f0 3P150 KiB54.8%82 KiB
https://www.house.gov/sites/default/files/js/js_bjOKI1nFViCPZSYY6JFi6KsW_GYqmdN1LOr3TXC23zk.js?scope=footer&delta=1&language=en&theme=housegov&include=eJxtjlESgzAIRC8k5kgORoyZJiED2NbbN-1o04_-LW93Ac9CznOuXKiYjhvvSoHvAB8FsYCSauQyND_aMQmtk-E8rSwZzUgces-ytEhnAz0txXJzi-wV03iOw7XezcymJlihdanzkHjGBGpHy4fON85UMRC00_qLz3c9ylumP9ZV7RY_0rfwAkQKZbc85 KiB57.6%49 KiB
https://www.house.gov/ruxitagentjs_ICA7NVfqrux_10339260603164134.js79 KiB55%43 KiB
https://www.house.gov/core/assets/vendor/jquery/jquery.min.js?v=4.0.028 KiB63.7%18 KiB

Network

33Requests
1450 KiBTransferred
5Scripts
22.3%3rd-party
5Long tasks
Image (21)
858 KiB
Script (5)
514 KiB
Document (1)
43 KiB
Stylesheet (2)
32 KiB
Other (1)
2 KiB
Fetch (2)
1 KiB
XHR (1)
1 KiB
Heaviest requests (30)
URLTypeStatusTransfer
https://www.house.gov/sites/default/files/styles/large/public/2023-10/Capitol%20Dome%20Interior.png?itok=fu27gn-UImage200404 KiB
https://www.googletagmanager.com/gtm.js?id=GTM-TQX94K2Script200173 KiB
https://www.googletagmanager.com/gtag/js?id=G-65K8PR1QER&cx=c&gtm=4e67f0Script200150 KiB
https://www.house.gov/sites/default/files/js/js_bjOKI1nFViCPZSYY6JFi6KsW_GYqmdN1LOr3TXC23zk.js?scope=footer&delta=1&language=en&theme=housegov&include=eJxtjlESgzAIRC8k5kgORoyZJiED2NbbN-1o04_-LW93Ac9CznOuXKiYjhvvSoHvAB8FsYCSauQyND_aMQmtk-E8rSwZzUgces-ytEhnAz0txXJzi-wV03iOw7XezcymJlihdanzkHjGBGpHy4fON85UMRC00_qLz3c9ylumP9ZV7RY_0rfwAkQKZbcScript20085 KiB
https://www.house.gov/ruxitagentjs_ICA7NVfqrux_10339260603164134.jsScript20079 KiB
https://www.house.gov/sites/default/files/styles/large/public/2023-01/Floor%20Proceedings.png?itok=T_iZbYy6Image20045 KiB
https://www.house.gov/Document20043 KiB
https://www.house.gov/sites/default/themes/housegov/images/bgHTML.jpgImage20041 KiB
https://www.house.gov/sites/default/themes/housegov/images/houseLogoScreen.gifImage20039 KiB
https://www.house.gov/sites/default/themes/housegov/images/bgBody_lg.jpgImage20036 KiB
https://www.house.gov/sites/default/files/styles/large/public/2024-10/constituent_pic_cap_rotundra2.jpg?itok=XMPoYLPuImage20032 KiB
https://www.house.gov/sites/default/themes/housegov/images/houseLogoScreenIn.pngImage20029 KiB
https://www.house.gov/sites/default/files/styles/homepage_carousel/public/uploads/images-slide/home-life-history.jpg?itok=nwOINQZ8Image20029 KiB
https://www.house.gov/sites/default/files/styles/homepage_carousel/public/uploads/images-slide/home-art-2014-mn07.jpg?itok=CUybC3WNImage20028 KiB
https://www.house.gov/sites/default/files/css/css_y2f8TIUNzhb55HQw3pjsdzRsOn7kyTOoOrh2QT97f04.css?delta=1&language=en&theme=housegov&include=eJxNjWsOwyAMgy9E4EyBRhQtEESgj9tvq1rRP5b9WZaDNHJBcpVCpatdZShF2QAuB6mAkmqSYujonMrHLW1UZHtH8yxcZPHIoP388Tj5KpkqRoKOXt_4fgrY_pZnJTtPqqd2ys6jktkS7eoutVmWwfQFXLpLTgStylesheet20028 KiB
https://www.house.gov/core/assets/vendor/jquery/jquery.min.js?v=4.0.0Script20028 KiB
https://www.house.gov/sites/default/files/styles/homepage_carousel/public/uploads/images-slide/home-life-cvc.jpg?itok=Yp4cM8pAImage20024 KiB
https://www.house.gov/sites/default/files/styles/homepage_carousel/public/uploads/images-slide/home-life-usbg.jpg?itok=JuAzvBBuImage20024 KiB
https://www.house.gov/sites/default/files/styles/homepage_carousel/public/uploads/images-slide/home-life-kids.jpg?itok=rYmIBKF4Image20024 KiB
https://www.house.gov/sites/default/themes/housegov/images/arrows-sprite.pngImage20018 KiB
https://www.house.gov/sites/default/files/styles/homepage_carousel/public/uploads/images-slide/home-life-wwp.jpg?itok=xy3jZ-DuImage20017 KiB
https://www.house.gov/sites/default/files/styles/large/public/uploads/images-slide/dome-night2-480-360.jpg?itok=EQ6fNKPLImage20016 KiB
https://www.house.gov/sites/default/files/styles/homepage_carousel/public/uploads/images-slide/congressional-app-challenge_slider%20800x600_0.jpg?itok=DjL4fb8pImage20016 KiB
https://www.house.gov/sites/default/themes/housegov/images/bgSprite.pngImage20015 KiB
https://www.house.gov/sites/default/themes/housegov/images/map-home-states.gifImage20011 KiB
https://www.house.gov/sites/default/themes/housegov/images/bgFind.jpgImage2007 KiB
https://www.house.gov/sites/default/files/css/css_Tsi3q3l6dMah6mldNERiwFxk1qLTY2-J-1LoA7yHslQ.css?delta=0&language=en&theme=housegov&include=eJxNjWsOwyAMgy9E4EyBRhQtEESgj9tvq1rRP5b9WZaDNHJBcpVCpatdZShF2QAuB6mAkmqSYujonMrHLW1UZHtH8yxcZPHIoP388Tj5KpkqRoKOXt_4fgrY_pZnJTtPqqd2ys6jktkS7eoutVmWwfQFXLpLTgStylesheet2004 KiB
https://www.house.gov/sites/default/themes/housegov/favicon.icoOther2002 KiB
https://www.house.gov/sites/default/themes/housegov/logo.svgImage2002 KiB
https://www.house.gov/rb_84936baa-290a-41c1-8aba-c50589e8f708?type=js3&sn=v_4_srv_-2D23065_sn_CS4P1K4UDL9GBJ7PLAJE9M8KIE2BDOUF&svrid=-23065&flavor=post&vi=AAACMMWHBAJTRMMUELPFQMSKRBRRKWMD-0&modifiedSince=1784123720164&bp=3&app=4d7477304a6fef20&crc=3616858632&en=amv429yn&end=1Fetch2001 KiB

Long tasks (>50 ms)

StartDuration
193 ms234 ms
743 ms143 ms
540 ms105 ms
950 ms91 ms
1094 ms53 ms
Analyzing…
running mobile + desktop · ~30s