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
| Format | Description | URL |
|---|---|---|
| Full Documentation | All documentation as a single text file | https://media-kit.shelby.xyz/llms-full.txt |
| Individual Pages | Any 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
- This feature is powered by Fumadocs LLMs integration.