llms.txt
Tac UI provides an llms.txt file — a machine-readable reference for LLM-powered coding assistants (Cursor, Copilot, Claude, etc.).
What is llms.txt?
llms.txt is a standardized file that helps AI coding assistants understand your library. It contains component APIs, prop tables, usage examples, and design token references in a format optimized for LLM context windows.
When an AI tool reads this file, it can generate accurate Tac UI code without hallucinating prop names or inventing non-existent APIs.
Location
The file is served as a static asset from the documentation site:
https://tac-ui.com/web/llms.txtIn the repository, it lives at:
apps/docs/public/llms.txtWhat's Included
The llms.txt file covers:
Usage with AI Tools
Most AI coding assistants automatically discover llms.txt when configured with your docs URL. You can also manually reference it:
# In Cursor rules or system prompt:
Refer to https://tac-ui.com/llms.txt for Tac UI component APIs.
# Or paste directly into context:
@llms.txtKeeping it Updated
The llms.txt file should be updated whenever component APIs change — new props, renamed variants, or default value changes. It lives in apps/docs/public/llms.txt and is deployed with the documentation site.