Skip to main content
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.

Endpoints

What is llms.txt?

The llms.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:
Or use Claude Projects to add it as a knowledge source:
  1. Create a new Claude Project
  2. Add https://www.agentref.co/docs/llms-full.txt as a knowledge file
  3. 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.txt when 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.txt when 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 with llms.txt:
Then follow up with the specific pages or switch to llms-full.txt for the complete context.

Programmatic Access

You can fetch these endpoints from your code for automated workflows:

Content Updates

The llms.txt endpoints reflect the latest published documentation. When docs are updated, the endpoints serve the new content immediately — no caching delay.
Bookmark https://www.agentref.co/docs/llms-full.txt in your AI tools. Whenever you’re building an AgentRef integration, load it as context for the most accurate, up-to-date assistance.