ue-build-package

Compile and package Unreal Engine projects. Use when: (1) Building UE project from command line, (2) Packaging for distribution (Android/iOS/Windows), (3) Running Cook, (4) Building SLN in Rider/VS, (5) Generating pak files, (6) Running UE editor commands, (7) Checking build progress

Safety Notice

This listing is from the official public ClawHub registry. Review SKILL.md and referenced scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "ue-build-package" with this command: npx skills add vincentwilliam/ue-build-package

UE Build & Package

Common Build Commands

Windows Development Build

# Using UnrealBuildTool
Engine\Engine\Build\BatchFiles\RunUBT.bat <Target> <Platform> <Configuration> -Project=<path>

# Example: Build client
Engine\Engine\Build\BatchFiles\RunUBT.bat SilverPalaceClient Win64 Development -Project=Project\SilverPalace.uproject

# Example: Build editor
Engine\Engine\Build\BatchFiles\RunUBT.bat SilverPalaceEditor Win64 Development -Project=Project\SilverPalace.uproject

Package for Windows

Engine\Engine\Build\BatchFiles\RunUAT.bat BuildCookRun -project=Project\SilverPalace.uproject -platform=Win64 -build

Package for Android

Engine\Engine\Build\BatchFiles\RunUAT.bat BuildCookRun -project=Project\SilverPalace.uproject -platform=Android -cookflavor=ASTC

Package for iOS

Engine\Engine\Build\BatchFiles\RunUAT.bat BuildCookRun -project=Project\SilverPalace.uproject -platform=IOS

Project Paths (SilverPalace)

  • Project Root: E:\SilverVer1.0.0\Project
  • Solution: E:\SilverVer1.0.0\Project\SilverPalace.sln
  • Binaries: E:\SilverVer1.0.0\Project\Binaries\Win64
  • Content: E:\SilverVer1.0.0\Project\Content
  • Saved: E:\SilverVer1.0.0\Project\Saved
  • Engine: E:\SilverVer1.0.0\Engine\Engine

Build Targets

TargetPlatformDescription
SilverPalaceClientWin64Windows 客户端
SilverPalaceEditorWin64编辑器
SilverPalaceWin64服务器版本

Check Build Status

Check if building

Get-Process | Where-Object {$_.ProcessName -like '*MSBuild*' -or $_.ProcessName -like '*UnrealBuild*'}

Check build output

Get-ChildItem "Project\Saved\Logs" | Sort-Object LastWriteTime -Descending

Check compiled binaries

Get-ChildItem "Project\Binaries\Win64" -Filter "*.exe"

Rider Integration

Use nodes tool to:

  1. Find Rider: Get-Process rider64
  2. Focus window: Use SetForegroundWindow + SendKeys
  3. Build shortcut: Ctrl+F9 (or via menu)

Quick Build (via Rider)

  • Build: Ctrl+B
  • Rebuild: Ctrl+Shift+B
  • Run: F5
  • Package: Via菜单 > File > Package Project > Windows

Troubleshooting

"No platforms specified"

# Add platform explicitly
-Target=SilverPalaceClient -Platform=Win64

"Conflicting instance running"

# Check for running builds
Get-Process | Where-Object {$_.ProcessName -like '*MSBuild*'}

# Wait or kill previous build

Long cook times

  • Check DerivedDataCache folder size
  • Clear cache: Delete Project\Saved\DerivedDataCache

Packaging failures

  • Check Saved\StagedBuilds for error logs
  • Check Saved\Logs for cooking errors

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

General

Fitbit Tracker

Personal Fitbit integration for daily health tracking with adaptive sleep and activity reporting

Registry SourceRecently Updated
General

Ollama Load Balancer

Ollama load balancer for Llama, Qwen, DeepSeek, and Mistral inference across multiple machines. Load balancing with auto-discovery via mDNS, health checks, q...

Registry SourceRecently Updated
General

Google Merchant Center

Google Merchant Center integration. Manage Accounts. Use when the user wants to interact with Google Merchant Center data.

Registry SourceRecently Updated
General

Twitter/X All-in-One — Search, Monitor & Publish Text & Media Posts

Searches and reads X (Twitter): profiles, timelines, mentions, followers, tweet search, trends, lists, communities, and Spaces. Publishes posts, likes/unlike...

Registry SourceRecently Updated