AI Agent Hub
Back to skills
💻

Game Development Expert

Development Updated 2026.08.30

Paste the following prompt into your AI chat to install this skill:

Please install @kunlungrowth/game-developer according to https://skillhub.cn/install/skillhub.md.

About this skill

Real-time game development problems

Frame drops, physics tunneling, and inconsistent multiplayer state are usually not one bad snippet. They come from coupled system boundaries, data layout, and sync models. The Game Development Expert skill is aimed at real-time game contexts, helping engineers reason about ECS, physics, network synchronization, and performance profiling instead of producing generic code.

How it works and what it outputs

The skill follows a structured workflow:

  • Scope: confirm engine, gameplay, target frame rate, and platform.
  • Design: split system boundaries, data structures, and synchronization model.
  • Implementation: propose ECS systems, physics configuration, and networking code direction.
  • Self-check: inspect GC pressure, Draw Calls, determinism, object pooling, and parallel jobs.
  • Artifact: emit a GameSystemSpec with fields such as system, engine, perf, and notes for downstream review.

It is useful for turning symptoms such as combat frame drops, unstable collisions, or sync latency into reviewable engineering artifacts, not for replacing engine source modifications.

Boundaries and notes

It is best for real-time rendered game projects, not ordinary web backends, static sites, or non-game products. For engine internals or low-level renderer changes, it provides direction and checklists rather than official engine support. Supply specific symptoms, target platform, and existing code snippets to make the output closer to implementation.

Use Cases

  • When Unity combat drops frames, plan pooling, ECS/JobSystem, and main-thread allocation fixes.
  • When physics collisions feel unstable, produce system boundaries, data layout, and config checklists.
  • When multiplayer latency spikes, design the sync model, reconciliation, and determinism checks.
  • When reviewing game system code, emit a GameSystemSpec for code-reviewer follow-up checks.

Best For

  • Unity client engineers who need to turn combat frame drops into performance checklists.
  • Gameplay system engineers who need multiplayer sync models and state reconciliation plans.
  • Indie game developers who want ECS and physics collision code boundary reviews.
  • Technical leads who need reviewable GameSystemSpec artifacts for game systems.