> ## Documentation Index
> Fetch the complete documentation index at: https://docs.runflow.io/llms.txt
> Use this file to discover all available pages before exploring further.

# llms.txt

> Runflow's llmstxt.org-formatted index of this site, plus the full corpus.

[llmstxt.org](https://llmstxt.org) is a convention: a root `/llms.txt` file with a structured link index that LLMs and agents fetch to learn what a site contains. Runflow ships two:

| File                                                      | Use                                                                        |
| --------------------------------------------------------- | -------------------------------------------------------------------------- |
| [`/llms.txt`](https://docs.runflow.io/llms.txt)           | Categorized link list. Quick site map.                                     |
| [`/llms-full.txt`](https://docs.runflow.io/llms-full.txt) | Concatenation of every doc page, frontmatter stripped. One-shot ingestion. |

These files are generated from the docs corpus. Do not edit them by hand.

## Discovery

Mintlify also sets the `Link` response header on every page:

```http theme={"dark"}
Link: </llms.txt>; rel="llms-txt", </llms-full.txt>; rel="llms-full-txt"
```

Agents that follow RFC 8288 link relations find the index without crawling.

## Use it

```bash theme={"dark"}
# Index
curl https://docs.runflow.io/llms.txt

# Full corpus
curl https://docs.runflow.io/llms-full.txt
```

Pipe `llms-full.txt` into your model's context window. The full corpus is \~340 KB, well under any modern model's window.

## Two siblings

Runflow also publishes:

* `https://www.runflow.io/llms.txt` - marketing-side site index.
* `https://www.runflow.io/llms-full.txt` - marketing-side full corpus.
* `https://app.runflow.io/models/{provider}/{slug}/llms.txt` - per-model spec, including model specs that may not be public marketing pages.

Use docs.runflow\.io's versions if you want the developer reference. Use the others if you need marketing context or a single model's spec.

## Related

<CardGroup cols={2}>
  <Card title="OpenAPI" icon="code" href="/agents/openapi">Machine-readable API spec.</Card>
  <Card title="Skill" icon="sparkles" href="/agents/skills">Integration guide for agents.</Card>
</CardGroup>
