game-developer

Implement Unity/Unreal game systems with ECS, state machines, and networking.

1|Updated May 16, 2026
One-click install
npx skills add https://github.com/enigmaicon-eng/AI-Enterprise-OS --skill game-developer-enigmaicon-eng
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: game-developer
Source: https://github.com/enigmaicon-eng/AI-Enterprise-OS/tree/main/examples/claude-skills/skills/game-developer
Command: npx skills add https://github.com/enigmaicon-eng/AI-Enterprise-OS --skill game-developer-enigmaicon-eng

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve?

This Skill helps you implement robust, high-performance game features by translating game requirements into concrete engineering patterns and validation steps.

Core Features & Use Cases

  • ECS architecture implementation: Structure gameplay logic around entities and components for maintainability and scalability.
  • Core gameplay feature development: Implement physics behavior, shaders, state machines, and performance-safe patterns.
  • Multiplayer-ready system design: Set up server-authoritative networking concerns including lag compensation, prediction, and synchronization.

Quick Start

Invoke it to implement an ECS-based player movement and combat loop in Unity, including object pooling, a state machine, and multiplayer lag-compensated hitscan.

Frequently Asked Questions about game-developer

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

FAQPage Schema
How do I implement an ECS player movement and combat loop in Unity?

Implementing an ECS player movement and combat loop in Unity requires structuring gameplay logic around deterministic entities and components, utilizing object pooling and state machines for scalable, high-performance frame rates.

How does server-authoritative networking handle lag compensation and prediction?

Server-authoritative networking handles lag compensation by validating client inputs on the server, while prediction algorithms simulate player movement locally to hide latency and synchronize multiplayer sessions.

Can I use ECS architecture for both Unity and Unreal Engine feature implementation?

Yes, ECS architecture applies to both Unity and Unreal Engine feature implementation. The system structures deterministic components and systems for physics, rendering, and shaders across both platforms.

What is the best way to optimize game performance and enforce FPS targets?

Optimizing game performance and enforcing FPS targets requires applying performance-safe patterns like object pooling and state machines, while enforcing validation checkpoints through continuous profiling.

Why does multiplayer networking require client-side prediction and reconciliation?

Multiplayer networking requires client-side prediction and reconciliation to mask network latency. Prediction simulates immediate local movement, while reconciliation corrects discrepancies using authoritative server state updates.