chainloop Plugin
Software supply chain attestation and metadata framework. Record artifact integrity, build provenance, and compliance evidence for SLSA and related standards.
Installation
curl -sSL https://raw.githubusercontent.com/chainloop-dev/chainloop/main/install.sh | sh
Basic Usage
# Check CLI version
chainloop version
# Authenticate with a Chainloop server
chainloop auth login
# Initialize an attestation for a workflow
chainloop attestation init
# Add an artifact to the current attestation
chainloop attestation add --name my-artifact --value ./dist/app.tar.gz
# Push/finalize the attestation
chainloop attestation push
Common Patterns
# List available workflows
chainloop workflow list
# Run attestation in CI (non-interactive)
chainloop attestation init --workflow my-workflow
chainloop attestation add --name binary --value ./build/output
chainloop attestation push --yes
# Verify an attestation
chainloop attestation verify --digest sha256:abc123...
Usage Examples
- "Create a supply chain attestation for this build artifact"
- "Sign and record provenance for a Docker image in CI"
- "Verify the attestation on a released binary"
SuperCLI
sc chainloop _ _ version
sc chainloop _ _ attestation init
sc plugins learn chainloop