with one click
llms
// Generate llms.txt metadata file to help LLMs understand your project structure and content
// Generate llms.txt metadata file to help LLMs understand your project structure and content
| name | llms |
| description | Generate llms.txt metadata file to help LLMs understand your project structure and content |
| category | Documentation & Content |
| status | active |
Create /llms.txt file (standardized markdown format) to help large language models navigate and understand your project. Complements robots.txt by telling LLMs what your site contains, key resources, and how to explore contentโsolving the context-window problem where LLMs can't read entire sites.
/llms-full.txt for complete documentation content in plain textDo NOT use when: Building internal-only tools (no public web presence), serving content behind authentication, or handling sensitive/proprietary information.
[Page Title](url) with brief description after colonpublic/llms.txt (or docs/llms.txt for static sites)Markdown-based, human-and-AI readable. Required: H1 heading. Optional but recommended: blockquote summary, H2 sections with link lists, additional prose context. Each link includes URL and short description. NO custom extensionsโstandard markdown only.
Markdown is readable by both humans and LLMs during inference. XML or JSON would be harder for LLMs to parse in constrained contexts. Simplicity beats richness.
While /llms.txt provides navigation and structure, /llms-full.txt contains complete plaintext documentation. LLMs use /llms.txt to understand scope, then fetch specific /llms-full.txt sections for detail. Reduces context waste.
# MyProject
> MyProject is an open-source framework for building real-time web apps with minimal boilerplate.
## Getting Started
- [Installation Guide](https://docs.myproject.io/install) - Step-by-step setup
- [Quick Start](https://docs.myproject.io/quickstart) - Your first app in 5 minutes
- [API Overview](https://docs.myproject.io/api) - Core concepts and architecture
## API Reference
- [REST Endpoints](https://docs.myproject.io/api/rest) - HTTP API documentation
- [WebSocket Events](https://docs.myproject.io/api/websocket) - Real-time event streaming
- [Middleware](https://docs.myproject.io/api/middleware) - Request/response pipeline
## Community
- [GitHub Repository](https://github.com/myproject/myproject) - Source code and issue tracker
- [Discord Community](https://discord.gg/myproject) - Chat with maintainers