docs.gitlab.com

Report from 8/7/2026, 10:02:54 AM https://docs.gitlab.com
Latest run · lab, cold cache
82
8/7/2026
28-day score · p75 · the standard
82
13 runs
CRR91%latest
SSD80%latest
TC562 toklatest
TTFUT9 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/docs.gitlab.com.svg)](https://agentvitals.dev/results?url=https%3A%2F%2Fdocs.gitlab.com)
<a href="https://agentvitals.dev/results?url=https%3A%2F%2Fdocs.gitlab.com"><img src="https://agentvitals.dev/badge/docs.gitlab.com.svg" alt="Core Agent Vitals" height="20"></a>
What AI tells your customers about youAgent confidence: MEDIUM
Business nameGitLab Docs
CategoryWebSite
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
🟡DescriptionLearn how to use and administer GitLab, the most scalable Git-based fully integrated platform for software development. · guessed from page text (no structured data)

An agent gets the basics but will guess on the gaps. 2/3 applicable facts come from machine-readable structured data.

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

Metrics

91%
CRR Content Recovery Needs work
0.80
SSD Semantic Signal Density Good
562 tok
TC Token Cost Good
7 ms
TTFUT Time to First Useful Token N/A

Token Cost breakdown

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

Content
45.4% · 1,367
Chrome (nav / header / footer)
13.6% · 410
Boilerplate (cookie / ad)
29.8% · 895
Other
11.2% · 336

Final screenshot

Final screenshot of https://docs.gitlab.com

Diagnostics

medium CRR Content is hidden behind JavaScript

pre-JS raw HTML

Evidence9% 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 TC 54.6% of tokens are non-content (boilerplate/chrome)

agent representation — token decomposition

EvidenceToken decomposition: content 45.4%, chrome 13.6%, boilerplate 29.8%, other 11.2%. Only 45.4% 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 Found at /llms.txt but missing H1/blockquote 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 (6)

~ No content-blocking cookie wall medium impact Consent platform: onetrust (verify it doesn't block content)

Business impact A consent wall that hides content until a click is invisible to agents — they cannot click 'Accept'.

What we measured We fingerprint OneTrust, Cookiebot, Usercentrics and similar managers and flag content-blocking ones.

How to fix Use an overlay banner that leaves content in the DOM, not a blocking interstitial.

Spec: https://gdpr.eu/cookies/

~ llms.txt present + valid high impact Found at /llms.txt but missing H1/blockquote

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 (5)

✓ robots.txt allows AI bots✓ No CAPTCHA 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.

70Transport posture (0–100, unscored)
3pass
1warn
1fail
Per-header findings (6)
HeaderEvidence
✅ HTTPSserved over HTTPS
✅ HSTSmax-age=31536000
❌ Content-Security-Policyno content-security-policy header
✅ 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

otBannerSdk.js — 137 KiB transferred, 61.7% unused (third-party)

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

googletagmanager.com — 364 KiB, 2 requests

EvidenceThird-party is 38.1% of total transfer (30 requests); googletagmanager.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 googletagmanager.com; defer non-critical third-party scripts.

Third-party impact

30 third-party requests · 669 KiB (38.1% 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
googletagmanager.com2364 KiB
cookielaw.org11222 KiB
licdn.com241 KiB
bizible.com326 KiB
cr-relay.com27 KiB
marketo.net27 KiB
linkedin.com21 KiB
bizibly.com11 KiB
onetrust.com21 KiB
gitlab.net20 KiB
cognitivlabs.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://cdn.cookielaw.org/scripttemplates/202606.2.0/otBannerSdk.js 3P137 KiB61.7%84 KiB
https://www.googletagmanager.com/gtag/js?id=G-ENFH3X7M5Y&cx=c&gtm=4e67t1 3P171 KiB49.3%84 KiB
https://www.googletagmanager.com/gtm.js?id=GTM-NJXWQL 3P193 KiB41.7%81 KiB
https://docs.gitlab.com/vite/assets/i18n.js74 KiB63.2%47 KiB
https://docs.gitlab.com/vite/elastic_api.js27 KiB65.1%17 KiB
https://gitlab.com/assets/snowplow/sp-bc5b4b4067898d2d20c35fec045d91d032cb739c3deab5f42607edbeca08323a.js27 KiB59.4%16 KiB
https://cdn.bizible.com/scripts/bizible.js 3P25 KiB54.1%14 KiB
https://docs.gitlab.com/vite/assets/tooltip.js20 KiB65%13 KiB
https://snap.licdn.com/li.lms-analytics/insight.beta.min.js 3P21 KiB58.4%12 KiB
https://docs.gitlab.com/vite/assets/disclosure_dropdown.js15 KiB64.6%10 KiB
https://munchkin.marketo.net/165/munchkin.js 3P6 KiB85.5%5 KiB
https://docs.gitlab.com/vite/assets/purify.es.js10 KiB47.1%5 KiB
https://cdn.cookielaw.org/scripttemplates/otSDKStub.js 3P9 KiB48.6%4 KiB
https://cdn.cr-relay.com/v1/site/041efcb3-215c-4d99-baeb-ce9edf30d27a/signals.js 3P7 KiB53.4%4 KiB
https://docs.gitlab.com/vite/assets/listbox.js8 KiB48.5%4 KiB

Network

95Requests
1759 KiBTransferred
43Scripts
38.1%3rd-party
0Long tasks
Script (43)
806 KiB
Other (6)
475 KiB
Font (2)
318 KiB
Fetch (9)
60 KiB
Stylesheet (5)
59 KiB
Image (23)
27 KiB
Document (2)
9 KiB
XHR (3)
3 KiB
Manifest (1)
1 KiB
Ping (1)
0 KiB
Heaviest requests (30)
URLTypeStatusTransfer
https://docs.gitlab.com/gitlab_ui/fonts/GitLabSans-Italic.woff2Other200353 KiB
https://docs.gitlab.com/gitlab_ui/fonts/GitLabSans.woff2Font200318 KiB
https://www.googletagmanager.com/gtm.js?id=GTM-NJXWQLScript200193 KiB
https://www.googletagmanager.com/gtag/js?id=G-ENFH3X7M5Y&cx=c&gtm=4e67t1Script200171 KiB
https://cdn.cookielaw.org/scripttemplates/202606.2.0/otBannerSdk.jsScript200137 KiB
https://docs.gitlab.com/gitlab_ui/fonts/GitLabMono.woff2Other20077 KiB
https://docs.gitlab.com/vite/assets/i18n.jsScript20074 KiB
https://docs.gitlab.com/gitlab_ui/ui/index.cssStylesheet20047 KiB
https://docs.gitlab.com/icons.svgOther20042 KiB
https://cdn.cookielaw.org/consent/7f944245-c5cd-4eed-a90e-dd955adfdd08/019bbab7-2864-7e5c-9180-98102fc29995/en.jsonFetch20036 KiB
https://gitlab.com/assets/snowplow/sp-bc5b4b4067898d2d20c35fec045d91d032cb739c3deab5f42607edbeca08323a.jsScript20027 KiB
https://docs.gitlab.com/vite/elastic_api.jsScript20027 KiB
https://cdn.bizible.com/scripts/bizible.jsScript20025 KiB
https://snap.licdn.com/li.lms-analytics/insight.beta.min.jsScript20021 KiB
https://snap.licdn.com/li.lms-analytics/insight.min.jsScript20020 KiB
https://docs.gitlab.com/vite/assets/tooltip.jsScript20020 KiB
https://docs.gitlab.com/vite/assets/disclosure_dropdown.jsScript20015 KiB
https://cdn.cookielaw.org/scripttemplates/202606.2.0/assets/v2/otPcTab.jsonFetch20014 KiB
https://docs.gitlab.com/vite/assets/purify.es.jsScript20010 KiB
https://cdn.cookielaw.org/scripttemplates/otSDKStub.jsScript2009 KiB
https://cdn.cookielaw.org/logos/aa14a5c8-79e3-442a-8177-464ad850b19d/e46c1d0d-1f66-481f-bc06-5427671431da/253e6fee-c4c0-4b60-bc35-79cdae5dda32/gitlab-logo-100.pngImage2008 KiB
https://docs.gitlab.com/vite/main.cssStylesheet2008 KiB
https://docs.gitlab.com/vite/assets/listbox.jsScript2008 KiB
https://docs.gitlab.com/Document2007 KiB
https://cdn.cr-relay.com/v1/site/041efcb3-215c-4d99-baeb-ce9edf30d27a/signals.jsScript2007 KiB
https://munchkin.marketo.net/165/munchkin.jsScript2006 KiB
https://docs.gitlab.com/vite/assets/icon.jsScript2005 KiB
https://cdn.cookielaw.org/scripttemplates/202606.2.0/assets/otCommonStyles.cssFetch2005 KiB
https://docs.gitlab.com/vite/assets/search_form.jsScript2003 KiB
https://cdn.cookielaw.org/consent/7f944245-c5cd-4eed-a90e-dd955adfdd08/OtAutoBlock.jsScript2003 KiB
Analyzing…
running mobile + desktop · ~30s