Agent-readable docs index: /llms.txt. Full docs in one file: /llms-full.txt. Download /docs.zip to grep all markdown files locally.

llms.txt

Holocron generates two agent-facing text files automatically:
  • /llms.txt — lightweight index with page titles and .md URLs
  • /llms-full.txt — full content of every page concatenated into one file
Both follow the llms.txt spec.

/llms.txt

The index file lists the site name, description, a link to /docs.zip for bulk download, and every page with its title and .md URL. Agents read this to discover the site structure and then fetch individual pages.
curl https://your-docs-site.com/llms.txt

Example output

# My Docs > Documentation and usage guide for My Docs. ## Best way to inspect these docs Download all docs as markdown files and grep them locally: ```bash curl -L https://example.com/docs.zip -o docs.zip unzip docs.zip -d docs grep -R "search term" docs/ ``` Use this when you need to search across the whole documentation set. The zip contains every page as a .md file. ## Page index You can also fetch individual markdown pages directly: - [Getting Started](https://example.com/getting-started.md) - [Authentication](https://example.com/guides/auth.md) - [Deployment](https://example.com/deploy.md)

/llms-full.txt

The full-content file includes every page's markdown body in a single response. Pages appear in the same order as your docs.json navigation and are separated by frontmatter blocks containing the page title, URL, and description.
curl https://your-docs-site.com/llms-full.txt
This is useful for agents that want to ingest the entire documentation set in one request without downloading a zip or making per-page requests.

Example output

# My Docs > Documentation and usage guide for My Docs. This file contains the full content of all documentation pages. For a compact index, see llms.txt. To download all pages as a zip, use docs.zip. --- title: Getting Started url: https://example.com/getting-started.md description: Learn how to set up My Docs. --- # Getting Started Follow these steps to get started... --- title: Authentication url: https://example.com/guides/auth.md --- # Authentication Configure authentication for your API...

Base path

Both routes are available at the root (/llms.txt, /llms-full.txt) and under your base path if configured (e.g. /docs/llms.txt, /docs/llms-full.txt).