This guide explains how to verify a ZERO release before installing or sharing it. It checks artifact integrity, GitHub artifact attestations, SBOM/provenance metadata, the committed Homebrew formula, and the clean-download evidence record.
It verifies release integrity only. It does not prove live trading safety, hosted custody, future package-registry publication, or profitability.
Use this path when you want the repository verifier to download the release from GitHub and check everything in a temporary clean directory:
git clone https://github.com/zero-intel/zero.git
cd zero
just release-evidence v0.1.2For machine-readable output:
scripts/release_evidence.py v0.1.2 --jsonThe release evidence command:
- reads the published GitHub Release metadata;
- downloads every attached release asset into a clean temporary directory;
- verifies
SHA256SUMSwithshasum -a 256 -c SHA256SUMS; - runs
scripts/release_verify.pyagainst the downloaded directory; - verifies executable GitHub artifact attestations;
- renders a Homebrew formula from the downloaded checksums;
- fails if the rendered formula differs from the committed
Formula/zero.rb.
The current published evidence is recorded in
v0.1.2 release evidence. Historical v0.1.1
evidence remains in v0.1.1 release evidence.
Use this path when you already downloaded all GitHub Release assets into one directory:
cd /path/to/downloaded/zero-release
shasum -a 256 -c SHA256SUMS
/path/to/zero/scripts/release_verify.py .Expected launch assets include:
SHA256SUMSzero-linuxzero-macoszero-paper-image.tarzero_engine-<version>-py3-none-any.whlzero_engine-<version>.tar.gzSBOM.spdx.jsonPROVENANCE.json
scripts/release_verify.py checks that the checksum manifest covers exactly
the release assets, every checksum matches, expected launch assets are present,
assets are non-empty, and the metadata files parse with the expected safety
claims.
Run attestation verification from the downloaded asset directory:
gh attestation verify zero-linux -R zero-intel/zero
gh attestation verify zero-macos -R zero-intel/zeroThese commands prove that GitHub has signed provenance for the executable artifacts attached to the release. They do not prove that the executable is safe to use for live capital; they prove release provenance for the downloaded file.
The release verifier requires both files:
python3 -m json.tool SBOM.spdx.json >/dev/null
python3 -m json.tool PROVENANCE.json >/dev/nullSBOM.spdx.json records package/component metadata. PROVENANCE.json records
source commit, tag, asset hashes, dirty-state policy, and release assertions
such as paper-first defaults and no package-registry publication.
The public repo works as its own Homebrew tap:
brew tap zero-intel/zero https://github.com/zero-intel/zero
brew install zeroThe committed formula at Formula/zero.rb must be generated from a verified
release directory:
scripts/homebrew_formula.py /path/to/downloaded/zero-release --tag v0.1.2 --output /tmp/zero.rb
diff -u Formula/zero.rb /tmp/zero.rb
scripts/homebrew_formula_check.pyThe formula drift check proves that the tap points at the same GitHub Release
assets and checksums as the downloaded release. If the rendered formula differs
from Formula/zero.rb, the tap is stale or the release verification input is
wrong.
Do not install or redistribute a release when any of these fail:
shasum -a 256 -c SHA256SUMSscripts/release_verify.py <downloaded-release-dir>gh attestation verify zero-linux -R zero-intel/zerogh attestation verify zero-macos -R zero-intel/zeroscripts/homebrew_formula_check.pyjust release-evidence <tag>
Treat failure as an integrity incident until a maintainer publishes corrected evidence or replaces the release.