Nebula is in beta — new features are shipping every week.
NebulaNebula

For AI Agents

Access Nebula docs in AI-friendly formats. Use llms.txt, llms-full.txt, and per-page markdown endpoints to feed docs into LLMs and coding assistants.

Nebula's documentation is available in machine-readable formats so AI agents, coding assistants, and LLMs can use it as context.

Endpoints

EndpointWhat it returns
/llms.txtCategorized index of all pages with descriptions and .mdx links
/llms-full.txtComplete documentation as a single markdown file
/docs/[page].mdxAny individual page as markdown (append .mdx to the URL)

llms.txt

The /llms.txt file follows the llmstxt.org specification. It provides a structured index of every documentation page, grouped by section, with links to the markdown version of each page. Use this when you need the AI to pick which pages are relevant before fetching the full content.

llms-full.txt

The /llms-full.txt file contains the entire documentation site as a single markdown file. Use this when you want to give an LLM the full context in one shot — for example, as a system prompt for a docs assistant.

Per-page markdown

Append .mdx to any docs URL to get the raw markdown. For example:

Using with coding assistants

Claude Code

Point Claude Code at the full docs:

Fetch https://docs.nebula.gg/llms-full.txt and use it as context for answering questions about Nebula.

Cursor / Windsurf

Add the docs URL as a context source in your project settings:

https://docs.nebula.gg/llms-full.txt

Custom agents

If you're building an agent that answers questions about Nebula, fetch /llms-full.txt and inject it as the system prompt. Here's the pattern:

System: You are a Nebula documentation assistant. Answer questions
using ONLY the following documentation. Be concise and helpful.
If the answer isn't in the docs, say so.

{contents of /llms-full.txt}

Ask AI

The documentation site includes a built-in AI assistant powered by the full docs context. Click the Ask AI button in the bottom-right corner of any page to ask questions about Nebula. The assistant uses /llms-full.txt as its knowledge base.

On this page