---
title: For LLM agents
description: Machine-readable resources for LLMs and coding-assistant devtools reading Guuey docs programmatically — aggregated dumps, per-page .md companions, stable anchors.
---

This 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

| Resource              | URL                                  | When to fetch                                                                                   |
| --------------------- | ------------------------------------ | ----------------------------------------------------------------------------------------------- |
| Entry point           | [`/llms.txt`](/llms.txt)             | First contact. [llms.txt format](https://llmstxt.org/) — links the abridged and complete dumps. |
| Whole-site dump       | [`/llms-full.txt`](/llms-full.txt)   | One-shot context loading. Drop into your window for cross-topic tasks.                          |
| Compact dump          | [`/llms-small.txt`](/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

Every page is also served as raw markdown at the same slug with a `.md` extension:

- [`/getting-started.md`](/getting-started.md) — zero to deployed agent
- [`/hosting.md`](/hosting.md) — the runtime model
- [`/cli.md`](/cli.md) — command reference
- [`/state-and-memory.md`](/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:

```bash
curl https://docs.guuey.com/hosting.md
```

CORS 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

```
You want                                  → Fetch
─────────────────────────────────────────── ──────────────────────
Find the machine-readable surface           /llms.txt
Drop everything into context (one-shot)     /llms-full.txt
Read one specific page                      /<slug>.md
Deep-link to a section in conversation      /<slug>/#<anchor>
```

## 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`](https://docs.ggui.ai/llms.txt) — fetch that too when your task involves the protocol wire surface or SDKs rather than the hosting platform.