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

# llms.txt

> Use llms.txt to give LLMs structured context about the Initia documentation.

The Initia docs provide `llms.txt` and `llms-full.txt` files following the
[llms.txt standard](https://llmstxt.org) for making documentation accessible to
language models.

## llms.txt

A lightweight index of every page in the Initia documentation, containing the
title and URL of each page.

```
https://docs.initia.xyz/llms.txt
```

Use `llms.txt` to give an LLM an overview of available documentation without
loading the full content. This is useful for:

* Letting an LLM understand the scope of Initia documentation
* Letting an LLM decide which pages to fetch based on a question
* Adding lightweight context without consuming a large context window

## llms-full.txt

The complete text of every documentation page in a single file.

```
https://docs.initia.xyz/llms-full.txt
```

Use `llms-full.txt` when you need comprehensive coverage and your LLM has a
large enough context window. This is useful for:

* Deep research across multiple documentation topics
* Answering complex questions that span several areas of Initia
* Pre-loading an AI coding agent with complete documentation

<Warning>
  `llms-full.txt` contains the full text of every documentation page. Check the
  file size before loading to ensure it fits within your LLM's context window.
</Warning>

## Using with AI Tools

### Paste into an LLM Chat

Copy the contents of `llms.txt` or `llms-full.txt` and paste it into your
conversation with an LLM to provide documentation context.

### Load in Your IDE

Many AI-powered IDEs allow you to add documentation context:

<Tabs>
  <Tab title="Cursor">
    Add `llms.txt` as a documentation source in **Cursor Settings > Features >
    Docs** using the URL:

    ```
    https://docs.initia.xyz/llms.txt
    ```
  </Tab>

  <Tab title="Claude">
    Paste the URL or content of `llms.txt` directly into your conversation as
    context.

    ```
    https://docs.initia.xyz/llms.txt
    ```
  </Tab>

  <Tab title="Other Tools">
    Point your tool to the `llms.txt` URL. Consult your tool's documentation
    for how to add external documentation sources.

    ```
    https://docs.initia.xyz/llms.txt
    ```
  </Tab>
</Tabs>
