What llms.txt is
llms.txt is a proposed standard — a single Markdown file at your site root (/llms.txt) that gives AI assistants and coding agents a clean, curated map of your most important content. The idea: an HTML page is full of nav, ads, and scripts that an LLM has to wade through, whereas llms.txt offers "just the information," in Markdown, with links to the pages that matter.
It looks like this:
# JSONKit
> Free online JSON tools: format, validate, convert, and generate JSON.
## Tools
- [JSON Formatter](https://jsonkit.in/json-formatter): Format and beautify JSON
- [JSON Validator](https://jsonkit.in/json-validator): Validate JSON and JSON Schema
## Guides
- [What is JSON](https://jsonkit.in/blog/what-is-json): Beginner introductionHow it differs from robots.txt and sitemaps
They solve different problems, and conflating them is common:
- robots.txt — tells crawlers what they *may not* access (permissions).
- sitemap.xml — lists *every* URL for discovery (completeness, for search engines).
- llms.txt — offers a *curated, human-selected* set of the most useful pages, in Markdown, for AI consumption (quality over completeness).
A sitemap says "here is everything." llms.txt says "here is what matters, explained cleanly."
The honest part: what Google said
Be clear-eyed about adoption, because there's a lot of hype. As of 2026, Google has stated `llms.txt` does nothing for its Search rankings — Google Search ignores the file. No major LLM vendor formally created or committed to honoring it. However, it isn't useless: Perplexity and some Claude/coding-agent workflows do read it, and it costs almost nothing to publish. Treat it as a low-effort bet on AI-assistant visibility, not as an SEO ranking factor.
Where the real AI-visibility win is: structured data
If your goal is being understood and cited by AI systems (Generative Engine Optimization), the higher-leverage move is structured data with [JSON-LD](/blog/json-ld-schema-org-seo). ChatGPT, Perplexity, Google AI Overviews, Claude, and Bing Copilot parse JSON-LD to *verify* entities, dates, authorship, and relationships rather than infer them from prose. Structured data is the difference between content an LLM has to guess at and content it can confirm and attribute. llms.txt is complementary — a clean map — but JSON-LD is what makes individual facts machine-verifiable.
A practical GEO checklist
- Make sure AI crawlers aren't blocked in
robots.txtand your server isn't rejecting their user-agents. - Ensure important content is server-side rendered (many AI crawlers don't execute JavaScript) and not behind a login.
- Add JSON-LD for your key entities (articles, products, org) — validate the JSON-LD so a syntax slip doesn't void it.
- Optionally publish an
llms.txtwith your best pages. Keep it small and current. - Use clear heading hierarchies and scannable formatting so extraction is clean.
When authoring the JSON-LD blocks, format them for readability and validate against schema.org's expected shapes.