LLM Documentation
Structured documentation designed for AI coding assistants. Provide these files to Claude, ChatGPT, Cursor, or any other AI tool to give it accurate PixiJS context.
- Links to all documentation pages
- Short descriptions for each section
- Organized by category
- Complete guides and tutorials
- Optimized for medium context windows
- No API reference (smaller size)
- Full documentation for all classes & functions
- Parameters, methods, and properties
- Working code examples
llms.txt is a standardized format (similar to robots.txt) that provides AI assistants with structured documentation about a project.
IDE Integration
Cursor
Add the documentation to your project's context for AI-assisted coding.
.cursor/rules/pixijs.mdc---
description: PixiJS API
globs: **/*.{js,ts,jsx,tsx}
alwaysApply: false
---
@https://pixijs.com/llms.txtDownload llms.txt and add it to your project, then reference it with @llms.txt in chat.
VS Code + Copilot
Add custom instructions for GitHub Copilot Chat.
.github/copilot-instructions.md# PixiJS Context When working with PixiJS, refer to the API documentation at: https://pixijs.com/llms.txt
Windsurf
Configure Cascade with PixiJS documentation context.
.windsurf/rules/pixijs.mdWhen working with PixiJS, use the API reference from: https://pixijs.com/llms.txt
Add llms.txt to Windsurf's Memories for persistent context within sessions.
Claude
Create CLAUDE.md in your project root.
# PixiJS Project ## Documentation For PixiJS API reference, fetch: https://pixijs.com/llms.txt
Create .claude/commands/pixi.md for reusable context.
Fetch the PixiJS API documentation from: https://pixijs.com/llms.txt Use this documentation to answer questions about PixiJS APIs, patterns, and best practices.
Invoke with /pixi in chat.
Fetch docs directly in your prompt.
Using the PixiJS documentation from https://pixijs.com/llms.txt, help me implement a particle system with thousands of sprites.
Use llms.txt for overview or llms-full.txt for complete API details.
ChatGPT & Web Interfaces
Create a custom GPT with PixiJS knowledge:
- Download
llms.txtfrom above - Go to ChatGPT → Explore GPTs → Create
- Upload
llms.txtas a Knowledge file - Add instructions to reference the documentation
For one-off questions, paste the URL in your prompt.
Read the PixiJS API docs from https://pixijs.com/llms.txt and help me create a sprite animation with custom easing.
Most AI assistants will fetch and parse the documentation automatically.
Learn more