llms.txt

nounalso called llms.txt file or llms-full.txt

Definition

llms.txt is a proposed standard for a Markdown file, usually at a site’s root, that gives large language models a curated map of a site’s key pages; unlike robots.txt it grants or blocks nothing, and no major AI search engine has confirmed using it.

Updated 5 min read6 cited sources

On this page8 sections

Why it matters for founders and small teams

llms.txt is the AI-search tactic most often sold as a quick win, and for a small team with limited hours, time spent on a file no major AI search engine has confirmed reading is time not spent on crawler access and answer-first pages. It isn’t useless — it helps coding agents read developer documentation — so the real question is whether your buyers reach you through those agents or through AI search.

Do AI search engines use llms.txt?#

No major AI search engine has confirmed using llms.txt to find, rank or cite content as of September 2026: Google says Search doesn’t use it, and OpenAI, Anthropic and Perplexity publish llms.txt files for their own developer docs without saying their crawlers read anyone else’s.

97%

of llms.txt files received zero requests in May 2026, across 137,210 domains

Ahrefs, Jun 2026

10.13%

of about 300,000 domains had an llms.txt file, with no correlation to AI citations

SE Ranking, Nov 2025
  • Google Search ignores it

    Official

    Google’s AI optimization guide says “Google Search itself doesn’t use them,” and that creating one “will neither harm nor help your site’s visibility or rankings in Google Search.”

  • AI search bots barely fetch it

    Observed

    In Ahrefs’ study, the search crawlers of OpenAI, Perplexity and Anthropic combined made only a couple of hundred llms.txt fetches across the whole sample.

  • Coding agents do read it

    Observed

    The proposal’s August 2026 revision says “coding agents use them reliably.” That is its authors’ report rather than an independent measurement, but it matches where the file was designed to help.

Google’s John Mueller put the skeptical case in 2025, calling llms.txt “comparable to the keywords meta tag”: a site owner’s claim about itself, which a crawler could check by reading the site directly.

llms.txt vs robots.txt: what's the difference?#

llms.txt is a reading guide that suggests which pages a language model should read first and grants or blocks nothing, while robots.txt is a set of access rules telling crawlers which paths they may fetch, which reputable search and AI bots obey.

llms.txtrobots.txt
PurposePoint language models to a site’s most useful pagesTell crawlers which paths they may fetch
FormatMarkdown: an H1, a short summary, sections of linksPlain-text rules grouped by user agent
StatusCommunity proposal (2024, revised August 2026)Internet standard, RFC 9309 (2022)
Controls access?NoYes, for bots that honor it
Used by AI search engines?Not confirmed by any major engineYes: every major vendor documents its tokens
Location/llms.txt, or a subpath such as /docs/llms.txt/robots.txt at the root of each host

The practical consequence runs both ways. If you want to keep AI bots out, llms.txt can’t do it; if you want them in, robots.txt and your CDN decide that, whatever llms.txt says. The two files don’t interact, and neither replaces an XML sitemap, which lists every canonical URL rather than a curated few. See robots.txt and AI crawlers.

Rankbox benchmark

The llms.txt Evidence Scorecard

The published evidence on llms.txt as of September 2026, one line per claim, so you can weigh it before spending time on the file. Every value comes from the source named in its row.

None

Google Search use

Google’s AI optimization guide says Search doesn’t use llms.txt and that it “will neither harm nor help” visibility.

97%

Files never requested

Share of llms.txt files with zero requests in May 2026, across 137,210 domains (Ahrefs, June 2026).

10.13%

Adoption

Share of about 300,000 domains with an llms.txt file (SE Ranking, November 2025).

No correlation

Effect on AI citations

SE Ranking found no link between having the file and AI citations; removing it as a variable made their model more accurate.

Reported

Coding-agent use

The proposal’s August 2026 revision says coding agents use llms.txt reliably, a claim by its authors rather than an independent study.

How to read it: Read it as: no evidence of benefit for AI search, some for coding agents, no evidence of harm. Publish one if developers are your buyers; otherwise it’s a low-priority tidy-up, not a visibility lever. Recheck the scorecard when an engine publishes a statement, because that is the row that would change the answer.

Free to use and adapt. If you cite it, link to rankbox.xyz/glossary/llms-txt.

How do you create an llms.txt file?#

Create an llms.txt file by writing a Markdown document with an H1 naming the site, a one-paragraph blockquote summary, and H2 sections listing your most useful pages as links with a short note on each, then serving it at /llms.txt.

markdown
# Plannora
 
> Plannora is project management software for small teams: boards,
> automations and a free plan for up to five users.
 
## Product
- [Pricing](https://plannora.io/pricing): plans, limits and what's free
- [Integrations](https://plannora.io/integrations): Slack, Google Workspace, GitHub
 
## Docs
- [API reference](https://plannora.io/docs/api): REST endpoints and webhooks
 
## Optional
- [Changelog](https://plannora.io/changelog)
  • Only the H1 is required. The summary, detail and link sections are optional in the spec.
  • Optional is a convention for secondary links that a model short on context can skip.
  • Markdown versions of pages help agents. The proposal suggests serving a clean .md copy of each page at the same URL with .md added or swapped in, and its 2026 revision adds link relations so agents can find them.
  • llms-full.txt is a companion convention: documentation platforms such as Mintlify generate one that compiles all docs text into a single Markdown file.

The llms.txt generator builds the file from a short form. Keep it curated, not exhaustive, and update it when key pages move.

Should I add an llms.txt file?#

Add an llms.txt file if you publish developer docs, an API or anything coding agents read, since that’s where the file is reported to be used; for AI search visibility, treat it as harmless but optional, and fix crawler access and answer-first pages first.

Developer docs, APIs, SDKsHelps
Coding agents fetch llms.txt and Markdown page versions to load documentation efficiently, the use the 2026 revision reports as reliable.
Google AI Overviews & AI ModeNo effect
Google says Search doesn’t use llms.txt; it neither helps nor hurts.
ChatGPT, Claude and Perplexity searchUnconfirmed
None has said its search crawler reads other sites’ llms.txt, and log studies show almost no fetches.
Replacing robots.txt or a sitemapNo effect
It controls no access and lists only a curated subset of pages.

How do you measure whether llms.txt is used?#

Measure llms.txt use from your server logs: count requests to /llms.txt by user agent, verify any big names against their published IP ranges, and compare AI citations before and after publishing the file.

bash
# Who requests llms.txt, by user agent (combined log format)
grep '"GET /llms.txt' access.log | awk -F'"' '{print $6}' | sort | uniq -c | sort -rn | head -20

Expect mostly SEO tools and unidentified bots: in Ahrefs’ study, audit tools were the largest group of requesters and AI search crawlers barely appeared. A request isn’t proof of use either — a fetch shows a bot read the file, not that any answer drew on it. Citations are the outcome that matters, and they’re measured by running a fixed set of buyer prompts on a schedule, which is prompt tracking, not by reading logs. If you publish a file, give it a fair test: note the date, keep the prompt set fixed, and compare the months before and after. AI answers vary from run to run, so judge the trend across dozens of prompts, never a single answer.

Sources

  1. 1.The /llms.txt filellmstxt.org · llmstxt.org
  2. 2.Changes since v1llmstxt.org · llmstxt.org
  3. 3.Optimizing your website for generative AI featuresGoogle Search Central · developers.google.com
  4. 4.llms.txt studyAhrefs · ahrefs.com
  5. 5.LLMs.txt: why brands rely on it and why it doesn't workSE Ranking · seranking.com
  6. 6.Google says LLMs.txt comparable to keywords meta tagSearch Engine Journal · searchenginejournal.com

Know someone who’d find this useful? Send it their way.

Written by

Rankbox Team

The team behind Rankbox. We study how ChatGPT, Perplexity, Gemini, and Google AI Overviews choose their sources, and publish what we learn so you can put it to work.

See which AI answers cite you today

Enter your site to see how often ChatGPT, Perplexity, Gemini, and Google cite your brand, and exactly what to publish next.

No credit card required · Free 7-day trial