Skip to content

Scripts And Commands

Last reviewed: 2026-07-05

Install

Command Status Source
.\.venv\Scripts\python.exe -m pip install -e .[test] Documented AGENTS.md, docs/process/ChangeWorkflow.md
.\.venv\Scripts\python.exe -m pip install -r requirements.txt Documented for docs deps AGENTS.md, requirements.txt

Test And Docs

Command Status Source
git diff --check Required AGENTS.md
.\.venv\Scripts\python.exe -m pytest Configured pyproject.toml, AGENTS.md
.\.venv\Scripts\python.exe -m pytest tests\unit Configured AGENTS.md
.\.venv\Scripts\python.exe -m pytest tests\integration Configured AGENTS.md
.\.venv\Scripts\python.exe -m mkdocs build --strict Configured AGENTS.md, mkdocs.yml

No Ruff, Black, or mypy command is configured in this repository.

CLI Commands

Command Status Notes
anuva-worker validate-config --config <path> Implemented Validates config and prints worker id.
anuva-worker run --config <path> Stubbed/Partial Initializes config/workspace only.
anuva-worker poll-once --config <path> Implemented/Partial Claims and prepares at most one job.
anuva-worker list-jobs --config <path> Implemented Lists available jobs.
anuva-worker claim-job --job-id <id> --config <path> Implemented Manual claim and prepare.
anuva-worker run-manual-job --job-id <id> --config <path> Implemented/Partial Full single-job lifecycle with Unity dependency.
anuva-worker download-job <id> --config <path> Implemented Prepares an already-claimed package.
anuva-worker launch-unity --config <path> Implemented/Partial Launches EXE or waits for editor readiness.
anuva-worker stop-unity --config <path> Implemented/Partial Sends shutdown then stops EXE mode.
anuva-worker send-test-render --config <path> Implemented Sends one render.start command to ready Unity.
anuva-worker content --config <path> Implemented Starts content server.
anuva-worker dashboard --config <path> Implemented/Partial Starts dashboard.
anuva-worker simulator run --scenario <name> Implemented Starts simulator HTTP app.
anuva-worker simulator reset Implemented Resets configured scenario state in a local state object.
anuva-worker simulator load-scenario <name> Implemented Loads scenario in a local state object.
anuva-worker simulator list-scenarios Implemented Lists built-in and disk scenarios.
anuva-worker cert generate-local --if-missing --config <path> Implemented Uses OpenSSL.
anuva-worker service print-nssm-install --config <path> Implemented Prints NSSM commands without secret values.

Launcher Scripts

Script Status Purpose
scripts/start_manual_webapp_editor.bat Implemented Starts content/dashboard for real Web App plus Unity Editor.
scripts/start_manual_webapp_exe.bat Implemented Starts content/dashboard for real Web App plus Unity EXE mode.
scripts/start_manual_sim_editor.bat Implemented Starts simulator/content/dashboard for Unity Editor simulation flow.
scripts/start_manual_sim_exe.bat Implemented Starts simulator/content/dashboard for Unity EXE simulation flow.
scripts/install_nssm_service.ps1 Implemented Delegates to CLI NSSM script printer.

Core doc: TestingAndVerification.