Skip to main content

What is LLMs.txt?

LLMs.txt 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

llms.txt

Concise index of all documentation pages with short descriptions. Use this as a starting point to discover what’s available.

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.

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:
curl -s https://docs.decibel.trade/llms-full.txt