Getting Started
This guide gets you from a fresh clone to your first recipe listing. engine-room is a CLI tool — there’s nothing to deploy, and the core has zero third-party dependencies.
Requirements
Section titled “Requirements”- Python 3.10 or newer. The core is stdlib-only (
sqlite3+subprocess). - A clone of the engine-room repo. (It is a public GitHub repo, not a PyPI/npm package — there is
no
pip install engine-roomfrom an index.) - For most commands: the tensor-engine-knowledge recipe DB (
engines.db) — see Getting the recipe layer below.er rigworks without it. - For
--executeonly: an NVIDIA GPU and the recipe’s backend toolchain. Detection usesnvidia-smi.
Install
Section titled “Install”Two ways to run the CLI:
# 1. Editable install — gives you the `er` command on PATHpip install -e .
er riger list# 2. No install — run the module directly from the repo rootpython -m executor.cli rigpython -m executor.cli listThe two are interchangeable; this handbook writes er <cmd> for brevity. Everything in the core is
importable from a clone with no pip install at all — the only thing pip install -e . adds is the
er entry point.
Getting the recipe layer
Section titled “Getting the recipe layer”engine-room is the action half of the
knowledge / action split. It does not ship the
recipes. The knowledge half is the separately-provided, verified tensor-engine-knowledge
recipe DB (engines.db). Cloning this repo alone gives you the executor, not the catalog.
There are three ways er finds the DB, in priority order:
--db <path>on any command — explicit, wins over everything.- The
ER_RECIPES_DBenvironment variable — set it once for your shell. - The fallback path
../../readouts/tensor-engine-knowledge/engines.dbrelative to the repo, used when neither of the above is set.
# PowerShell — point at the DB for the session$env:ER_RECIPES_DB = "E:\AI\readouts\tensor-engine-knowledge\engines.db"er list# Or pass it per-commander --db /path/to/engines.db listIf the DB is missing you get a clear, structured error, not a stack trace:
recipe DB not found: … — set $ER_RECIPES_DB or pass --dbengine-room reads engines.db read-only and never writes it. The recipe layer is trusted
input — see Security.
First commands
Section titled “First commands”er rig — detect your hardware (no DB needed)
Section titled “er rig — detect your hardware (no DB needed)”er rig reads only the live hardware (nvidia-smi + environment), so it works immediately after
cloning, with or without a recipe DB:
$ er rigGPU NVIDIA GeForce RTX 5090VRAM 31.8 GBsm sm_120driver 610.47cuda(rt) 13.3 cuda(toolkit) Noneos windows wsl2 2.7.3.0compat-band {'gpu_arch': 'sm_120', 'cuda_toolkit': None, 'os_surface': 'windows', 'driver_floor': 'R570'}The last line — the compat-band — is the semantic fingerprint engine-room resolves recipes against. It is deliberately coarser than the exact driver string, so a routine driver bump doesn’t churn your instance identity. (More in Architecture.)
er list — browse the catalog (needs the DB)
Section titled “er list — browse the catalog (needs the DB)”Once the DB is pointed at, list the executable recipes:
$ er listKIND BACKEND V SLUGlaunchable-server native-win-compile Y diffusion-engines-sdcpp-flux2-dev-q8-ram-offload-32gbbatch-producer venv Y quantization-calibration-free-quick-shrink-with-hqq...
N executable recipesV is the verified flag (Y = claims grounded in a cited source). By default er list shows only
executable recipes; add --all to include the rest. Use a slug from this list with
er show, er preflight, and er provision.
What “reproducible: no” means
Section titled “What “reproducible: no” means”When you preflight a recipe you’ll often see:
reproducible: no (vendor pins — Goal 1)This is honest framing, not a bug. Today, pinned artifacts are resolved against an index, and
an unpinned artifact (or a placeholder <sha256>) is still accepted without a content check. That
means the install is not yet content-reproducible. Content-addressed vendoring — copying each pin
into a local store and rejecting placeholder shas so reproducible is earned — is Goal 1 of
the roadmap. Until it lands, treat the recipe DB and the artifact URLs it points at as trusted
inputs. engine-room tells you the truth about its own state rather than overclaiming.
Head to Usage for the dry-run-first workflow that takes a recipe from preflight to a running, measured engine.
