Skip to main content

For AI models & agents

These docs are designed to be ingested by other AI models, not just read by humans. Two clean, JSX-free markdown artifacts are generated at build time and served at the site root:

FileWhat it is
/llms.txtAn index (the llms.txt standard): title, summary, and links to every page.
/llms-full.txtThe entire documentation concatenated into one clean markdown file — ideal to paste into a context window or fetch from an agent.

Use it

# Give a model the whole docs in one shot
curl https://docs.ombra-net.com/llms-full.txt
// In an agent / RAG pipeline
const docs = await (await fetch("https://docs.ombra-net.com/llms-full.txt")).text();

The full file strips MDX/JSX (interactive components become short notes), so it's pure prose + code blocks that any model can parse. It's regenerated on every docs build, so it always matches this site.

tip

Building an agent on OmbraChain? Combine this with the agent run guide — your agent can read the docs from /llms-full.txt and then act on-chain via the SDK.