gz arb step¶
Wrap an arbitrary command and emit a schema-validated step receipt.
Usage¶
Runs the given command, captures stdout/stderr tail, duration, and exit code,
then writes a step receipt to artifacts/receipts/. Use this when no
dedicated wrapper (ruff / ty / typecheck / coverage) exists for your QA step.
Options¶
| Option | Description |
|---|---|
--name |
Logical step name for the receipt (required) |
--soft-fail |
Emit the receipt but return exit 0 even on failure |
argv |
Command and arguments after -- |
Examples¶
Bash
gz arb step --name unittest -- uv run -m unittest -q
gz arb step --name mkdocs -- uv run mkdocs build --strict
Exit Codes¶
| Code | Meaning |
|---|---|
| 0 | Wrapped command succeeded; receipt created |
| 1 | Wrapped command failed; receipt created |
| 2 | ARB internal error |
Receipt¶
- Schema:
gzkit.arb.step_receipt.v1(data/schemas/arb_step_receipt.schema.json) - Prefix:
arb-step-<name>-<timestamp> - Canonical for attestation claim "Tests pass" / "Docs build clean" via
arb-step-unittest-*andarb-step-mkdocs-*perAGENTS.md§ Attestation.
See Also¶
gz arb— ARB parent referencegz arb typecheck— canonical typecheck wrapper- Rule:
AGENTS.md§ Attestation (binding) /docs/governance/arb-middleware.md(deep-dive)