ue5-gamedev
UE5 Game Development
C++ coding, Blueprint authoring, editor automation, and build management for Unreal Engine 5 projects.
Infrastructure
UE5 requires a machine with a capable GPU and sufficient RAM. Remote access to the editor is provided through multiple channels. Configure the following environment variables (or use the defaults shown):
| Service | Env Var | Default | Purpose |
|---|---|---|---|
| Remote Control API | UE5_REMOTE_CONTROL_HOST |
localhost:8080 |
Property access, function calls, editor control |
| UE5 Editor (Remote Exec) | UE5_PYTHON_BRIDGE_HOST |
localhost:30010 |
Python script execution inside editor |
| Bridge / Orchestrator (optional) | UE5_BRIDGE_HOST |
localhost:8000 |
Proxied UE5 commands from an orchestrator service |
Project path: Set UE5_PROJECT_PATH to your .uproject directory (e.g., D:\UnrealProjects\MyGame).
C++ coding standards
Follow Epic's conventions strictly:
More from edhahn/agent-skills
software-architecture
>
8ue5-level-design
>
5game-designer
>
5ue5-cinematics
>
5multi-agent-chat
Coordination protocol for AI agents sharing a group chat channel (Discord, Slack, Teams, or any multi-user channel). Prevents infinite agent-to-agent loops, reduces noise, eliminates redundant responses, and establishes clear routing rules for who responds to what. Use this skill when you are an AI agent in a channel with other AI agents and human participants, when you see duplicate responses or echo loops between agents, when a human asks agents to coordinate better, when you need rules for when to speak vs. stay silent in a multi-agent channel, or when you want to reduce token waste from unnecessary agent chatter. Also applies to any shared workspace where multiple agents receive the same messages.
5ue5-character
>
5