agentsclimarketplace

Pixijs application

Skill Xopoko/plug-n-skills/plugins/pixijs/skills/pixijs-application

Ready-to-install skills and plugins for Codex, Claude Code, and AI coding agents: practical workflows for app delivery, architecture, research, design, and agent tooling.

Install
npx -y skills add Xopoko/plug-n-skills --skill pixijs-application

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 8 stars8 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

Use for PixiJS v8 Application setup, app.init, renderer/canvas/screen/stage, resizeTo, ticker/sharedTicker, CullerPlugin, app.start/stop/destroy, releaseGlobalResources.

The file declares its own license as MIT. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.

SKILL.md

1.9 KB, 397 tokens by cl100k_base, as published. Nobody here has run it

Use this for creating, configuring, resizing, starting, stopping, or destroying a PixiJS Application.

Fast Path

import { Application } from 'pixi.js';

const app = new Application();
await app.init({ width: 800, height: 600, background: 0x1099bb });
document.body.appendChild(app.canvas);

Rules

  • v8 requires new Application() plus async await app.init(options). Do not pass options to the constructor.
  • Use app.canvas, not app.view; use app.stage, app.renderer, and app.screen for the main scene.
  • Use resizeTo for browser/container resizing, then rely on the resize plugin instead of manual canvas CSS hacks.
  • Use app.ticker.add((ticker) => ...); read ticker.deltaTime, ticker.deltaMS, or ticker.FPS.
  • Use 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.

Related Reads

Common Fixes

  • Constructor options in v7 style: move them into await app.init(...).
  • Missing canvas: append app.canvas after init.
  • Recreated app flickers: destroy renderer/stage resources before creating the next app.

What ships with it: 2 files

33.4 KB alongside SKILL.md

references/

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.