Use llms.txt when you want a lightweight table of contents an agent can
navigate, and llms-full.txt when you want to give a model the complete
reference in a single paste.
llms.txt
Feed the entire CashSDK documentation to any model with llms.txt and llms-full.txt.
Not every agent speaks MCP. For everything else, CashSDK publishes its documentation as plain text following the llms.txt convention. Mintlify generates these files automatically from the same pages you're reading now, so they stay in sync.
The two files#
| File | What it contains |
|---|---|
https://docs.cashsdk.com/llms.txt | An index — a structured list of every docs page with titles and links. Compact enough to fit in a prompt; the model follows links for detail. |
https://docs.cashsdk.com/llms-full.txt | The full corpus — the entire documentation flattened into one file, ready to drop into a model's context. |
Feed it to an agent#
bash
curl https://docs.cashsdk.com/llms.txt
bash
curl https://docs.cashsdk.com/llms-full.txt
Most tools accept a URL directly:
- Cursor — reference
https://docs.cashsdk.com/llms-full.txtfrom a.cursor/rulesfile so it's always in context. See Cursor. - Claude / ChatGPT — paste the URL or the file contents into a conversation to ground answers in the real CashSDK docs.
- Custom pipelines — fetch the file at build time and include it in your retrieval index or system prompt.
Open any page in your assistant#
Every page on docs.cashsdk.com has a contextual menu (top of the page) to
Copy the page as Markdown, View it as plain text, or open it directly in
ChatGPT, Claude, or Cursor — with the page content already loaded.
It's the quickest way to ask a question about the exact page you're on.