Pilot paths

Public contract first. Private engine access when the evaluator is ready.

Public evaluators can test Job Spec v1, mock execution, portable receipts, and local verification from OGN Core Kit. Private pilots add OGN Engine and OGN Cloud/Gateway for engine-backed runs and hosted artifact workflows.

Public evaluator

OGN Core Kit contract smoke

  1. 1Clone ogn-core-kit
  2. 2Install SDK and runner in a virtual environment
  3. 3Validate examples/minimal-job/job_spec.json
  4. 4Run ogn-runner --mock
  5. 5Verify receipt.json locally
View Core Kit
Private evaluator

OGN Engine and Gateway pilot

  1. 1Receive private OGN repo or container access
  2. 2Use the OGN Pilot Packet v0.1 provided with pilot access
  3. 3Run engine/container evaluation
  4. 4Submit through gateway when enabled
  5. 5Download and verify receipt/proof artifacts
Request Pilot Access
git clone https://github.com/omniscoder/ogn-core-kit.git
cd ogn-core-kit
python3 -m venv .venv
. .venv/bin/activate
python -m pip install -U pip
python -m pip install -e sdk/python[dev]
ogn-runner --validate examples/minimal-job/job_spec.json
ogn-runner --mock examples/minimal-job/job_spec.json
ogn-verify-receipt examples/minimal-job/receipt.json
Gateway trust-loop shortcut

In the gateway repo, the local demo script submits a run, downloads receipt.json, runs `ogn-verify-receipt`, and verifies the bundled receipt with `--base-dir` when an optional proof bundle exists.

./scripts/demo_receipt_proof.sh
Known limitations
  • Public Core Kit does not include proprietary OGN Engine source, CUDA kernels, or commercial containers.
  • Receipt is the minimum trust artifact.
  • Proof bundle is optional and gateway proof-bundle endpoints are 404-safe until a worker registers it.
  • Gateway local demo may use auth bypass; production endpoints require configured auth.
  • Direct competitive comparison belongs on a future compare page, not the homepage.