1. Why AI Search Needs /llms.txt
HTML pages are filled with navigation menus, footer links, tracking scripts, and cookie banners. When an AI crawler or coding assistant (such as Cursor, Perplexity, or Claude) visits your site, stripping away DOM noise consumes unnecessary tokens and risks missing key documentation.
Hosting an /llms.txt file provides a direct, unencumbered markdown roadmap that tells AI models exactly what your product does, where the official docs live, and how to cite your tools.
2. Standard llms.txt Syntax Example
Below is a production-ready example of how an /llms.txt file should be structured:
# Your Brand Name
> A concise 1-2 sentence executive summary of your platform and value proposition.
## Core Documentation
- [Quickstart Guide](https://example.com/docs/quickstart): 5-minute setup tutorial.
- [API Reference](https://example.com/docs/api): REST and GraphQL endpoint schemas.
- [Authentication](https://example.com/docs/auth): Bearer token and OAuth 2.0 instructions.
## Key Products & Features
- [Real-time Analytics](https://example.com/features/analytics): Edge data processing engine.
- [Database Connector](https://example.com/features/db): Zero-latency SQL pooling.
## Optional / Extended Context
- [Complete Documentation](https://example.com/llms-full.txt): Full uncompressed markdown corpus.
3. How to Deploy on Your Website
Deploy your file at the root path: https://yourdomain.com/llms.txt. Ensure your web server serves this file with Content-Type: text/markdown; charset=utf-8 or text/plain.
You can inspect our live implementation anytime at aeoauditing.com/llms.txt.