GameDev Wizard

Generates game scripts and architecture designs for Unity, Unreal, and Godot engines.

Updated Jan 16, 2026
One-click install
npx skills add https://github.com/dudqks0319-cpu/antigravity-skills --skill gamedev-wizard-dudqks0319-cpu
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: GameDev Wizard
Source: https://github.com/dudqks0319-cpu/antigravity-skills/tree/main/gamedev-wizard
Command: npx skills add https://github.com/dudqks0319-cpu/antigravity-skills --skill gamedev-wizard-dudqks0319-cpu

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Game developers often need engine-specific boilerplate code and system architecture guidance across Unity, Unreal, and Godot, each with distinct APIs, languages, and conventions. This Skill provides targeted coding assistance and structural design support for all three major engines. ## Core Features & Use Cases - Script Generation: Creates engine-specific scripts such as Unity C# object pooling managers, Unreal C++ custom actor components, and Godot 4 character movement scripts. - Shader Authoring: Explains HLSL/GLSL shader code and shader graph logic for visual effects. - System Design: Proposes architectures for gameplay systems like inventory and quest systems. - Use Case: A Unity developer asks for a character jump script with coroutine-based coyote time, then requests an inventory system design following MonoBehaviour lifecycle best practices. ## Quick Start Ask the assistant to write a Unity C# object pooling manager script or a Godot 4 character movement script.

Frequently Asked Questions about GameDev Wizard

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

FAQPage Schema
How do I create an object pooling manager in Unity?▼

Request a Unity C# object pooling script and the Skill generates a manager using MonoBehaviour patterns with pre-instantiated object queues. It handles spawn, despawn, and reuse logic following Unity lifecycle conventions.

How to write a custom actor component in Unreal Engine 5 C++?▼

Ask for the basic structure of a custom actor component and the Skill provides the C++ class skeleton with UCLASS and UPROPERTY macros, BeginPlay and TickComponent overrides, and registration guidance.

Does this support Godot 4 GDScript character movement?▼

Yes, the Skill generates Godot 4 character movement scripts using GDScript with CharacterBody2D or CharacterBody3D nodes, input handling, and signal-based event patterns.

Can it help design an inventory or quest system?▼

Yes, the Skill proposes structural designs for gameplay systems like inventories and quests, outlining data models, component responsibilities, and engine-appropriate implementation approaches.

What are the limitations of generated game scripts?▼

Generated scripts are starting points that may need adjustment for your project's engine version, input system, and existing architecture. Complex multiplayer or DOTS-based systems require additional manual design work.