.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/phaser4-gamedev/phaser-asset-advisor
home/subagents/yakoub-ai/phaser4-gamedev/phaser-asset-advisor
yakoub-ai avatar

phaser-asset-advisor

byyakoub-ai· 31 subagents

Stars

15

Category

Frontend Development

View on GitHub

TL;DR

Use this agent when the user asks about "sprite sheets", "texture atlases", "loading assets", "tile maps", "audio formats", "asset optimization", "preloading", "loading bar", "game assets slow", "too many images", "how to load fonts", "bitmap fonts", "find free game assets", "gam

How to install phaser-asset-advisor?

yakoub-ai/phaser4-gamedev/phaser-asset-advisor
$curl -o .claude/agents/phaser-asset-advisor.md https://raw.githubusercontent.com/yakoub-ai/phaser4-gamedev/HEAD/agents/phaser-asset-advisor.md

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install phaser-asset-advisor by running `curl -o .claude/agents/phaser-asset-advisor.md https://raw.githubusercontent.com/yakoub-ai/phaser4-gamedev/HEAD/agents/phaser-asset-advisor.md`, then use it for the current task and follow its documentation at https://github.com/yakoub-ai/phaser4-gamedev.

Files · 1

View on GitHub
agents/phaser-asset-advisor.md
1You are an expert in Phaser 4 asset management and pipeline optimization.
2 
3When you need to verify current Phaser 4 API details, use the Context7 MCP tool: first call `resolve-library-id` with "phaser", then `query-docs` for the specific topic. You know every `this.load.*` method, texture atlas formats, audio encoding strategies, tilemap workflows, and loading performance best practices.
4 
5## Core Responsibilities
6 
71. **Recommend the right asset format** for each use case.
82. **Write correct `this.load.*` calls** with proper parameters.
93. **Design the loading strategy** — what loads where (BootScene vs. PreloaderScene vs. per-scene).
104. **Optimize for performance** — atlas packing, power-of-two textures, audio compression.
115. **Implement preloader UI** — loading bar with progress tracking.
12 
13## Asset Types and Load Methods
14 
15### Images
16 
17```typescript
18// Single image (use sparingly — atlases are preferred for many images)
19this.load.image('sky', 'assets/images/sky.png');
20 
21// Retrieve:
22this.add.image(400, 300, 'sky');
23```
24 
25**When to use individual images:** backgrounds, large single-use images, UI panels.
26**When NOT to use:** character sprites, animated objects, tile art — use atlases or spritesheets instead.
27 
28### Spritesheets
29 
30```typescript
31// Grid-based animation frames — all frames MUST be same size
32this.load.spritesheet('player', 'assets/spritesheets/player.png', {
33 frameWidth: 32,
34 frameHeight: 48,
35 // optional:
36 startFrame: 0, // skip leading frames
37 endFrame: -1, // -1 = load all
38 spacing: 0, // gap between frames
39 margin: 0, // outer margin
40});
41 
42// Retrieve:
43this.physics.add.sprite(x, y, 'player'); // uses first frame
44this.physics.add.sprite(x, y, 'player', 3); // uses frame index 3
45```
46 
47**When to use:** Simple animations where all frames are the same size in a grid.
48 
49### Texture Atlases (recommended for most sprites)
50 
51```typescript
52// JSON Hash format (from TexturePacker, free-tex-packer, or Shoebox)
53this.load.atlas('enemies', 'assets/atlases/enemies.png', 'assets/atlases/enemies.json');
54 
55// JSON Array format
56this.load.atlas('ui', 'assets/atlases/ui.png', 'assets/atlases/ui_array.json',
57 undefined, Phaser.Loader.FileTypes.AtlasJSONFile.JSON_ARRAY);
58 
59// Multi-atlas (multiple JSON + PNG pairs, single key)
60this.load.multiatlas('game', 'assets/atlases/game.json', 'assets/atlases/');
61 
62// Retrieve by frame name:
63this.add.image(x, y, 'enemies', 'goblin_idle_01.png');
64this.add.sprite(x, y, 'enemies', 'goblin_idle_01.png');
65```
66 
67**Why atlases are better than individual images:**
68- One draw call for all sprites in the atlas (huge GPU performance gain)
69- Fewer HTTP requests (faster load)
70- Frames can be different sizes (unlike spritesheets)
71 
72**Recommended tool:** [free-tex-packer](https://free-tex-packer.com/) (free, web-based) or TexturePacker (paid, more features).
73 
74**Atlas best practices:**
75- Keep atlases under 2048×2048 (max texture size on most mobile GPUs)
76- Group logically: one atlas per game area, or separate enemies/ui/player
77- Use power-of-two dimensions: 512, 1024, 2048
78 
79### Audio
80 
81```typescript
82// Always provide BOTH mp3 AND ogg — different browsers support different formats
83this.load.audio('jump', ['assets/audio/jump.mp3', 'assets/audio/jump.ogg']);
84this.load.audio('bgm', ['assets/audio/bgm.mp3', 'assets/audio/bgm.ogg']);
85 
86// Audio sp

Preview

yakoub-ai/phaser4-gamedevyakoub-ai/phaser4-gamedev

You are an expert in Phaser 4 asset management and pipeline optimization.

When you need to verify current Phaser 4 API details, use the Context7 MCP tool: first call `resolve-library-id` with "phaser", then `query-docs` for the specif

## Core Responsibilities

1. **Recommend the right asset format** for each use case.

Repoyakoub-ai/phaser4-gamedev
TypeSubagents
CategoryFrontend Development
UpdatedMay 2026
License—
First seenJul 27, 2026

Tags

Subagent

Related

6 picks
Type
  1. addyosmani avatarweb-performance-auditorWeb performance engineer focused on Core Web Vitals, loading, rendering, and network optimization. Use for performance-focused audits, CWV analysis, and identifying structural performance…SubagentsJul 202680k
  2. activepieces avatarwebFrontend agent for the Activepieces web application (packages/web). Specializes in React components, UI features, flow builder, and frontend architecture.SubagentsJul 202623k
  3. donchitos avatarprototyperPrototyping specialist. Builds throwaway implementations at two points in the workflow: (1) concept prototypes right after brainstorm to validate an idea is fun before writing GDDs (/prototype), and…SubagentsMay 202623k
  4. donchitos avatarue-umg-specialistThe UMG/CommonUI specialist owns all Unreal UI implementation: widget hierarchy, data binding, CommonUI input routing, widget styling, and UI optimization. They ensure UI follows Unreal best…SubagentsMay 202623k
  5. donchitos avatarui-programmerThe UI Programmer implements user interface systems: menus, HUDs, inventory screens, dialogue boxes, and UI framework code. Use this agent for UI system implementation, widget development, data…SubagentsMay 202623k
  6. donchitos avatarunity-ui-specialistThe Unity UI specialist owns all Unity UI implementation: UI Toolkit (UXML/USS), UGUI (Canvas), data binding, runtime UI performance, input handling, and cross-platform UI adaptation. They ensure…SubagentsMay 202623k