The whole public docs portal is also published as plain text for agent consumption, following the llms.txt convention.Documentation Index
Fetch the complete documentation index at: https://docs.getsly.ai/llms.txt
Use this file to discover all available pages before exploring further.
What’s available
llms.txt — index
Hierarchical link index of every doc page. Compact (~30 KB). Best when you want the agent to navigate to specific topics.
llms-full.txt — flattened
Every page concatenated as a single document (markdown). Larger (~1-3 MB depending on size). Best for stuffing the agent’s context once and answering many questions.
docs.getsly.ai.
Each individual page is also available as raw markdown by appending .md to its URL:
How agents typically use this
Pattern 1 — knowledge base for support agents
Pattern 2 — targeted lookup via index
Pattern 3 — MCP server consumption
If you’re using the Sly MCP server, it exposes documentation lookup as a built-in tool. Agents callsly_docs_search(query) and get the relevant page back as a tool result.
Caching guidance
- llms.txt changes when the doc structure changes (rare). Cache for a day.
- llms-full.txt changes on every doc deploy. Cache for an hour.
- Per-page
.mdchanges when that page is edited. Cache for an hour.
Cache-Control headers.
Related agent surfaces
Sly is agent-first across multiple surfaces:- MCP catalog — every Sly capability as an MCP tool, drop-in for Claude Desktop / Cursor / Windsurf
- A2A agent card — public, machine-readable identity + skill catalog
- OpenAPI spec —
docs.getsly.ai/api-reference/openapi.jsonfor codegen - Function-calling tool definitions —
GET /v1/capabilities/function-callingreturns OpenAI/Anthropic-compatible tool defs
