Documentation
Everything you need to integrate Argus into your game's development and release pipeline.
# Start here
# 1) Install CLI
npm install -g @argus/cli
# 2) Authenticate
argus login --backend https://api.argus.ludotronics.io
# 3) Upload and run
argus push build.apk --project my-game
argus run --project my-game --persona explorer,destructor --budget 5
# 4) Open docs
http://localhost:3000/docs/getting-started
# Unity (C#)
using ArgusSDK;
void Start() {
Argus.Init("ak_live_YOUR_KEY", projectId: "my-game");
}
# Python
pip install argus-sdk
from argus import Argus
sdk = Argus(api_key="ak_live_YOUR_KEY", project_id="my-game")
sdk.init()
# CLI
npm install -g @argus/cli
argus login
argus push build.apk --project my-game
argus run --persona explorer,destructor --budget 5From SDK install to your first QA run in under 5 minutes.
CLI commands, build upload flow, and CI-safe usage patterns.
19 modules that run automatically on every QA session.
Lightweight production telemetry with zero user impact.
Integration guides for Unity and Python developer workflows.
Validation checklist to keep commands, links, and environment docs accurate.