Loading...
Loading...
Verify, download, and inspect build provenance attestations using the orbit CLI. Use this skill whenever the user asks about verifying attestations, checking provenance, inspecting Sigstore bundles, SLSA provenance, build provenance, verifying binaries, downloading attestation bundles, signer identity, in-toto attestations, or supply chain security. Trigger on phrases like 'verify attestation', 'check provenance', 'inspect bundle', 'build provenance', 'sigstore', 'SLSA', 'verify binary', 'attestation download', 'download bundle', 'check signer', 'inspect attestation', 'provenance verification', 'verify artifact', 'supply chain verification', 'check build origin', or any attestation-related task — even casual references like 'is this binary legit', 'who built this', 'where did this artifact come from', 'check the bundle', or 'show provenance'. The orbit CLI alias for attestation is `attest`.
npx skill4agent add jorgemuza/orbit attestationorbitwhich orbitbrew install jorgemuza/tap/orbitcurl -sSfL https://raw.githubusercontent.com/jorgemuza/orbit/main/install.sh | shscoop bucket add jorgemuza https://github.com/jorgemuza/scoop-bucket && scoop install orbit.jsonl.jsondownloadorbit attestation <command> [arguments] [flags]orbit attest <command> [arguments] [flags]-o json-o yamlreferences/commands.md# Verify a local binary against a bundle
orbit attestation verify ./my-binary --bundle attestation.jsonl
# Verify with owner and signer identity checks
orbit attest verify ./artifact --bundle bundle.json --owner my-org --signer-identity "github.com/my-org/my-repo"
# Verify a pre-computed digest
orbit attestation verify abc123def456... --bundle att.json --digest-algorithm sha256
# Output verification result as JSON
orbit attestation verify ./my-binary --bundle att.json -o json# Download attestation bundle by digest
orbit attestation download sha256:abc123... --repo owner/repo
# With explicit digest algorithm
orbit attest download abc123... --repo owner/repo --digest-algorithm sha256# Inspect a bundle file
orbit attestation inspect attestation.jsonl
# Output as JSON for processing
orbit attest inspect bundle.json -o json# Download the attestation bundle
orbit attestation download sha256:abc123... --repo my-org/my-repo
# Verify the binary against the downloaded bundle
orbit attestation verify ./my-binary --bundle attestation.jsonl --owner my-org
# Inspect the bundle for detailed provenance info
orbit attestation inspect attestation.jsonl-o jsonorbit attestation verify ./my-binary --bundle att.json -o json | jq '.signer'orbit attestation inspect bundle.json -o json | jq '.signer'orbit attest verify ./artifact --bundle bundle.json \
--owner my-org \
--repo my-org/my-repo \
--signer-identity "github.com/my-org/my-repo/.github/workflows/release.yml"sha256sha512--digest-algorithmdownload-p <profile>--repoverifyinspect-o json-o yaml