docs

  zegit · proves

Error codes

The ZG_ERR_* codes are a stable public contract — the gateway and CLI return them, and tooling parses them. Each comes with a structured payload and a remediation.

Reference

CodeCauseRemediation
ZG_ERR_AOV_MISSINGNo AoV ref for the commit.Run zg validate, push again with the AoV ref.
ZG_ERR_AOV_MISSING_TREEAoV subject lacks a tree SHA (no replay binding).Re-run zg validate with an up-to-date zg.
ZG_ERR_AOV_SIGNATURE_INVALIDAoV signature doesn't verify against the signer cert.Re-run validation; the cert may be compromised/misconfigured.
ZG_ERR_CERT_EXPIREDSigning cert expired.Run zg auth login.
ZG_ERR_CERT_REVOKEDSigning cert revoked by the CP.Check the audit log; re-enroll or contact a security admin.
ZG_ERR_POLICY_MISMATCHAoV policy digest ≠ the current required policy.Re-run zg validate under the current policy.
ZG_ERR_REQUIRED_CHECK_MISSINGAoV is missing required checks from the ZEGITFILE.Run zg validate so all required checks pass.
ZG_ERR_SIGNER_UNAUTHORIZEDSigner not authorized for this repo.Verify roles in the ZEGITFILE.
ZG_ERR_CRITICAL_AREA_UNAPPROVEDA critical-area change is missing required approval.Create a TR / obtain maintainer approval.
ZG_ERR_EVIDENCE_STALEAoV git state ≠ the pushed commit/tree.Re-run zg validate against the current commit.
ZG_ERR_POLICY_BLOCKRisk policy forbids autonomous delivery.Obtain approvals / create a TR.
ZG_ERR_TASK_CONTRACT_INVALIDA required task contract is absent or invalid.Create/fix the contract, then re-validate.
ZG_ERR_KEY_MISSINGA signing key is required but not provided/loadable.Run zg evidence keygen; pass --key.
ZG_ERR_NOT_INITIALIZED.zegit/config.yaml is missing.Run zg init.
ZG_ERR_BUNDLE_TAMPEREDA bundle file mismatches the signed manifest hash.Re-download from a trusted source and re-verify.
ZG_ERR_SIGNATURE_INVALIDA DSSE signature doesn't verify against the key.Re-sign with zg evidence sign, or use the correct --key.
ZG_ERR_QUORUM_NOT_META TR lacks the required valid approvals.Get authorized approvals, then zg tr finalize.
ZG_ERR_REVOCATION_LIST_STALEThe gateway's cached revocation list is older than max staleness (60s).Restore CP reachability; the push succeeds after a refresh.

Process exit codes

Distinct from the string codes above, the CLI uses numeric exit codes so CI can branch on them:

ExitMeaningWhere
0Success / ALLOWall commands
10REQUIRE_REVIEWzg validate, zg evidence
20BLOCK / signature invalid / bundle tamperedzg validate, zg evidence
30Quorum not metzg tr finalize
1 / 2IO/runtime error / usage errorall commands

Branch on the exit code, not on log text. A clean 0/10/20 split maps directly onto ALLOW / REQUIRE_REVIEW / BLOCK.

Authoritative reference, generated from the component repos. Spot something stale? Tell us.