Unreal Engine
SkillDev toolsBuild, debug, test, package, and optimize Unreal Engine projects using C++, Blueprints, Automation Tests, Unreal Build Tool, and Automation Tool. Use for `.uproject` work and Unreal-specific runtime or editor issues.
Available today. Use it from your connected AI after setup.
No other account needed.
Connect ahel once, and every AI you use reads what you have installed.
Then ask your AI: use the Unreal Engine skill
What this skill tells your AI
The instructions your AI receives, as published by metaspartan/cybara in plugins/game-development/skills/unreal-engine/SKILL.md and read by ahel’s review.
Inspect first
- Locate the
.uprojectfile and read its engine association and enabled plugins. - Inspect
Source, project plugins,Config, target files, module build files, and nearby tests. - Determine whether the behavior belongs in C++, Blueprint, data assets, editor tooling, or configuration.
- Discover the installed editor and
RunUATorRunUBTentrypoint without assuming one platform path.
Never text-edit .uasset or .umap files. Use source changes, configuration, commandlets, or an engine-aware editor workflow.
Implementation rules
- Keep gameplay rules out of actors and widgets when a subsystem, component, or plain testable type is a better owner.
- Preserve reflection macros, module boundaries, object lifetime, replication authority, and thread affinity.
- Treat asset references and gameplay tags as contracts; verify renames and redirects.
- Avoid broad Blueprint reconstruction or resaves for a focused code change.
- Do not rely on hot reload as final verification after changing reflected types.
Verification
Use the project's existing scripts when present. Otherwise select the narrowest engine-native checks:
- Compile the affected target with Unreal Build Tool.
- Run relevant Automation Tests through the editor or command line.
- Use a command shaped like
UnrealEditor-Cmd <project> -ExecCmds="Automation RunTest <filter>;Quit" -ReportExportPath=<path> -unattended -nop4only after resolving the actual executable and test filter. - Use Automation Tool for build, cook, stage, package, deploy, or Gauntlet flows already supported by the project.
- Launch the correct map and exercise the changed player flow.
- Inspect logs for ensures, access violations, asset load failures, shader failures, and automation errors.
Headless automation and visual verification
- Drive editor automation with Python when no C++ change is needed:
UnrealEditor-Cmd <project.uproject> -run=pythonscript -script=<absolute script.py> -unattended -nop4 -nosplashafter resolving the real editor binary; enable the Python Editor Script Plugin first. - Keep each generated script small and split large scripts across several write or edit calls; a tool call cut off by the output limit loses its arguments.
- For visual checks, capture stills with
HighResShotconsole commands,unreal.AutomationLibrary.take_high_res_screenshot, or a Movie Render Queue job, writing PNG files to absolute paths. - Inspect every capture with the
imagetool, compare it with the requested result, fix, re-run, and inspect again before reporting. - Keep captures you reported to the user; write new versions to new file names.
Performance
Capture representative frame timing before changing performance-sensitive code. Distinguish game thread, render thread, GPU, streaming, shader compilation, and memory pressure. Validate packaged behavior because editor timing is not a shipping baseline.
Completion criteria
Report the target and configuration compiled, automation filter and result, map or gameplay flow exercised, package status, and any editor-only verification limitation.
Signals
- GitHub stars
- 28
- Forks
- 7
- Last commit
- Sep 2026
Advanced
- Catalog kind
- skill
- Gateway key
unreal-engine- Source
- github.com/metaspartan/cybara