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

# LLMs.txt

> Machine-readable documentation files for LLMs and AI agents

## What is LLMs.txt?

[LLMs.txt](https://llmstxt.org/) is a standard for providing website content in a format optimized for large language models. Instead of parsing HTML, CSS, and JavaScript, LLMs can consume a clean Markdown representation of the documentation -- making it easier for AI agents and coding assistants to understand and work with the Decibel API.

These files are automatically generated from the full documentation site.

## Available files

<CardGroup cols={2}>
  <Card title="llms.txt" icon="file-lines" href="https://docs.decibel.trade/llms.txt">
    Concise index of all documentation pages with short descriptions. Use this as a starting point to discover what's available.
  </Card>

  <Card title="llms-full.txt" icon="file-code" href="https://docs.decibel.trade/llms-full.txt">
    Complete documentation content in a single Markdown file. Use this when you need the full context of the Decibel API and platform.
  </Card>
</CardGroup>

### llms.txt

A lightweight index that lists every documentation page with its title and a brief description. Useful for:

* Discovering available API endpoints and SDK methods
* Understanding the overall structure of the documentation
* Deciding which sections to read in full

```
https://docs.decibel.trade/llms.txt
```

### llms-full.txt

The complete documentation rendered as a single Markdown file. Useful for:

* Loading full API and SDK reference into an LLM context window
* Building RAG (Retrieval-Augmented Generation) pipelines over the docs
* Providing comprehensive context to coding assistants

```
https://docs.decibel.trade/llms-full.txt
```

## Usage with AI tools

Most AI coding assistants support loading external context. Here are a few examples:

### Claude Code

Use the `/fetch` command to pull the docs into your conversation:

```
/fetch https://docs.decibel.trade/llms-full.txt
```

### Cursor / Windsurf

Add the URL as a doc source in your project settings, or paste it into the chat context.

### Custom agents

Fetch the file programmatically and include it in your system prompt or context:

```bash theme={null}
curl -s https://docs.decibel.trade/llms-full.txt
```

## Related

* [MCP Server](/agents/mcp/overview) - AI agent integration via Model Context Protocol
* [Developer Hub](/developer-hub/overview) - Full developer documentation
