AgentRef publishes machine-readable documentation endpoints that follow the llms.txt standard. These endpoints let you feed the full AgentRef documentation into any AI assistant as context — enabling more accurate answers, code generation, and integration help.Documentation Index
Fetch the complete documentation index at: https://agentref.co/docs/llms.txt
Use this file to discover all available pages before exploring further.
Endpoints
| URL | Description | Best For |
|---|---|---|
https://www.agentref.co/docs/llms.txt | Concise overview of all documentation pages with links | Quick orientation, smaller context windows |
https://www.agentref.co/docs/llms-full.txt | Complete documentation content in plain Markdown | Full context, comprehensive answers |
What is llms.txt?
Thellms.txt standard provides a way for websites to publish their content in a format optimized for large language models. Instead of making an LLM crawl HTML pages, you give it a single plain-text file containing everything it needs.
llms.txt— A structured index of all documentation pages with titles, descriptions, and URLs. Think of it as a table of contents for AI.llms-full.txt— The complete documentation rendered as plain Markdown in a single file. Every page, every code example, every table — all in one response.
Using with AI Assistants
Claude
Paste the URL directly in a conversation:- Create a new Claude Project
- Add
https://www.agentref.co/docs/llms-full.txtas a knowledge file - All conversations in the project will have full AgentRef context
ChatGPT
Use the URL in a prompt or with Browse mode:Cursor
Add the docs to your project context in.cursorrules or paste the URL:
Other LLM Tools
Any tool that accepts URL context or plain text can use these endpoints. The content is plain Markdown with no special formatting requirements.Tips for Optimal Context Usage
Choose the right endpoint
- Use
llms.txtwhen you only need the AI to know what documentation exists and where to find it. This is lighter on tokens and works well for navigation questions. - Use
llms-full.txtwhen you need the AI to have deep knowledge of AgentRef’s APIs, SDKs, and features. This gives the best answers but uses more context window.
Scope your questions
Even with full documentation context, you’ll get better results by being specific:Combine with code context
For integration tasks, give the AI both the AgentRef docs and your own code:Use llms.txt for discovery
When you are not sure which part of the docs you need, start withllms.txt:
llms-full.txt for the complete context.