If you're running PixiJS v8 outside a normal browser tab (Web Workers, server-side rendering, strict CSP environments), this skill covers the DOMAdapter system that lets you swap out all the DOM dependencies. The quick start shows WebWorkerAdapter with OffscreenCanvas, the CSP section explains the confusingly named `pixi.js/unsafe-eval` import that actually removes eval usage, and the custom adapter example walks through building your own for Node or headless testing. The critical mistakes section is worth scanning: setting the adapter after app.init() silently fails, and the old settings.ADAPTER pattern doesn't work in v8. Good reference when you're trying to render outside the main thread or need to pre-render on a server.
npx skills add https://github.com/pixijs/pixijs-skills --skill pixijs-environments