🚧 The Shelby Explorer is currently in beta and is under active development

Shelby SymbolMedia Kit

LLM Documentation

Access Shelby Protocol documentation in AI-friendly formats


Overview

Shelby Protocol documentation is optimized for large language models (LLMs) using the llms.txt standard. This allows AI assistants to access and understand our documentation more effectively.

Available Formats

FormatDescriptionURL
Full DocumentationAll documentation as a single text filehttps://media-kit.shelby.xyz/llms-full.txt
Individual PagesAny page in markdown format (append .mdx to URL)https://media-kit.shelby.xyz/docs/introduction/fundamentals.mdx, https://media-kit.shelby.xyz/docs/getting-started/upload-video.mdx, ...

Claude, ChatGPT, and Others

You can instruct AI assistants to fetch and use our documentation:

Please read https://media-kit.shelby.xyz/llms-full.txt and help me
understand how to upload media to Shelby Protocol.

Custom AI Integrations

If you're building AI-powered features, you can fetch the documentation programmatically:

const response = await fetch("https://media-kit.shelby.xyz/llms-full.txt");
const docs = await response.text();

// Use with your AI model
const completion = await openai.chat.completions.create({
  model: "gpt-4",
  messages: [
    { role: "system", content: `Documentation:\n${docs}` },
    { role: "user", content: "How do I stream video?" },
  ],
});

External References


On this page