Sufficient content depth
What it checks
AI RAG systems need sufficient content depth to generate accurate, detailed answers. Pages with fewer than 300 words provide too little context for meaningful vector embeddings, causing your content to rank poorly in retrieval and be excluded from AI-generated responses.
Why it matters
Chrome is everything that is not main content: nav, repeated headers and footers, wrapper divs, inline scripts. The larger its share of a page’s serialized bytes and tokens, the smaller the fraction of the page that survives extraction into the model’s context — and the more likely a fixed truncation cap severs real content. Conversely a page with too little actual content relative to its scaffolding gives an extractor nothing substantive to return.
Evidence
Content depth and text-to-boilerplate token ratio
Quantified from three independent directions. Cloudflare measured a real blog post at 16,180 HTML tokens against 3,150 in markdown — an 80% reduction. It attributed the delta explicitly to ‘the <div> wrappers, nav bars, and script tags that pad every real web page and have zero semantic value’. The response even ships x-original-tokens and x-markdown-tokens headers, so agents can compute the ratio [cloudflare-markdown-for-agents]. The 2026 observation study measured HTML at about 56,653 input tokens per agent step, against about 6,720 for the accessibility tree.
That is a gap of roughly 8.4x [observation-reduction-paper]. trafilatura’s stated purpose is to ‘remove the noise consisting of recurring elements (headers and footers, ads, links/blogroll)’ [trafilatura-corefunctions]. Readability does the same job, via link-density and text-density scoring [mozilla-readability-source]. Truncation is real and first-party: Anthropic’s read_page caps output at 50,000 characters and truncates at a line boundary [anthropic-browser-use-tool].
Limits
Do not treat ‘less boilerplate is always better’ as proven. The same study that quantifies the token gap found high-capability models perform better on the fuller HTML observation: Claude Sonnet 4.6 by 14.6pp, GPT-5.1 by 17.5pp. They exploit layout information for action grounding. Only weaker models degrade under long inputs [observation-reduction-paper]. No published source defines an acceptable text-to-boilerplate threshold; any specific number an audit uses (e.g. ‘main content must be >40% of tokens’) is invented and must be presented as a heuristic, not as a standard.
Google states no special optimizations are needed for AI features [google-ai-features-docs]. Word-count style ‘content depth’ minimums in particular have no support in any source found for this domain — score the RATIO with a documented mechanism, not an arbitrary length floor.
How it scores
Quantified from three independent directions rather than asserted. Cloudflare measured one real blog post at 16,180 HTML tokens against 3,150 in markdown, an 80% reduction. It attributed the delta to “the <div> wrappers, nav bars, and script tags that pad every real web page and have zero semantic value”. Strong empirical evidence of an effect, with no vendor stating a requirement, is grade B. The grade deliberately does not carry the stronger claim that less boilerplate is always better. The same study found high-capability models performed better on the fuller HTML: Claude Sonnet 4.6 by 14.6pp, GPT-5.1 by 17.5pp. They exploit layout for action grounding.
Sources
- Introducing Markdown for Agents — Cloudflare, vendor-doc (verified 2026-08-20)
- Read More, Think More: Revisiting Observation Reduction for Web Agents — arXiv (Enomoto, Obara, Zhang, Oyamada, 2026), study (verified 2026-08-20)
- trafilatura core functions documentation — Adrien Barbaresi / trafilatura, vendor-doc (verified 2026-08-21)
- Readability.js source — _isProbablyVisible — Mozilla, repo (verified 2026-08-20)
- Browser use tool (browser_toolset_20260801) — Anthropic, vendor-doc (verified 2026-08-21)
- Beyond Pixels: Exploring DOM Downsampling for LLM-Based Web Agents — arXiv (Thassilo M. Schiepanski, 2025), study (verified 2026-08-20)
- AI features and your website — Google Search Central, vendor-doc (verified 2026-08-21)
- mozilla/readability Readability.js source — Mozilla, vendor-doc (verified 2026-08-20)
- AI features and your website — Google Search Central — Google, vendor-doc (verified 2026-08-21)