What problem does it solve? Working on an RPGJS v5 game project requires up-to-date knowledge of its APIs, project structure, and companion libraries, and guessing from memory leads to incorrect code. This Skill verifies whether a codebase is an RPGJS project, bootstraps one from the official quick start when missing, and fetches live documentation before making changes. ## Core Features & Use Cases - Project Verification and Bootstrap: Detects @rpgjs/* packages in package.json and, when absent, installs the official scaffold with Tiled map integration and example maps. - Live Documentation Workflow: Fetches the RPGJS v5 llms.txt index, CanvasEngine docs for .ce files, the UI CSS README for GUI styling, the physic README for collisions, and the synchronization guide for networked state. - Architecture Guidance: Provides reference notes on entrypoints, map providers, server hooks, player props, variables, and event collision models. - Use Case: A developer asks to add a synchronized player inventory to an MMORPG map; the Skill confirms the project, fetches the synchronization guide, and implements state via player props instead of ad hoc storage. ## Quick Start Use the rpgjs skill to verify this workspace is an RPGJS v5 project and then implement a new map event following the official documentation.