Skip to content
Public beta preview — you're seeing the sneak peek · official launch soon

For LLM agents

read as .md

This page indexes Guuey’s machine-readable doc surfaces — llms.txt dumps, per-page .md companions, stable section anchors — 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.

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.

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

The .md response is the source markdown with a small ---\ntitle: ...\n--- envelope and no other transformation. (One page — the homepage — is authored as MDX; its .md companion keeps the component import as-is. Treat that line as noise.) Fetch from any origin:

Terminal window
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.

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>/#<id>

If your task is to deploy or converge an agent — not to answer questions about the docs — go to Agents as code: guuey agent apply is an idempotent reconcile of a checked-in agent definition, built for non-interactive runs. Non-interactive auth uses app-scoped service tokens (guuey_svc_…) or workspace API keys (guuey_wkz_…) passed via GUUEY_API_KEY; that page carries the detail, including the raw POST /v1/apps/:appId/reconcile route if you’d rather skip the CLI.

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.