Website Spec
← Agent Readiness
Optional

/llms-full.txt

An extended companion to /llms.txt that concatenates the full markdown content of your key pages into a single file. Useful for small sites, costly for large ones.

What it is

/llms-full.txt is the long companion to /llms.txt. Where llms.txt is an index of links, llms-full.txt concatenates the actual markdown content of those pages into a single file. The convention also originates with the llmstxt.org proposal.

The idea is that an agent fetches one file and receives your entire documentation in plain markdown, ready to use as context. No crawling, no HTML extraction.

It is optional and emerging. Treat it as a nice-to-have for documentation-heavy sites where the content is reasonably small and stable.

# Example Corp — full content

> All public documentation, concatenated.

---

# Getting started

(full markdown of the getting-started page)

---

# API reference

(full markdown of the API reference)

Why it matters

The trade-off is size. A large documentation site can easily produce a multi-megabyte file. Agents may refuse to load it, or load only the first slice. If your content does not fit comfortably in a single file, stick with llms.txt plus per-page markdown.

How to implement

Common mistakes

Verification

Sources