llms.txt
Caesar’s documentation supports llms.txt, a standard for exposing documentation to AI developer tools like Cursor, GitHub Copilot, ChatGPT, and Claude.
What is llms.txt?
When AI coding assistants access documentation, they typically receive HTML pages full of navigation, styling, and other markup. This wastes tokens and reduces context quality.
llms.txt solves this by providing:
- Markdown instead of HTML: 90%+ reduction in token usage
- Structured summaries: Each page distilled to a one-sentence description
- Hierarchical organization: AI tools can understand your documentation structure
Available endpoints
Use /llms.txt for discovery and navigation. Use /llms-full.txt when you need the AI to understand specific implementation details.
Using with AI tools
Cursor
Add Caesar’s documentation to your Cursor context:
- Open Cursor settings
- Navigate to Features → Docs
- Add
https://docs.caesar.org/llms.txt
Now you can reference Caesar documentation in your prompts with @Caesar.
Claude / ChatGPT
Paste the llms.txt URL directly in your conversation:
GitHub Copilot
Reference the documentation in your comments:
Query parameters
Filter the output to reduce tokens further:
Hierarchical access
Access llms.txt at different documentation levels:
The comprehensive /llms-full.txt is only available at the root level.
Example output
Best practices
Use /llms.txt first to help the AI understand what’s available, then drill into specific pages.
If you’re working in Python, use ?lang=python to exclude irrelevant code examples.