Trawley publishes its documentation in formats built for language models, so an agent can read about Trawley without scraping HTML.
The two artifacts
Both live at the site root, following the convention used by Anthropic, Stripe, and Vercel:
| Artifact | What it contains |
|---|---|
/llms.txt | A curated index of every doc page, segmented by audience (Users, Developers, Agents), with titles, links, and short descriptions. |
/llms-full.txt | The full markdown of every page concatenated into one file. |
Use llms.txt to discover what exists and fetch only the pages you need. Use
llms-full.txt when you want the entire corpus in a single request.
bash
curl https://trawley.ai/llms.txt
curl https://trawley.ai/llms-full.txt
These files are generated from the docs at build time. Every new page added to the documentation appears in them automatically, so they never go stale.
Per-page actions
Every documentation page has a Copy page control in its header:
- Copy page copies a short markdown summary of the page, with a link back to the full version, ready to paste into any assistant.
- Open in Claude and Open in ChatGPT (in the dropdown) open that assistant with a prompt that points it at the current page so it can read and answer from it.
This makes it a one-click action to bring any Trawley doc into a chat.