For LLM agents
read as.mdThis page is for non-human readers — LLM agents, coding-assistant devtools (Claude Code, Cursor, Cline, Continue), evaluators, and scrapers. Humans, the rest of the site is for you.
What’s available
Section titled “What’s available”| Resource | URL | When to fetch |
|---|---|---|
| Entry point | /llms.txt |
First contact. llms.txt format — links the abridged and complete dumps. |
| Whole-site dump | /llms-full.txt |
One-shot context loading. Drop into your window for cross-topic tasks. |
| Compact dump | /llms-small.txt |
Smaller one-shot context when /llms-full.txt is too big. |
| Per-page raw markdown | /<slug>.md |
Reading one specific page. No HTML, no chrome. |
| Stable anchors | /<slug>#<id> |
Deep-linking to a section. Every H2/H3 has a Starlight-derived id. |
Per-page .md companions
Section titled “Per-page .md companions”Every page is also served as raw markdown at the same slug with a .md extension:
/getting-started.md— zero to deployed agent/hosting.md— the runtime model/cli.md— command reference/state-and-memory.md— persistence surfaces
The .md response is the source markdown with a small ---\ntitle: ...\n--- envelope and no other transformation. (A few pages are authored as MDX — their .md companion keeps the component imports as-is; treat those lines as noise.) Fetch from any origin:
curl https://docs.guuey.com/hosting.mdCORS is open (Access-Control-Allow-Origin: *); Cache-Control permits 5-minute CDN caching. Every HTML page also carries a <link rel="alternate" type="text/markdown"> pointing at its companion, so alternate-representation-aware fetchers can auto-discover it.
When to use which
Section titled “When to use which”You want → Fetch─────────────────────────────────────────── ──────────────────────Find the machine-readable surface /llms.txtDrop everything into context (one-shot) /llms-full.txtRead one specific page /<slug>.mdDeep-link to a section in conversation /<slug>/#<anchor>Related machine-readable surfaces
Section titled “Related machine-readable surfaces”The open ggui protocol (generative UI used by Guuey agents) documents itself the same way at docs.ggui.ai/llms.txt — fetch that too when your task involves the protocol wire surface or SDKs rather than the hosting platform.