What problem does it solve? PixiJS v8 has a large API surface spanning Application setup, the scene graph, text rendering, vector graphics, input events, filters, and the render loop, and finding the right guidance for a specific task is difficult. This Skill acts as an entry point that routes any PixiJS v8 task to the correct specialized sub-skill, with a fallback to the official auto-generated PixiJS documentation index. ## Core Features & Use Cases - Task Routing: A router table maps tasks to specialized skills such as pixijs-application, pixijs-scene-container, pixijs-scene-sprite, pixijs-scene-graphics, pixijs-scene-text, pixijs-assets, pixijs-events, pixijs-ticker, and pixijs-filters. - Specialized Sub-Skills: Each sub-skill provides v8-accurate quick starts, core patterns, common mistakes (v7 to v8 migration pitfalls), and API reference links for its domain. - Documentation Fallback: When no sub-skill matches, it directs the agent to fetch the always-current llms.txt index of the full PixiJS API docs. - Use Case: A developer asks how to draw a rounded rectangle with a gradient stroke in PixiJS v8; the router points to pixijs-scene-graphics, which supplies the correct shape-then-fill pattern and warns against removed v7 APIs like beginFill and lineStyle. ## Quick Start Ask how to accomplish any PixiJS v8 task, such as setting up an Application, drawing shapes, rendering text, or handling pointer input, and follow the routed sub-skill's guidance.