Engine Reference Documentation
Engine Reference Documentation
This directory contains curated, version-pinned documentation snapshots for the game engine(s) used in this project. These files exist because LLM knowledge has a cutoff date and game engines update frequently.
Why This Exists
Claude's training data has a knowledge cutoff (currently May 2025). Game engines like Godot, Unity, and Unreal ship updates that introduce breaking API changes, new features, and deprecated patterns. Without these reference files, agents will suggest outdated code.
Structure
Each engine gets its own directory:
<engine>/
├── VERSION.md # Pinned version, verification date, knowledge gap window
├── breaking-changes.md # API changes between versions, organized by risk level
├── deprecated-apis.md # "Don't use X → Use Y" lookup tables
├── current-best-practices.md # New practices not in model training data
└── modules/ # Per-subsystem quick references (~150 lines max each)
├── rendering.md
├── physics.md
└── ...
How Agents Use These Files
Engine-specialist agents are instructed to:
- Read
VERSION.mdto confirm the current engine version - Check
deprecated-apis.mdbefore suggesting any engine API - Consult
breaking-changes.mdfor version-specific concerns - Read relevant
modules/*.mdfor subsystem-specific work
Maintenance
When to Update
- After upgrading the engine version
- When the LLM model is updated (new knowledge cutoff)
- After running
/refresh-docs(if available) - When you discover an API the model gets wrong
How to Update
- Update
VERSION.mdwith the new engine version and date - Add new entries to
breaking-changes.mdfor the version transition - Move newly deprecated APIs into
deprecated-apis.md - Update
current-best-practices.mdwith new patterns - Update relevant
modules/*.mdwith API changes - Set "Last verified" dates on all modified files
Quality Rules
- Every file must have a "Last verified: YYYY-MM-DD" date
- Keep module files under 150 lines (context budget)
- Include code examples showing correct/incorrect patterns
- Link to official documentation URLs for verification
- Only document things that differ from the model's training data