# llms.txt

import { Aside } from "@astrojs/starlight/components"

These docs are published in an LLM-friendly format so you can feed them to an agent as
context. Two site-wide files are generated on every build:

| File                               | Contents                                                     |
| ---------------------------------- | ------------------------------------------------------------ |
| [`/llms.txt`](/llms.txt)           | An index of every page with titles, descriptions, and links. |
| [`/llms-full.txt`](/llms-full.txt) | The entire documentation as a single Markdown document.      |

## Use it with your agent

Point your agent at the URL, or paste the contents in directly:

```text
https://renai.build/llms-full.txt
```

For a single page, append `.md` to any docs URL (or use the "Copy as Markdown" affordance
on the page) to get just that page's Markdown.

<Aside type="tip">
  `/llms.txt` is best when you want the agent to navigate and fetch only the pages it needs; `/llms-full.txt` is best
  when you want the whole thing in context at once.
</Aside>