Skip to main content

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.

llms.txt
Lightweight navigation index optimized for quick context loading.
  • Links to all documentation pages
  • Short descriptions for each section
  • Organized by category
llms-medium.txt
Complete guides and tutorials without the full API reference.
  • Complete guides and tutorials
  • Optimized for medium context windows
  • No API reference (smaller size)
llms-full.txt
Complete API reference with all details in a single file.
  • 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.txt

Download llms.txt and add it to your project, then reference it with @llms.txt in chat.

Learn more

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
Learn more

Windsurf

Configure Cascade with PixiJS documentation context.

.windsurf/rules/pixijs.md
When 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.

Learn more

Claude

Create CLAUDE.md in your project root.

# PixiJS Project

## Documentation
For PixiJS API reference, fetch:
https://pixijs.com/llms.txt
Learn more

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.

Learn more

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.

Learn more

ChatGPT & Web Interfaces

Create a custom GPT with PixiJS knowledge:

  1. Download llms.txt from above
  2. Go to ChatGPT → Explore GPTs → Create
  3. Upload llms.txt as a Knowledge file
  4. Add instructions to reference the documentation
Learn more

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