llms.txt - LLM-Friendly Documentation¶
Unity Helpers includes an llms.txt file following the llmstxt.org specification. This file provides structured, LLM-optimized documentation that enables AI assistants to quickly understand and work with the package.
What is llms.txt?¶
The llms.txt specification defines a standard format for providing LLM-friendly content. Unlike full HTML documentation that may be too large for context windows, llms.txt offers:
- A concise overview of the project and its key features
- Structured sections with links to detailed documentation
- Machine-readable format (Markdown) that LLMs can parse efficiently
- Curated content focused on what's most useful for development tasks
Location¶
The file is located at the repository root: /llms.txt
Contents¶
The Unity Helpers llms.txt includes:
- Package Overview - Name, version, license, repository links
- Implementation Notes - Coding style requirements and conventions
- Assembly Structure - Runtime and Editor assembly organization
- Core Features - Inspector tooling, relational components, serialization, spatial trees, PRNGs, effects system, pooling, editor tools
- Documentation Links - Organized by category (Docs, Feature Guides, Performance, Project)
- Optional Resources - LLM instructions, third-party notices
Usage¶
AI assistants and LLM-powered tools can:
- Fetch the file directly from
https://raw.githubusercontent.com/wallstop/unity-helpers/main/llms.txt - Use it as context when answering questions about Unity Helpers
- Follow links to detailed documentation for specific features
- Understand coding conventions before generating code for this project
For AI Agents¶
If you're an AI assistant working with this repository, you can also reference:
- AI Agent Guidelines - Comprehensive guidelines for AI agents
This file provides additional context about coding style, testing patterns, and repository-specific conventions.
Related¶
- llmstxt.org Specification - The official llms.txt specification
- Feature Index - Complete A-Z index of Unity Helpers features
- Getting Started Guide - Quick start for new users