Phaser
Skill a5c-ai/babysitter/library/specializations/game-development/skills/phaser
Phaser.js 2D game development skill for web games, arcade physics, and web deployment.From its SKILL.md
npx -y skills add a5c-ai/babysitter --skill phaserAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
SKILL.md
0.9 KB, 139 tokens by cl100k_base, as published. Nobody here has run it
Phaser Skill
Phaser.js 2D game development for web.
Overview
This skill provides capabilities for creating 2D web games using Phaser.js.
Capabilities
- Configure game scenes
- Implement arcade physics
- Handle sprites and animations
- Set up input systems
- Deploy to web
Usage Patterns
class GameScene extends Phaser.Scene {
preload() {
this.load.image('player', 'assets/player.png');
}
create() {
this.player = this.physics.add.sprite(100, 100, 'player');
}
}
References
What ships with it: 1 file
277 B alongside SKILL.md
- README.md277 B