pixijs-application — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited pixijs-application (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Use this for creating, configuring, resizing, starting, stopping, or destroying a PixiJS Application.
import { Application } from 'pixi.js';
const app = new Application();
await app.init({ width: 800, height: 600, background: 0x1099bb });
document.body.appendChild(app.canvas);new Application() plus async await app.init(options). Do not pass options to the constructor.app.canvas, not app.view; use app.stage, app.renderer, and app.screen for the main scene.resizeTo for browser/container resizing, then rely on the resize plugin instead of manual canvas CSS hacks.app.ticker.add((ticker) => ...); read ticker.deltaTime, ticker.deltaMS, or ticker.FPS.app.destroy(rendererDestroyOptions, stageDestroyOptions). For same-tab re-init leaks or stale textures, include releaseGlobalResources: true where appropriate.CullerPlugin only helps when containers are marked cullable; add cullArea when bounds are expensive.app.domContainerRoot belongs next to app.canvas when using DOMContainer overlays.ApplicationOptions: references/application-options.mdpixijs-tickerpixijs-scene-containerpixijs-environmentsawait app.init(...).app.canvas after init.~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.