Running on Galaxy Legacy? Visit the legacy docs.
Galaxy

AI Integration

Use Galaxy documentation with AI assistants, LLMs, and automation tools.

Galaxy documentation is optimized for AI tools. Every page is available as clean markdown by appending .md to its URL. Two dedicated endpoints serve the full documentation in plain text for LLMs and AI agents, and a Copy as Markdown button is included on every page.


llms.txt

The /llms.txt endpoint returns a lightweight index of every documentation page with links.

https://help.galaxycloud.app/llms.txt

This is the recommended starting point for AI agents. It provides a list of all available pages so the agent can decide which ones to fetch. The format follows the llms.txt standard.


Per-Page Markdown

Append .md to any documentation page URL to get its content as clean, plain-text markdown.

https://help.galaxycloud.app/docs/getting-started/quickstart.md

This is useful when an AI agent only needs a specific page rather than the full documentation. The response is text/plain with a 1-hour cache.


llms-full.txt

The /llms-full.txt endpoint returns the full content of every documentation page, cleaned and concatenated into a single plain text file.

https://help.galaxycloud.app/llms-full.txt

Best for Full-Context Prompts

Use this endpoint when you want to load the entire documentation into a single prompt. The output strips all custom components and import statements, leaving clean markdown.


Copy as Markdown

Every documentation page has a Copy as Markdown button below the page description. Click it to copy the current page's content as clean markdown, ready to paste into any AI assistant.

The copied content has all custom components and formatting removed, so it reads as plain markdown that any LLM can process.


Common Questions


What's Next?