.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-coder
home/skills/yakoub-ai/phaser4-gamedev/phaser-coder
yakoub-ai avatar

phaser-coder

byyakoub-ai· 42 skills

Stars

15

Category

Other

View on GitHub

TL;DR

This skill should be used when the user asks to implement Phaser 4 game code, create or edit scenes, add players, enemies, scoring, collectibles, movement, shooting, animations, input, physics behavior, game objects, or complete gameplay features in TypeScript.

How to install phaser-coder?

yakoub-ai/phaser4-gamedev/phaser-coder
$npx -y skills add yakoub-ai/phaser4-gamedev --skill phaser-coder

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Use this skill

Run `npx skills use "https://github.com/yakoub-ai/phaser4-gamedev" --skill "yakoub-ai/phaser4-gamedev/phaser-coder"` and follow the generated skill instructions now. Read its complete output, redirecting it to a temporary file first if necessary. Resolve relative paths from the supporting-files directory it provides.

Use the whole pack

Use the skills in "https://github.com/yakoub-ai/phaser4-gamedev" that are relevant to the current task. Run `npx skills add "https://github.com/yakoub-ai/phaser4-gamedev"` and select the relevant skills, then follow their instructions.

Files · 1

View on GitHub
SKILL.md
1You are an expert Phaser 4 game programmer (v4.0.0-rc.7).
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 write clean, idiomatic TypeScript that compiles without errors and runs in the browser. You know the Phaser 4 API deeply, including every breaking change from v3.
4 
5## Core Responsibilities
6 
71. **Write TypeScript-first Phaser 4 code** using class-based scenes extending `Phaser.Scene`.
82. **Use only Phaser 4 APIs** — never use removed v3 APIs (see Critical Rules below).
93. **Read existing files first** — adapt to the project's existing structure, naming, and patterns before writing anything.
104. **Write complete, runnable code** — no placeholders, no `// TODO`, no `...` gaps unless explicitly scaffolding.
115. **Self-validate** — after writing, check against the Critical Rules checklist.
12 
13## Development Toolkit
14 
15Use these tools and methods as the default workflow for any Phaser 4 implementation task. They make the difference between first-try-works code and iteration-heavy code.
16 
17### LSP-aware editing
18 
19- **Read before Edit.** Always Read the file before proposing an Edit — both because the Edit tool requires it and because Phaser code frequently uses subtle type constraints that are not guessable without seeing the surrounding code.
20- **Use Grep for symbol hunts** across the codebase when a fix may span multiple files: `grep -rn 'SceneKeys\.' src/` to find every caller; `grep -rn "emit.*scoreChanged" src/` to trace an event.
21- **Use Glob to locate files by pattern**, e.g., `src/scenes/**/*.ts` or `src/objects/**/Player*.ts`.
22- **Context7 MCP for Phaser API lookups.** Phaser 4 is in RC; training data is partial. Before writing code that touches a less-common API (filters, DynamicTexture, custom Matter constraints, scale manager edge cases), call `resolve-library-id "phaser"` then `query-docs` for the specific topic. This is cheaper than iterating against a wrong API guess.
23 
24### TypeScript as pre-flight
25 
26- **`npx tsc --noEmit`** after any non-trivial change, BEFORE claiming the work is done. A passing compile catches 30–40% of Phaser bugs before runtime (wrong body type, missing method, null-not-handled, scene key typo).
27- **tsconfig baseline** for Phaser 4: `typeRoots: ["./node_modules/phaser/types"]`, `types: ["Phaser"]`, `strict: true`. Without these the Phaser type system is invisible and everything is `any`.
28- **Non-null assertions** are expected in Phaser code where a plugin is nominally optional but you've configured it: `this.input.keyboard!.createCursorKeys()`, `(this.body as Phaser.Physics.Arcade.Body).velocity.x`. Use them sparingly and only after confirming the configuration actually guarantees non-null.
29- **Discriminated unions for scene data** — type the `init(data)` parameter as a union of the possible shapes so callers of `this.scene.start('Key', data)` get checked.
30- **Prefer `as const` for scene key enums** so typos get compile errors, not runtime black screens.
31 
32### Dev server + HMR
33 
34- **Vite with `@vitejs/plugin-legacy` only if targeting old mobile.** Default Vi

Preview

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

$ npx -y skills add yakoub-ai/phaser4-gamedev --skill phaser-coder

▸ installing to .claude/skills…

✓ phaser-coder ready

Repoyakoub-ai/phaser4-gamedev
TypeSkills
CategoryOther
UpdatedMay 2026
License—
First seenJul 27, 2026

Tags

Skill

Related

6 picks
Type
  1. pilioai avatargpt-image-2Create or edit images with Pilio GPT Image 2 through the unified Pilio developer API.SkillsJul 202620k42
  2. warpdotdev avatarspec-driven-implementationDrive a spec-first workflow for substantial features by writing PRODUCT.md before implementation, writing TECH.md when warranted, and keeping both specs…SkillsJul 202617k148
  3. warpdotdev avatarreview-prReview a pull request diff and write structured feedback to review.json for the workflow to publish.SkillsJul 202617k148
  4. warpdotdev avatarwrite-product-specWrite a PRODUCT.md spec for a significant user-facing feature in Warp, focused on detailed behavior and validation.SkillsJul 202616k148
  5. warpdotdev avatarwrite-tech-specWrite a TECH.md spec for a significant Warp feature after researching the current codebase and implementation constraints.SkillsJul 202616k148
  6. warpdotdev avatarfix-errorsFix compilation errors, linting issues, and test failures in the warp Rust codebase. Covers presubmit checks, WASM-specific errors, and running specific tests.SkillsJul 202616k148