Skip to main content

Godot SDK

Godot addon setup with clear source/download paths, configuration, verification, and CI guidance.

4 min readSDK Integration

Get the Godot SDK

Use the public devkit repository and copy the addon from the `godot/addons/argus` path.

Install and Configure

Copy addon into project, enable plugin, then set credentials and runtime mode.

cp -R argus-devkit/godot/addons/argus /path/to/game/addons/argus
# Enable plugin in Project Settings > Plugins
# Configure api_key, project_id, backend_url, and mode

Verify and Gate Release

Run smoke event validation, then enforce run-based gate in CI.

argus push build.zip --project my-game
argus run --project my-game --persona explorer,completionist --budget 6

Related Docs