Skip to main content

Unreal SDK

Clear Unreal integration path with direct devkit source links, install commands, and validation flow.

4 min readSDK Integration

Get the Unreal SDK

Download or clone the public devkit and use the Unreal plugin under the `unreal/` path.

Install and Configure

Copy plugin folder into your project, enable plugin, then configure key/project/backend settings.

cp -R argus-devkit/unreal /path/to/MyGame/Plugins/Argus
# Enable plugin in Unreal Editor > Plugins
# Set Argus.ApiKey, Argus.ProjectId, Argus.BackendUrl, Argus.Mode

Verify and Gate Release

Emit a startup smoke event, then validate upload and run workflow from CLI.

  • - Development/CI: Test mode
  • - Production: Live mode
  • - Gate release on scorecard policy
argus push MyGame-Win64.zip --project my-game
argus run --project my-game --persona explorer,destructor --budget 8

Related Docs