game-development

Routes game development tasks to platform-specific guidance covering engines, patterns, and optimization.

Updated Mar 23, 2026
One-click install
npx skills add https://github.com/Helcio-Nogueira/Painel_Inteligente_Hackaton_2026 --skill game-development-helcio-nogueira
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: game-development
Source: https://github.com/Helcio-Nogueira/Painel_Inteligente_Hackaton_2026/tree/main/.agents/skills/game-development
Command: npx skills add https://github.com/Helcio-Nogueira/Painel_Inteligente_Hackaton_2026 --skill game-development-helcio-nogueira

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Game projects span many platforms, engines, and disciplines, making it hard to know which patterns, frameworks, and constraints apply. This Skill organizes game development knowledge into an orchestrator that routes your task to the right platform or specialty guidance. ## Core Features & Use Cases - Sub-Skill Routing: Directs work to platform skills (web, mobile, PC, VR/AR), dimension skills (2D, 3D), and specialty skills (design, multiplayer, art, audio). - Core Principles Reference: Covers the game loop, fixed timestep, input abstraction, performance budgets, AI selection, and collision strategies applicable to any engine. - Use Case: When starting a browser-based 2D platformer, the orchestrator routes you to web-games for framework selection (Phaser vs PixiJS), then to 2d-games for sprite and tilemap patterns, and game-design for level balancing. ## Quick Start Ask the assistant to help you plan and build a game for your target platform, and it will apply the relevant routing and principles.

Frequently Asked Questions about game-development

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I choose a game engine for my project?▼

Choose based on project needs: Godot for 2D or open-source indie work, Unity for cross-platform and DOTS performance, Unreal for AAA 3D visuals with Nanite and Lumen. For web games, use Phaser for full 2D features or Three.js and Babylon.js for 3D.

What game architecture pattern should I use?▼

Start with a State Machine for 3-5 discrete states like player movement. Add Object Pooling for frequently spawned entities, Observer patterns for cross-system events, and ECS only when handling thousands of similar entities where performance demands it.

What frame rate should my game target?▼

Target 60 FPS (16.67ms budget) for most PC and web games, allocating roughly 5ms to rendering and 4ms to logic. VR requires a consistent 90 FPS minimum since a single dropped frame causes visible judder and motion sickness.

How do I handle multiplayer networking in games?▼

Use a dedicated authoritative server for competitive games and host-based architecture for casual co-op. Apply client prediction, interpolation for remote players, and lag compensation for hit detection, and never trust client-reported state.

When should I use WebGPU versus WebGL for browser games?▼

Use WebGPU with a WebGL fallback for new projects, since support now covers roughly 73% of global browsers including Chrome, Edge, Firefox, and Safari. Detect support via navigator.gpu and fall back to WebGL for legacy compatibility.