> ## Documentation Index
> Fetch the complete documentation index at: https://docs.chainloop.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# Setup

## Get access to Chainloop

This guide assumes that you have access to a [Chainloop Cloud](https://app.chainloop.dev/) account or to your own self-hosted Chainloop instance. If you don't, please [contact us](https://app.chainloop.dev/request-access), and we'll get back to you shortly.

## Install the Chainloop Command Line Interface (CLI)

The Chainloop CLI is used to send pieces of evidence and attestations to the platform. During this getting started, we’ll use the CLI to perform attestations locally first, and later in a CI/CD system.

To install the latest version for macOS, Linux, or Windows (using [WSL](https://learn.microsoft.com/en-us/windows/wsl/install)), choose one of the following installation methods.

<Tabs>
  <Tab title="Chainloop SaaS">
    The install script comes pre-configured for Chainloop Cloud.

    ```bash theme={"dark"}
    curl -sfL https://dl.chainloop.dev/cli/install.sh | bash -s
    ```

    <Accordion title="Advanced Options">
      you can install a specific version with

      ```bash theme={"dark"}
      curl -sfL https://dl.chainloop.dev/cli/install.sh | bash -s -- --version vx.x.x
      ```

      and customize the install path (defaults to /usr/local/bin)

      ```bash theme={"dark"}
      curl -sfL https://dl.chainloop.dev/cli/install.sh | bash -s -- --path /my-path
      ```

      To install without sudo, provide a user-accessible path:

      ```bash theme={"dark"}
      curl -sfL https://dl.chainloop.dev/cli/install.sh | bash -s -- --path ~/.local/bin
      ```

      if [cosign](https://docs.sigstore.dev/quickstart/quickstart-cosign/) is present in your system, in addition to the checksum check, a signature verification will be performed. This behavior can be enforced via the --force-verification flag.

      ```bash theme={"dark"}
      curl -sfL https://dl.chainloop.dev/cli/install.sh | bash -s -- --force-verification
      ```

      To install the open-source edition instead:

      ```bash theme={"dark"}
      curl -sfL https://dl.chainloop.dev/cli/install.sh | bash -s -- --oss
      ```
    </Accordion>
  </Tab>

  <Tab title="On-Prem">
    Install from your own instance's domain and the CLI is automatically configured to talk to it. Copy the exact command from the Chainloop web UI — click the terminal (`>_`) icon in the top-right corner — or replace `YOUR_INSTANCE_DOMAIN` below with your own.

    ```bash theme={"dark"}
    curl -sfL https://YOUR_INSTANCE_DOMAIN/cli/install.sh | bash -s
    ```

    <Frame>
      <img src="https://mintcdn.com/chainloop/JFPirGFumFqtajI8/img/setup-cli-install.png?fit=max&auto=format&n=JFPirGFumFqtajI8&q=85&s=efda7dc904d93986d5d73b3c556c4ced" alt="Terminal icon in the top-right corner of the Chainloop web UI that opens the CLI installation dialog" width="1089" height="171" data-path="img/setup-cli-install.png" />
    </Frame>

    <Accordion title="Advanced Options">
      you can install a specific version with

      ```bash theme={"dark"}
      curl -sfL https://YOUR_INSTANCE_DOMAIN/cli/install.sh | bash -s -- --version vx.x.x
      ```

      and customize the install path (defaults to /usr/local/bin)

      ```bash theme={"dark"}
      curl -sfL https://YOUR_INSTANCE_DOMAIN/cli/install.sh | bash -s -- --path /my-path
      ```

      To install without sudo, provide a user-accessible path:

      ```bash theme={"dark"}
      curl -sfL https://YOUR_INSTANCE_DOMAIN/cli/install.sh | bash -s -- --path ~/.local/bin
      ```

      if [cosign](https://docs.sigstore.dev/quickstart/quickstart-cosign/) is present in your system, in addition to the checksum check, a signature verification will be performed. This behavior can be enforced via the --force-verification flag.

      ```bash theme={"dark"}
      curl -sfL https://YOUR_INSTANCE_DOMAIN/cli/install.sh | bash -s -- --force-verification
      ```

      To install the open-source edition instead:

      ```bash theme={"dark"}
      curl -sfL https://YOUR_INSTANCE_DOMAIN/cli/install.sh | bash -s -- --oss
      ```
    </Accordion>
  </Tab>

  <Tab title="Manual Download">
    Download the CLI binary directly and verify its SHA256 against the published `checksums.txt`. Use this when piping a script into `bash` is not an option, or when binaries need to be validated out-of-band.

    <AccordionGroup id="cli-versions">
      <Accordion title="v1.95.1" defaultOpen>
        | OS      | Architecture  | Download                                                                                                                                            | SHA256                                                             |
        | ------- | ------------- | --------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------ |
        | Linux   | Intel (amd64) | [chainloop-linux-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.95.1/chainloop-linux-amd64)             | `a39de25fdab4ab00742727d9e8e7b3ecc03ba233d8e88c74bcb5e87604df6c8a` |
        | Linux   | ARM64         | [chainloop-linux-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.95.1/chainloop-linux-arm64)             | `18a357eb9f22c11b0c50cd0f70e80e0e8c7442b7629bc5ff9a93c5b4938a9db2` |
        | macOS   | Intel (amd64) | [chainloop-darwin-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.95.1/chainloop-darwin-amd64)           | `d0e1b56e0dc4faedf30f7073272a5d6cd626b7e98490f90a445a423f24b8b96a` |
        | macOS   | Apple Silicon | [chainloop-darwin-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.95.1/chainloop-darwin-arm64)           | `b39b516af2425cb8b4ad50ba71269045de9de7ef3bf1201f1a2104d8485e6246` |
        | Windows | Intel (amd64) | [chainloop-windows-amd64.exe](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.95.1/chainloop-windows-amd64.exe) | `8c37bf7d65429f2602d0fe80d0e179ef24f68f1bbf4d7adc5a278437298138dc` |
        | Windows | ARM64         | [chainloop-windows-arm64.exe](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.95.1/chainloop-windows-arm64.exe) | `3730bf44ed509d3ada819423abb74181c6d37bfb20aa8511626d5d3dba567465` |

        Full manifest: [`checksums.txt`](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.95.1/checksums.txt) · [signature bundle](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.95.1/checksums.txt.sigstore.json) · [Release notes](/changelog)

        Download, verify, and install (linux/amd64 shown — swap `chainloop-linux-amd64` for another row from the table above):

        ```bash theme={"dark"}
        VERSION=v1.95.1
        BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION

        # Download the linux/amd64 binary and the checksum manifest
        curl -fsSLO "$BASE/chainloop-linux-amd64"
        curl -fsSLO "$BASE/checksums.txt"

        # Download the signature bundle and confirm the manifest itself came from Chainloop's release pipeline
        curl -fsSLO "$BASE/checksums.txt.sigstore.json"
        cosign verify-blob   --bundle=checksums.txt.sigstore.json   --certificate-oidc-issuer="https://token.actions.githubusercontent.com"   --certificate-identity-regexp="^https://github.com/chainloop-dev/platform/.github/workflows/release_backend.yml@"   checksums.txt

        # Verify the binary against the manifest
        sha256sum --ignore-missing -c checksums.txt
        # on macOS: shasum -a 256 --ignore-missing -c checksums.txt

        # Install it onto your PATH
        chmod +x chainloop-linux-amd64
        sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
        ```
      </Accordion>

      <Accordion title="v1.95.0">
        | OS      | Architecture  | Download                                                                                                                                            | SHA256                                                             |
        | ------- | ------------- | --------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------ |
        | Linux   | Intel (amd64) | [chainloop-linux-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.95.0/chainloop-linux-amd64)             | `58fcef7f4cfda7745e833af7ef459a902af082fee6165136852e234b01121590` |
        | Linux   | ARM64         | [chainloop-linux-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.95.0/chainloop-linux-arm64)             | `7a3405df8a48f8f24f209b1d7d7ddb1f03a8d586af322e9990c9efef1f3595ba` |
        | macOS   | Intel (amd64) | [chainloop-darwin-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.95.0/chainloop-darwin-amd64)           | `453af4c8d6b20b8825ada6ceaddcf3cf8415561cec0468d1eff23473822fd29c` |
        | macOS   | Apple Silicon | [chainloop-darwin-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.95.0/chainloop-darwin-arm64)           | `abefa85465f805cde28271ca37c7731de789e695464740506e45251c65241b4a` |
        | Windows | Intel (amd64) | [chainloop-windows-amd64.exe](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.95.0/chainloop-windows-amd64.exe) | `9cc2bc8c6e7f1ffa427eed4061814bca66cff39796f4ec532ae5b14b5fdb386a` |
        | Windows | ARM64         | [chainloop-windows-arm64.exe](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.95.0/chainloop-windows-arm64.exe) | `8747bf0ee91a874f027cd196ea36a8df73f978df28760606825c3600a59877b5` |

        Full manifest: [`checksums.txt`](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.95.0/checksums.txt) · [signature bundle](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.95.0/checksums.txt.sigstore.json) · [Release notes](/changelog)

        Download, verify, and install (linux/amd64 shown — swap `chainloop-linux-amd64` for another row from the table above):

        ```bash theme={"dark"}
        VERSION=v1.95.0
        BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION

        # Download the linux/amd64 binary and the checksum manifest
        curl -fsSLO "$BASE/chainloop-linux-amd64"
        curl -fsSLO "$BASE/checksums.txt"

        # Download the signature bundle and confirm the manifest itself came from Chainloop's release pipeline
        curl -fsSLO "$BASE/checksums.txt.sigstore.json"
        cosign verify-blob   --bundle=checksums.txt.sigstore.json   --certificate-oidc-issuer="https://token.actions.githubusercontent.com"   --certificate-identity-regexp="^https://github.com/chainloop-dev/platform/.github/workflows/release_backend.yml@"   checksums.txt

        # Verify the binary against the manifest
        sha256sum --ignore-missing -c checksums.txt
        # on macOS: shasum -a 256 --ignore-missing -c checksums.txt

        # Install it onto your PATH
        chmod +x chainloop-linux-amd64
        sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
        ```
      </Accordion>

      <Accordion title="v1.94.5">
        | OS      | Architecture  | Download                                                                                                                                            | SHA256                                                             |
        | ------- | ------------- | --------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------ |
        | Linux   | Intel (amd64) | [chainloop-linux-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.94.5/chainloop-linux-amd64)             | `d8d597d4fe63368418dedf49f8aa85153a4805a4216b5750152facbc09065a02` |
        | Linux   | ARM64         | [chainloop-linux-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.94.5/chainloop-linux-arm64)             | `949065a094647496d27c61a494a169202a5c8c1977d3d72ffdb821079efc32d4` |
        | macOS   | Intel (amd64) | [chainloop-darwin-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.94.5/chainloop-darwin-amd64)           | `2f1fbed09de0f22db536c651fe93e908420079787a5e3914e0ebfe1e0bad60f4` |
        | macOS   | Apple Silicon | [chainloop-darwin-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.94.5/chainloop-darwin-arm64)           | `a19766436c64fe9a252fe3a695a2a24c3d598fc837596d88ba985f67bed82e61` |
        | Windows | Intel (amd64) | [chainloop-windows-amd64.exe](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.94.5/chainloop-windows-amd64.exe) | `fb3433f3929ef87cdd5732ee4fa5827b2217f983a88151bfad1913a643bbbcc4` |
        | Windows | ARM64         | [chainloop-windows-arm64.exe](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.94.5/chainloop-windows-arm64.exe) | `39ffeed0b75eabc320b532f00333e0af8ab9db7763477be081dc7f43588f5ca4` |

        Full manifest: [`checksums.txt`](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.94.5/checksums.txt) · [signature bundle](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.94.5/checksums.txt.sigstore.json) · [Release notes](/changelog)

        Download, verify, and install (linux/amd64 shown — swap `chainloop-linux-amd64` for another row from the table above):

        ```bash theme={"dark"}
        VERSION=v1.94.5
        BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION

        # Download the linux/amd64 binary and the checksum manifest
        curl -fsSLO "$BASE/chainloop-linux-amd64"
        curl -fsSLO "$BASE/checksums.txt"

        # Download the signature bundle and confirm the manifest itself came from Chainloop's release pipeline
        curl -fsSLO "$BASE/checksums.txt.sigstore.json"
        cosign verify-blob   --bundle=checksums.txt.sigstore.json   --certificate-oidc-issuer="https://token.actions.githubusercontent.com"   --certificate-identity-regexp="^https://github.com/chainloop-dev/platform/.github/workflows/release_backend.yml@"   checksums.txt

        # Verify the binary against the manifest
        sha256sum --ignore-missing -c checksums.txt
        # on macOS: shasum -a 256 --ignore-missing -c checksums.txt

        # Install it onto your PATH
        chmod +x chainloop-linux-amd64
        sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
        ```
      </Accordion>

      <Accordion title="v1.94.4">
        | OS      | Architecture  | Download                                                                                                                                            | SHA256                                                             |
        | ------- | ------------- | --------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------ |
        | Linux   | Intel (amd64) | [chainloop-linux-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.94.4/chainloop-linux-amd64)             | `682646168bdaff723ab80d0ff04d18a3ab87153f41f1447ca73905df5a2379e6` |
        | Linux   | ARM64         | [chainloop-linux-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.94.4/chainloop-linux-arm64)             | `9a8e006e07d86f46a3e3a5d2c2c0fb8b9ce9eb9040258bae73bce03646462460` |
        | macOS   | Intel (amd64) | [chainloop-darwin-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.94.4/chainloop-darwin-amd64)           | `c6911e8233b656bd055e3e702bbf71a56cfaf8b12582a30573780c0ae15155b8` |
        | macOS   | Apple Silicon | [chainloop-darwin-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.94.4/chainloop-darwin-arm64)           | `8d40fd302d123298a4e13a9f111dce5a8e9f09b8f4113d7afec2b5a468c906b8` |
        | Windows | Intel (amd64) | [chainloop-windows-amd64.exe](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.94.4/chainloop-windows-amd64.exe) | `35b5c337decd6e9a39acf0d9c2bad34cdfc621a3461c5cb40320f01975e9c2c6` |
        | Windows | ARM64         | [chainloop-windows-arm64.exe](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.94.4/chainloop-windows-arm64.exe) | `8d56fb8904380533d345ace764c903ba6b3903692a17577ef7cad20c9c82696e` |

        Full manifest: [`checksums.txt`](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.94.4/checksums.txt) · [signature bundle](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.94.4/checksums.txt.sigstore.json) · [Release notes](/changelog)

        Download, verify, and install (linux/amd64 shown — swap `chainloop-linux-amd64` for another row from the table above):

        ```bash theme={"dark"}
        VERSION=v1.94.4
        BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION

        # Download the linux/amd64 binary and the checksum manifest
        curl -fsSLO "$BASE/chainloop-linux-amd64"
        curl -fsSLO "$BASE/checksums.txt"

        # Download the signature bundle and confirm the manifest itself came from Chainloop's release pipeline
        curl -fsSLO "$BASE/checksums.txt.sigstore.json"
        cosign verify-blob   --bundle=checksums.txt.sigstore.json   --certificate-oidc-issuer="https://token.actions.githubusercontent.com"   --certificate-identity-regexp="^https://github.com/chainloop-dev/platform/.github/workflows/release_backend.yml@"   checksums.txt

        # Verify the binary against the manifest
        sha256sum --ignore-missing -c checksums.txt
        # on macOS: shasum -a 256 --ignore-missing -c checksums.txt

        # Install it onto your PATH
        chmod +x chainloop-linux-amd64
        sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
        ```
      </Accordion>

      <Accordion title="v1.94.3">
        | OS      | Architecture  | Download                                                                                                                                            | SHA256                                                             |
        | ------- | ------------- | --------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------ |
        | Linux   | Intel (amd64) | [chainloop-linux-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.94.3/chainloop-linux-amd64)             | `5b50bd7695599a6c18accea9f22e58b5ad5201b6ea50375c346240aec262e84f` |
        | Linux   | ARM64         | [chainloop-linux-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.94.3/chainloop-linux-arm64)             | `b4f35f5b10c0e8a64f8503489c4bc63e0436403212bcb848da5575350e9174c6` |
        | macOS   | Intel (amd64) | [chainloop-darwin-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.94.3/chainloop-darwin-amd64)           | `ca36468ebe162faf5aec81d928c129e716f1b0eff1ad10f427a34aeca0769387` |
        | macOS   | Apple Silicon | [chainloop-darwin-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.94.3/chainloop-darwin-arm64)           | `77df15621b5d69b3f8bedd0ede4ab084d02913e2a551ad38f91fa07b73430252` |
        | Windows | Intel (amd64) | [chainloop-windows-amd64.exe](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.94.3/chainloop-windows-amd64.exe) | `15a77d4be01f45d59717500d3dd018bef63d5c5079310f87a70f7e22f36c6628` |
        | Windows | ARM64         | [chainloop-windows-arm64.exe](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.94.3/chainloop-windows-arm64.exe) | `777ec1e4c7e03604ebd8394c1603b8f4e031d999978331aa9554be0eeb398ba9` |

        Full manifest: [`checksums.txt`](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.94.3/checksums.txt) · [signature bundle](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.94.3/checksums.txt.sigstore.json) · [Release notes](/changelog)

        Download, verify, and install (linux/amd64 shown — swap `chainloop-linux-amd64` for another row from the table above):

        ```bash theme={"dark"}
        VERSION=v1.94.3
        BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION

        # Download the linux/amd64 binary and the checksum manifest
        curl -fsSLO "$BASE/chainloop-linux-amd64"
        curl -fsSLO "$BASE/checksums.txt"

        # Download the signature bundle and confirm the manifest itself came from Chainloop's release pipeline
        curl -fsSLO "$BASE/checksums.txt.sigstore.json"
        cosign verify-blob   --bundle=checksums.txt.sigstore.json   --certificate-oidc-issuer="https://token.actions.githubusercontent.com"   --certificate-identity-regexp="^https://github.com/chainloop-dev/platform/.github/workflows/release_backend.yml@"   checksums.txt

        # Verify the binary against the manifest
        sha256sum --ignore-missing -c checksums.txt
        # on macOS: shasum -a 256 --ignore-missing -c checksums.txt

        # Install it onto your PATH
        chmod +x chainloop-linux-amd64
        sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
        ```
      </Accordion>

      <Accordion title="v1.94.1">
        | OS      | Architecture  | Download                                                                                                                                            | SHA256                                                             |
        | ------- | ------------- | --------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------ |
        | Linux   | Intel (amd64) | [chainloop-linux-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.94.1/chainloop-linux-amd64)             | `f1341f1146413e2cef68d92db6b63e6576e345d7406a1a75fe40f411aad2ab4c` |
        | Linux   | ARM64         | [chainloop-linux-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.94.1/chainloop-linux-arm64)             | `95d1473ff012f2abb542c21bb26411e486d767ca4c72e2337f312792ad361f25` |
        | macOS   | Intel (amd64) | [chainloop-darwin-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.94.1/chainloop-darwin-amd64)           | `77c4fa24c07c79f8b9a51961807544dc5fc737b465f32b375eef2dffe25ca56e` |
        | macOS   | Apple Silicon | [chainloop-darwin-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.94.1/chainloop-darwin-arm64)           | `364acb41ac244be4d85405884864fd028b3bc857369b5e6de3fa4f9d59a1b5ba` |
        | Windows | Intel (amd64) | [chainloop-windows-amd64.exe](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.94.1/chainloop-windows-amd64.exe) | `05ef69aa44da6a60d8a9014db6232ca7363968b79c12ede004f16cf083834d19` |
        | Windows | ARM64         | [chainloop-windows-arm64.exe](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.94.1/chainloop-windows-arm64.exe) | `b6939ca7e42db78c3f039aa21a858e77d4ce2e272adefe4761a6294bfb897ae5` |

        Full manifest: [`checksums.txt`](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.94.1/checksums.txt) · [signature bundle](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.94.1/checksums.txt.sigstore.json) · [Release notes](/changelog)

        Download, verify, and install (linux/amd64 shown — swap `chainloop-linux-amd64` for another row from the table above):

        ```bash theme={"dark"}
        VERSION=v1.94.1
        BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION

        # Download the linux/amd64 binary and the checksum manifest
        curl -fsSLO "$BASE/chainloop-linux-amd64"
        curl -fsSLO "$BASE/checksums.txt"

        # Download the signature bundle and confirm the manifest itself came from Chainloop's release pipeline
        curl -fsSLO "$BASE/checksums.txt.sigstore.json"
        cosign verify-blob   --bundle=checksums.txt.sigstore.json   --certificate-oidc-issuer="https://token.actions.githubusercontent.com"   --certificate-identity-regexp="^https://github.com/chainloop-dev/platform/.github/workflows/release_backend.yml@"   checksums.txt

        # Verify the binary against the manifest
        sha256sum --ignore-missing -c checksums.txt
        # on macOS: shasum -a 256 --ignore-missing -c checksums.txt

        # Install it onto your PATH
        chmod +x chainloop-linux-amd64
        sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
        ```
      </Accordion>

      <Accordion title="v1.94.0">
        | OS      | Architecture  | Download                                                                                                                                            | SHA256                                                             |
        | ------- | ------------- | --------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------ |
        | Linux   | Intel (amd64) | [chainloop-linux-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.94.0/chainloop-linux-amd64)             | `dc1c13edd917f8bff44f1e2ff8edb161e9b985dc9382e1db421bc31d318b9c50` |
        | Linux   | ARM64         | [chainloop-linux-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.94.0/chainloop-linux-arm64)             | `e8bd7b775f0310d3fcf1589f99fe6f888e8f76da1360180cb63f713b4dda6a2e` |
        | macOS   | Intel (amd64) | [chainloop-darwin-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.94.0/chainloop-darwin-amd64)           | `56f9b78180b6b6fd67b692a5a48dd900b71d9f4052e707cc497f800f8dbd90d3` |
        | macOS   | Apple Silicon | [chainloop-darwin-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.94.0/chainloop-darwin-arm64)           | `21fb953817b08dfaed3c9d412f464ae5dfaeca2cc4fda209fdb5bf3e0f5e9757` |
        | Windows | Intel (amd64) | [chainloop-windows-amd64.exe](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.94.0/chainloop-windows-amd64.exe) | `7e13fe2e8190ff2d817bc9bef0fd7e44b1f0e22f075abf336136cb409e839ef3` |
        | Windows | ARM64         | [chainloop-windows-arm64.exe](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.94.0/chainloop-windows-arm64.exe) | `d8f6fb5259107c62c571d8c7ee9a64ba97cb3d86efe27ea972c2c13a6b4b6277` |

        Full manifest: [`checksums.txt`](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.94.0/checksums.txt) · [signature bundle](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.94.0/checksums.txt.sigstore.json) · [Release notes](/changelog)

        Download, verify, and install (linux/amd64 shown — swap `chainloop-linux-amd64` for another row from the table above):

        ```bash theme={"dark"}
        VERSION=v1.94.0
        BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION

        # Download the linux/amd64 binary and the checksum manifest
        curl -fsSLO "$BASE/chainloop-linux-amd64"
        curl -fsSLO "$BASE/checksums.txt"

        # Download the signature bundle and confirm the manifest itself came from Chainloop's release pipeline
        curl -fsSLO "$BASE/checksums.txt.sigstore.json"
        cosign verify-blob   --bundle=checksums.txt.sigstore.json   --certificate-oidc-issuer="https://token.actions.githubusercontent.com"   --certificate-identity-regexp="^https://github.com/chainloop-dev/platform/.github/workflows/release_backend.yml@"   checksums.txt

        # Verify the binary against the manifest
        sha256sum --ignore-missing -c checksums.txt
        # on macOS: shasum -a 256 --ignore-missing -c checksums.txt

        # Install it onto your PATH
        chmod +x chainloop-linux-amd64
        sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
        ```
      </Accordion>

      <Accordion title="v1.93.3">
        | OS      | Architecture  | Download                                                                                                                                            | SHA256                                                             |
        | ------- | ------------- | --------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------ |
        | Linux   | Intel (amd64) | [chainloop-linux-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.93.3/chainloop-linux-amd64)             | `0b3e130d03e062f7302e8c4dd26b1b8c241fe192889ee5fecf3317d6813517b4` |
        | Linux   | ARM64         | [chainloop-linux-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.93.3/chainloop-linux-arm64)             | `9e87e22128e3c1f42ca20737294c91111e4bb14bad14f34563b1a92de9db5848` |
        | macOS   | Intel (amd64) | [chainloop-darwin-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.93.3/chainloop-darwin-amd64)           | `f97053291e1ab54d329db6c8dc45f160ba84d0c139761beffbac3dbd89649c7e` |
        | macOS   | Apple Silicon | [chainloop-darwin-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.93.3/chainloop-darwin-arm64)           | `960d4aba4f3abdc19dda7e4e31f7869b1425fdd0f3ccd6357a4562678138b5be` |
        | Windows | Intel (amd64) | [chainloop-windows-amd64.exe](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.93.3/chainloop-windows-amd64.exe) | `bda53353b7de53a4643ae6a6f85bef39f2f17169f9f4269257184a53c9f5ba19` |
        | Windows | ARM64         | [chainloop-windows-arm64.exe](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.93.3/chainloop-windows-arm64.exe) | `34040d9a99562d405dc0048612fd04f706672715bd1a72b257b28e1f05da1302` |

        Full manifest: [`checksums.txt`](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.93.3/checksums.txt) · [signature bundle](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.93.3/checksums.txt.sigstore.json) · [Release notes](/changelog)

        Download, verify, and install (linux/amd64 shown — swap `chainloop-linux-amd64` for another row from the table above):

        ```bash theme={"dark"}
        VERSION=v1.93.3
        BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION

        # Download the linux/amd64 binary and the checksum manifest
        curl -fsSLO "$BASE/chainloop-linux-amd64"
        curl -fsSLO "$BASE/checksums.txt"

        # Download the signature bundle and confirm the manifest itself came from Chainloop's release pipeline
        curl -fsSLO "$BASE/checksums.txt.sigstore.json"
        cosign verify-blob   --bundle=checksums.txt.sigstore.json   --certificate-oidc-issuer="https://token.actions.githubusercontent.com"   --certificate-identity-regexp="^https://github.com/chainloop-dev/platform/.github/workflows/release_backend.yml@"   checksums.txt

        # Verify the binary against the manifest
        sha256sum --ignore-missing -c checksums.txt
        # on macOS: shasum -a 256 --ignore-missing -c checksums.txt

        # Install it onto your PATH
        chmod +x chainloop-linux-amd64
        sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
        ```
      </Accordion>

      <Accordion title="v1.93.2">
        | OS      | Architecture  | Download                                                                                                                                            | SHA256                                                             |
        | ------- | ------------- | --------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------ |
        | Linux   | Intel (amd64) | [chainloop-linux-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.93.2/chainloop-linux-amd64)             | `6ddee8e992a80da14f99dddf6932312859d50950b7fae106665e088ccbafc602` |
        | Linux   | ARM64         | [chainloop-linux-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.93.2/chainloop-linux-arm64)             | `8e565824f996751b3a566a5dd8c176d098bc2df69da35a79ff4946362fa52f58` |
        | macOS   | Intel (amd64) | [chainloop-darwin-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.93.2/chainloop-darwin-amd64)           | `bcd5a521929103069c0fd34c03fdd99e98afc5f35de6bd78ae925134a432c996` |
        | macOS   | Apple Silicon | [chainloop-darwin-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.93.2/chainloop-darwin-arm64)           | `14bb715cf1c9ca1ca3a6cb293275c0aaf7f2ddf5c7a9b18bc29d488849edce01` |
        | Windows | Intel (amd64) | [chainloop-windows-amd64.exe](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.93.2/chainloop-windows-amd64.exe) | `13c82a41c810a4a57ee41cf673174a38b75740f2a5bccd58c1fde3359f9b9e44` |
        | Windows | ARM64         | [chainloop-windows-arm64.exe](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.93.2/chainloop-windows-arm64.exe) | `2aec01fe63580b8fc458d2b915cabf3d7310b6feca6425d0a3e99f2c7fa3c1de` |

        Full manifest: [`checksums.txt`](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.93.2/checksums.txt) · [signature bundle](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.93.2/checksums.txt.sigstore.json) · [Release notes](/changelog)

        Download, verify, and install (linux/amd64 shown — swap `chainloop-linux-amd64` for another row from the table above):

        ```bash theme={"dark"}
        VERSION=v1.93.2
        BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION

        # Download the linux/amd64 binary and the checksum manifest
        curl -fsSLO "$BASE/chainloop-linux-amd64"
        curl -fsSLO "$BASE/checksums.txt"

        # Download the signature bundle and confirm the manifest itself came from Chainloop's release pipeline
        curl -fsSLO "$BASE/checksums.txt.sigstore.json"
        cosign verify-blob   --bundle=checksums.txt.sigstore.json   --certificate-oidc-issuer="https://token.actions.githubusercontent.com"   --certificate-identity-regexp="^https://github.com/chainloop-dev/platform/.github/workflows/release_backend.yml@"   checksums.txt

        # Verify the binary against the manifest
        sha256sum --ignore-missing -c checksums.txt
        # on macOS: shasum -a 256 --ignore-missing -c checksums.txt

        # Install it onto your PATH
        chmod +x chainloop-linux-amd64
        sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
        ```
      </Accordion>

      <Accordion title="v1.93.1">
        | OS      | Architecture  | Download                                                                                                                                            | SHA256                                                             |
        | ------- | ------------- | --------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------ |
        | Linux   | Intel (amd64) | [chainloop-linux-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.93.1/chainloop-linux-amd64)             | `f1bb0f2817fb905c9e37de6073d0e2d7262e0b96bc491822d9375dac2b238d2f` |
        | Linux   | ARM64         | [chainloop-linux-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.93.1/chainloop-linux-arm64)             | `81ae973051af96a78b1d26dbfefa0a7ed8d119fe4115c4e6c6af66adf3934b9c` |
        | macOS   | Intel (amd64) | [chainloop-darwin-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.93.1/chainloop-darwin-amd64)           | `ed54a740d64ff01836cb5b65c53dbcf7aef34c85a9f649d647fe98f926bdc904` |
        | macOS   | Apple Silicon | [chainloop-darwin-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.93.1/chainloop-darwin-arm64)           | `6a5ecb886d0e949b9abf57a8f0df5b2a47ea4507d4ac49ab05f0f2a3514bdeec` |
        | Windows | Intel (amd64) | [chainloop-windows-amd64.exe](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.93.1/chainloop-windows-amd64.exe) | `427ef3535c75e8a05727a1641c0beb688be23e6e4db7fb2cd95a678d3dd061f2` |
        | Windows | ARM64         | [chainloop-windows-arm64.exe](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.93.1/chainloop-windows-arm64.exe) | `3a27afe8f276bb476fa1d6435f4753c18092a34773e5f66820593148d77ed195` |

        Full manifest: [`checksums.txt`](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.93.1/checksums.txt) · [signature bundle](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.93.1/checksums.txt.sigstore.json) · [Release notes](/changelog)

        Download, verify, and install (linux/amd64 shown — swap `chainloop-linux-amd64` for another row from the table above):

        ```bash theme={"dark"}
        VERSION=v1.93.1
        BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION

        # Download the linux/amd64 binary and the checksum manifest
        curl -fsSLO "$BASE/chainloop-linux-amd64"
        curl -fsSLO "$BASE/checksums.txt"

        # Download the signature bundle and confirm the manifest itself came from Chainloop's release pipeline
        curl -fsSLO "$BASE/checksums.txt.sigstore.json"
        cosign verify-blob   --bundle=checksums.txt.sigstore.json   --certificate-oidc-issuer="https://token.actions.githubusercontent.com"   --certificate-identity-regexp="^https://github.com/chainloop-dev/platform/.github/workflows/release_backend.yml@"   checksums.txt

        # Verify the binary against the manifest
        sha256sum --ignore-missing -c checksums.txt
        # on macOS: shasum -a 256 --ignore-missing -c checksums.txt

        # Install it onto your PATH
        chmod +x chainloop-linux-amd64
        sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
        ```
      </Accordion>

      <Accordion title="v1.93.0">
        | OS      | Architecture  | Download                                                                                                                                            | SHA256                                                             |
        | ------- | ------------- | --------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------ |
        | Linux   | Intel (amd64) | [chainloop-linux-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.93.0/chainloop-linux-amd64)             | `296085fe3309ad0cc30aad12b4315397faafb3d0cdf06da74756d04f4fd4e2c4` |
        | Linux   | ARM64         | [chainloop-linux-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.93.0/chainloop-linux-arm64)             | `8302749fe9fbd8fe539584bc0ac025cf51aa77de452ccc356d583cfd14e5f443` |
        | macOS   | Intel (amd64) | [chainloop-darwin-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.93.0/chainloop-darwin-amd64)           | `b1708f40d47e4a546665fb2e51703e6bc8ad0c1a6b805af1ac97a35aa3bce8c5` |
        | macOS   | Apple Silicon | [chainloop-darwin-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.93.0/chainloop-darwin-arm64)           | `e7dc9a041207a441fe7284e076315114ab0e7d41d1628aa592264ff19f647fcb` |
        | Windows | Intel (amd64) | [chainloop-windows-amd64.exe](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.93.0/chainloop-windows-amd64.exe) | `755ef043df8ccaed3d3381509e0c9ca2beb7ad19c5a129cca15a1074f48e85ad` |
        | Windows | ARM64         | [chainloop-windows-arm64.exe](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.93.0/chainloop-windows-arm64.exe) | `412bfae502e9fbe39686df4eaab85538acfef078a5f68802ca28bb3d897398cb` |

        Full manifest: [`checksums.txt`](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.93.0/checksums.txt) · [signature bundle](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.93.0/checksums.txt.sigstore.json) · [Release notes](/changelog)

        Download, verify, and install (linux/amd64 shown — swap `chainloop-linux-amd64` for another row from the table above):

        ```bash theme={"dark"}
        VERSION=v1.93.0
        BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION

        # Download the linux/amd64 binary and the checksum manifest
        curl -fsSLO "$BASE/chainloop-linux-amd64"
        curl -fsSLO "$BASE/checksums.txt"

        # Download the signature bundle and confirm the manifest itself came from Chainloop's release pipeline
        curl -fsSLO "$BASE/checksums.txt.sigstore.json"
        cosign verify-blob   --bundle=checksums.txt.sigstore.json   --certificate-oidc-issuer="https://token.actions.githubusercontent.com"   --certificate-identity-regexp="^https://github.com/chainloop-dev/platform/.github/workflows/release_backend.yml@"   checksums.txt

        # Verify the binary against the manifest
        sha256sum --ignore-missing -c checksums.txt
        # on macOS: shasum -a 256 --ignore-missing -c checksums.txt

        # Install it onto your PATH
        chmod +x chainloop-linux-amd64
        sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
        ```
      </Accordion>

      <Accordion title="v1.92.0">
        | OS      | Architecture  | Download                                                                                                                                            | SHA256                                                             |
        | ------- | ------------- | --------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------ |
        | Linux   | Intel (amd64) | [chainloop-linux-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.92.0/chainloop-linux-amd64)             | `272c85514d67311a9aff96f4703e0c77d0b40a96246aac8cc3069636b1f714ef` |
        | Linux   | ARM64         | [chainloop-linux-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.92.0/chainloop-linux-arm64)             | `4bc218bf94d56cf50c3a841dad2add3822ba6571b7c8a59205dee7e2e4b51706` |
        | macOS   | Intel (amd64) | [chainloop-darwin-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.92.0/chainloop-darwin-amd64)           | `bc83c170e20cad6ecf1e02f844c97fa8c1b38812284e627291e3930f601ba247` |
        | macOS   | Apple Silicon | [chainloop-darwin-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.92.0/chainloop-darwin-arm64)           | `517561ffd0fac60f20c9ebf53577703dcb2ff775d5eba68c3c3d4dc81a007198` |
        | Windows | Intel (amd64) | [chainloop-windows-amd64.exe](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.92.0/chainloop-windows-amd64.exe) | `2206c77b7f5ec25e2c55af3e6337f2f4eeacfb659324d7d71fc545267a954081` |
        | Windows | ARM64         | [chainloop-windows-arm64.exe](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.92.0/chainloop-windows-arm64.exe) | `1f235ba6a41a109e3adff44e02a76663c59b045a16cba44415b993d40c85d36f` |

        Full manifest: [`checksums.txt`](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.92.0/checksums.txt) · [signature bundle](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.92.0/checksums.txt.sigstore.json) · [Release notes](/changelog)

        Download, verify, and install (linux/amd64 shown — swap `chainloop-linux-amd64` for another row from the table above):

        ```bash theme={"dark"}
        VERSION=v1.92.0
        BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION

        # Download the linux/amd64 binary and the checksum manifest
        curl -fsSLO "$BASE/chainloop-linux-amd64"
        curl -fsSLO "$BASE/checksums.txt"

        # Download the signature bundle and confirm the manifest itself came from Chainloop's release pipeline
        curl -fsSLO "$BASE/checksums.txt.sigstore.json"
        cosign verify-blob   --bundle=checksums.txt.sigstore.json   --certificate-oidc-issuer="https://token.actions.githubusercontent.com"   --certificate-identity-regexp="^https://github.com/chainloop-dev/platform/.github/workflows/release_backend.yml@"   checksums.txt

        # Verify the binary against the manifest
        sha256sum --ignore-missing -c checksums.txt
        # on macOS: shasum -a 256 --ignore-missing -c checksums.txt

        # Install it onto your PATH
        chmod +x chainloop-linux-amd64
        sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
        ```
      </Accordion>

      <Accordion title="v1.91.0">
        | OS      | Architecture  | Download                                                                                                                                            | SHA256                                                             |
        | ------- | ------------- | --------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------ |
        | Linux   | Intel (amd64) | [chainloop-linux-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.91.0/chainloop-linux-amd64)             | `c7a2e420aa29817e22658666fed95b43fe053dbc39e686ccc3008bfda69119d1` |
        | Linux   | ARM64         | [chainloop-linux-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.91.0/chainloop-linux-arm64)             | `4fed31def8785eda5ca78c9f78d1c01a9be6bf7bb3f2a0c75a6bdd115c11aafc` |
        | macOS   | Intel (amd64) | [chainloop-darwin-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.91.0/chainloop-darwin-amd64)           | `a3d9f10a18d6ab9e60d4f66581d44071369c38ee3fb95968c3170fd9c38834a7` |
        | macOS   | Apple Silicon | [chainloop-darwin-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.91.0/chainloop-darwin-arm64)           | `b6423b83d6556c8bc3dec0e7af61cc1f2d8931267896555ee386df185c9ee6e6` |
        | Windows | Intel (amd64) | [chainloop-windows-amd64.exe](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.91.0/chainloop-windows-amd64.exe) | `21ca6addcbec800235911427abf4e8f3c59df2b47ef2c03fa008df7c6f65936f` |
        | Windows | ARM64         | [chainloop-windows-arm64.exe](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.91.0/chainloop-windows-arm64.exe) | `89ac8e16f52ef49519ba055edfe962f9ed4d6e552bd75dd7d36e1ecfa223048c` |

        Full manifest: [`checksums.txt`](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.91.0/checksums.txt) · [signature bundle](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.91.0/checksums.txt.sigstore.json) · [Release notes](/changelog)

        Download, verify, and install (linux/amd64 shown — swap `chainloop-linux-amd64` for another row from the table above):

        ```bash theme={"dark"}
        VERSION=v1.91.0
        BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION

        # Download the linux/amd64 binary and the checksum manifest
        curl -fsSLO "$BASE/chainloop-linux-amd64"
        curl -fsSLO "$BASE/checksums.txt"

        # Download the signature bundle and confirm the manifest itself came from Chainloop's release pipeline
        curl -fsSLO "$BASE/checksums.txt.sigstore.json"
        cosign verify-blob   --bundle=checksums.txt.sigstore.json   --certificate-oidc-issuer="https://token.actions.githubusercontent.com"   --certificate-identity-regexp="^https://github.com/chainloop-dev/platform/.github/workflows/release_backend.yml@"   checksums.txt

        # Verify the binary against the manifest
        sha256sum --ignore-missing -c checksums.txt
        # on macOS: shasum -a 256 --ignore-missing -c checksums.txt

        # Install it onto your PATH
        chmod +x chainloop-linux-amd64
        sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
        ```
      </Accordion>

      <Accordion title="v1.90.6">
        | OS      | Architecture  | Download                                                                                                                                            | SHA256                                                             |
        | ------- | ------------- | --------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------ |
        | Linux   | Intel (amd64) | [chainloop-linux-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.90.6/chainloop-linux-amd64)             | `cb0908f4ed546cafa51c6458175aa4e66af2ede22ed1ccb1b6348ffb2f70f05e` |
        | Linux   | ARM64         | [chainloop-linux-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.90.6/chainloop-linux-arm64)             | `dc8e55a534b64a090a5807a55309eb233404bc175609971b1822da4131625ae4` |
        | macOS   | Intel (amd64) | [chainloop-darwin-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.90.6/chainloop-darwin-amd64)           | `5ae1dbce4bae6ca3d13709c5feb2254d9152aeff83ca728b2ddc868a54729a73` |
        | macOS   | Apple Silicon | [chainloop-darwin-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.90.6/chainloop-darwin-arm64)           | `5db497c61bb81f41cd2b166e7fb29dd815abbb4a83c27b84a694db760acde520` |
        | Windows | Intel (amd64) | [chainloop-windows-amd64.exe](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.90.6/chainloop-windows-amd64.exe) | `7deca991fbde3bb4a17609aaa5f3a1371a5eccacae6626a8015e809d2e59fcd0` |
        | Windows | ARM64         | [chainloop-windows-arm64.exe](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.90.6/chainloop-windows-arm64.exe) | `830be654cd27e264f11ac391eb2f38caa9fe913dd7a4c4e6bdad24ab605f56d2` |

        Full manifest: [`checksums.txt`](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.90.6/checksums.txt) · [signature bundle](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.90.6/checksums.txt.sigstore.json) · [Release notes](/changelog)

        Download, verify, and install (linux/amd64 shown — swap `chainloop-linux-amd64` for another row from the table above):

        ```bash theme={"dark"}
        VERSION=v1.90.6
        BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION

        # Download the linux/amd64 binary and the checksum manifest
        curl -fsSLO "$BASE/chainloop-linux-amd64"
        curl -fsSLO "$BASE/checksums.txt"

        # Download the signature bundle and confirm the manifest itself came from Chainloop's release pipeline
        curl -fsSLO "$BASE/checksums.txt.sigstore.json"
        cosign verify-blob   --bundle=checksums.txt.sigstore.json   --certificate-oidc-issuer="https://token.actions.githubusercontent.com"   --certificate-identity-regexp="^https://github.com/chainloop-dev/platform/.github/workflows/release_backend.yml@"   checksums.txt

        # Verify the binary against the manifest
        sha256sum --ignore-missing -c checksums.txt
        # on macOS: shasum -a 256 --ignore-missing -c checksums.txt

        # Install it onto your PATH
        chmod +x chainloop-linux-amd64
        sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
        ```
      </Accordion>

      <Accordion title="v1.90.5">
        | OS      | Architecture  | Download                                                                                                                                            | SHA256                                                             |
        | ------- | ------------- | --------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------ |
        | Linux   | Intel (amd64) | [chainloop-linux-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.90.5/chainloop-linux-amd64)             | `5da5c6f7470e66e80cea9e8fabdad9ab76993e13ff716419d99ea5b8f10654ff` |
        | Linux   | ARM64         | [chainloop-linux-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.90.5/chainloop-linux-arm64)             | `4066553d1211bc21738c81c5013cf5125268455040ebd08a0cd880b36bbbc313` |
        | macOS   | Intel (amd64) | [chainloop-darwin-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.90.5/chainloop-darwin-amd64)           | `947416c22b31f8597a930fd7d1cdae7146c3bfdf7b111c10a7a1ab5b32e61758` |
        | macOS   | Apple Silicon | [chainloop-darwin-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.90.5/chainloop-darwin-arm64)           | `7beb754f4efe4b22e927507497f320d362da44356a7fc556051b3d1d21f82457` |
        | Windows | Intel (amd64) | [chainloop-windows-amd64.exe](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.90.5/chainloop-windows-amd64.exe) | `b5bcb659fe39210cabf66ceb87b9dfb1b2028988f847113c99b278f7d452ef66` |
        | Windows | ARM64         | [chainloop-windows-arm64.exe](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.90.5/chainloop-windows-arm64.exe) | `9de32a3c63eb076925593dae34b87a87674306a9168119ee747753a4c9de2ea9` |

        Full manifest: [`checksums.txt`](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.90.5/checksums.txt) · [signature bundle](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.90.5/checksums.txt.sigstore.json) · [Release notes](/changelog)

        Download, verify, and install (linux/amd64 shown — swap `chainloop-linux-amd64` for another row from the table above):

        ```bash theme={"dark"}
        VERSION=v1.90.5
        BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION

        # Download the linux/amd64 binary and the checksum manifest
        curl -fsSLO "$BASE/chainloop-linux-amd64"
        curl -fsSLO "$BASE/checksums.txt"

        # Download the signature bundle and confirm the manifest itself came from Chainloop's release pipeline
        curl -fsSLO "$BASE/checksums.txt.sigstore.json"
        cosign verify-blob   --bundle=checksums.txt.sigstore.json   --certificate-oidc-issuer="https://token.actions.githubusercontent.com"   --certificate-identity-regexp="^https://github.com/chainloop-dev/platform/.github/workflows/release_backend.yml@"   checksums.txt

        # Verify the binary against the manifest
        sha256sum --ignore-missing -c checksums.txt
        # on macOS: shasum -a 256 --ignore-missing -c checksums.txt

        # Install it onto your PATH
        chmod +x chainloop-linux-amd64
        sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
        ```
      </Accordion>

      <Accordion title="v1.90.4">
        | OS      | Architecture  | Download                                                                                                                                            | SHA256                                                             |
        | ------- | ------------- | --------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------ |
        | Linux   | Intel (amd64) | [chainloop-linux-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.90.4/chainloop-linux-amd64)             | `f700958f434845968d60090cf86d910c5a3b2c2c243b1006da845ccbe96a9d3c` |
        | Linux   | ARM64         | [chainloop-linux-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.90.4/chainloop-linux-arm64)             | `1d141099252feee0460bdeb9364bd59acb3c91786842ea84803a8ddbbf008b9c` |
        | macOS   | Intel (amd64) | [chainloop-darwin-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.90.4/chainloop-darwin-amd64)           | `fb173fbc5ecb1924adf15436e67d14d40e1f65e41b1e21a5f2bfc44a945480cf` |
        | macOS   | Apple Silicon | [chainloop-darwin-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.90.4/chainloop-darwin-arm64)           | `c52f3e99abd184a85ad818bf31bf46508655952dbb0aff57678e64153614c634` |
        | Windows | Intel (amd64) | [chainloop-windows-amd64.exe](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.90.4/chainloop-windows-amd64.exe) | `cee322da4fe1331f035d71616e8615aa9aab003c639770925c49131298d93157` |
        | Windows | ARM64         | [chainloop-windows-arm64.exe](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.90.4/chainloop-windows-arm64.exe) | `419633745760e3f96efd05e8afa1de14e6dbacdd4deb3300971b1e69f18ddf04` |

        Full manifest: [`checksums.txt`](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.90.4/checksums.txt) · [signature bundle](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.90.4/checksums.txt.sigstore.json) · [Release notes](/changelog)

        Download, verify, and install (linux/amd64 shown — swap `chainloop-linux-amd64` for another row from the table above):

        ```bash theme={"dark"}
        VERSION=v1.90.4
        BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION

        # Download the linux/amd64 binary and the checksum manifest
        curl -fsSLO "$BASE/chainloop-linux-amd64"
        curl -fsSLO "$BASE/checksums.txt"

        # Download the signature bundle and confirm the manifest itself came from Chainloop's release pipeline
        curl -fsSLO "$BASE/checksums.txt.sigstore.json"
        cosign verify-blob   --bundle=checksums.txt.sigstore.json   --certificate-oidc-issuer="https://token.actions.githubusercontent.com"   --certificate-identity-regexp="^https://github.com/chainloop-dev/platform/.github/workflows/release_backend.yml@"   checksums.txt

        # Verify the binary against the manifest
        sha256sum --ignore-missing -c checksums.txt
        # on macOS: shasum -a 256 --ignore-missing -c checksums.txt

        # Install it onto your PATH
        chmod +x chainloop-linux-amd64
        sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
        ```
      </Accordion>

      <Accordion title="v1.90.3">
        | OS      | Architecture  | Download                                                                                                                                            | SHA256                                                             |
        | ------- | ------------- | --------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------ |
        | Linux   | Intel (amd64) | [chainloop-linux-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.90.3/chainloop-linux-amd64)             | `04fe0b7844595ca88d7bac545fb1021b227a4f2fdfa8b9b7df8646250e3c06e3` |
        | Linux   | ARM64         | [chainloop-linux-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.90.3/chainloop-linux-arm64)             | `2395dd36b84b6d8791203cbf816adcdee4a0c3a234c65afd2c7fcd3f9b7ba7a4` |
        | macOS   | Intel (amd64) | [chainloop-darwin-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.90.3/chainloop-darwin-amd64)           | `ec5f1f5614c47c561c2fc19638d7ebb67e063350e66f21103d7e488a87b48584` |
        | macOS   | Apple Silicon | [chainloop-darwin-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.90.3/chainloop-darwin-arm64)           | `e362f6d75d55aa0d1fcc75a61c320cdbb41925ad66d7ab1ab783446c7c8e6ab7` |
        | Windows | Intel (amd64) | [chainloop-windows-amd64.exe](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.90.3/chainloop-windows-amd64.exe) | `dc0ad638d47d21167a1bddb9068c5de2990ba09371cb3e833a6a2a0de87df04d` |
        | Windows | ARM64         | [chainloop-windows-arm64.exe](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.90.3/chainloop-windows-arm64.exe) | `850fa897a5c0cec83a40c9307e46a2495a54aa30d4bc1f715fc44367017eabf4` |

        Full manifest: [`checksums.txt`](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.90.3/checksums.txt) · [signature bundle](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.90.3/checksums.txt.sigstore.json) · [Release notes](/changelog)

        Download, verify, and install (linux/amd64 shown — swap `chainloop-linux-amd64` for another row from the table above):

        ```bash theme={"dark"}
        VERSION=v1.90.3
        BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION

        # Download the linux/amd64 binary and the checksum manifest
        curl -fsSLO "$BASE/chainloop-linux-amd64"
        curl -fsSLO "$BASE/checksums.txt"

        # Download the signature bundle and confirm the manifest itself came from Chainloop's release pipeline
        curl -fsSLO "$BASE/checksums.txt.sigstore.json"
        cosign verify-blob   --bundle=checksums.txt.sigstore.json   --certificate-oidc-issuer="https://token.actions.githubusercontent.com"   --certificate-identity-regexp="^https://github.com/chainloop-dev/platform/.github/workflows/release_backend.yml@"   checksums.txt

        # Verify the binary against the manifest
        sha256sum --ignore-missing -c checksums.txt
        # on macOS: shasum -a 256 --ignore-missing -c checksums.txt

        # Install it onto your PATH
        chmod +x chainloop-linux-amd64
        sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
        ```
      </Accordion>

      <Accordion title="v1.90.2">
        | OS      | Architecture  | Download                                                                                                                                            | SHA256                                                             |
        | ------- | ------------- | --------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------ |
        | Linux   | Intel (amd64) | [chainloop-linux-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.90.2/chainloop-linux-amd64)             | `802faae7ec882a0afcd31a7c33b7cc21407765091eb3ffa3cb594f1b92e37e38` |
        | Linux   | ARM64         | [chainloop-linux-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.90.2/chainloop-linux-arm64)             | `0dafc6b6f22f27e77f2f9592f88e5564c504d24bcf0a54a70ed836a8d59bd5b4` |
        | macOS   | Intel (amd64) | [chainloop-darwin-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.90.2/chainloop-darwin-amd64)           | `27a3fb725bad5be9f4ec83c4f51f263d25ebd5f447a7acde6acbb8ea81b5c145` |
        | macOS   | Apple Silicon | [chainloop-darwin-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.90.2/chainloop-darwin-arm64)           | `51f05de6cbcdcc293e87b632f6924ae35f3f1eb43f7844dd0fadc76c4d66d36e` |
        | Windows | Intel (amd64) | [chainloop-windows-amd64.exe](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.90.2/chainloop-windows-amd64.exe) | `3d74e58923b35099d80a70060accdaba928131b669ebb53da0cfca8057d36264` |
        | Windows | ARM64         | [chainloop-windows-arm64.exe](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.90.2/chainloop-windows-arm64.exe) | `bcc0d6b4a924207a9248d8e796199664c325c58db9f5cfad5fc3e7a5c2f8bd60` |

        Full manifest: [`checksums.txt`](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.90.2/checksums.txt) · [signature bundle](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.90.2/checksums.txt.sigstore.json) · [Release notes](/changelog)

        Download, verify, and install (linux/amd64 shown — swap `chainloop-linux-amd64` for another row from the table above):

        ```bash theme={"dark"}
        VERSION=v1.90.2
        BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION

        # Download the linux/amd64 binary and the checksum manifest
        curl -fsSLO "$BASE/chainloop-linux-amd64"
        curl -fsSLO "$BASE/checksums.txt"

        # Download the signature bundle and confirm the manifest itself came from Chainloop's release pipeline
        curl -fsSLO "$BASE/checksums.txt.sigstore.json"
        cosign verify-blob   --bundle=checksums.txt.sigstore.json   --certificate-oidc-issuer="https://token.actions.githubusercontent.com"   --certificate-identity-regexp="^https://github.com/chainloop-dev/platform/.github/workflows/release_backend.yml@"   checksums.txt

        # Verify the binary against the manifest
        sha256sum --ignore-missing -c checksums.txt
        # on macOS: shasum -a 256 --ignore-missing -c checksums.txt

        # Install it onto your PATH
        chmod +x chainloop-linux-amd64
        sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
        ```
      </Accordion>

      <Accordion title="v1.90.1">
        | OS      | Architecture  | Download                                                                                                                                            | SHA256                                                             |
        | ------- | ------------- | --------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------ |
        | Linux   | Intel (amd64) | [chainloop-linux-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.90.1/chainloop-linux-amd64)             | `f5bfe74350758daa0f7fcd0b4b5d34f7561a54ee46ed7f2bfe2e602183f89a60` |
        | Linux   | ARM64         | [chainloop-linux-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.90.1/chainloop-linux-arm64)             | `2265eb219a674c7d4c81e5dd91195afc06b96a57f85b94f64b4a4ba8fb524aa5` |
        | macOS   | Intel (amd64) | [chainloop-darwin-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.90.1/chainloop-darwin-amd64)           | `b576fdd651e02d0f9e0969788cd2b405c122f03117ca40f03f173bfaba6d7754` |
        | macOS   | Apple Silicon | [chainloop-darwin-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.90.1/chainloop-darwin-arm64)           | `ca477e2afbbe2c8488653a184fb4ac20a8d06a939d1ca5c22ac223d42d3eba9b` |
        | Windows | Intel (amd64) | [chainloop-windows-amd64.exe](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.90.1/chainloop-windows-amd64.exe) | `7f42b4e83e9cc03aada8cc645ee311bdfecb27994819b0632b1c88ea4074d66a` |
        | Windows | ARM64         | [chainloop-windows-arm64.exe](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.90.1/chainloop-windows-arm64.exe) | `4318aaea59d4eb8aa96f03d75d520341206d3deef6275462b1c4e3383d668c10` |

        Full manifest: [`checksums.txt`](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.90.1/checksums.txt) · [signature bundle](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.90.1/checksums.txt.sigstore.json) · [Release notes](/changelog)

        Download, verify, and install (linux/amd64 shown — swap `chainloop-linux-amd64` for another row from the table above):

        ```bash theme={"dark"}
        VERSION=v1.90.1
        BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION

        # Download the linux/amd64 binary and the checksum manifest
        curl -fsSLO "$BASE/chainloop-linux-amd64"
        curl -fsSLO "$BASE/checksums.txt"

        # Download the signature bundle and confirm the manifest itself came from Chainloop's release pipeline
        curl -fsSLO "$BASE/checksums.txt.sigstore.json"
        cosign verify-blob   --bundle=checksums.txt.sigstore.json   --certificate-oidc-issuer="https://token.actions.githubusercontent.com"   --certificate-identity-regexp="^https://github.com/chainloop-dev/platform/.github/workflows/release_backend.yml@"   checksums.txt

        # Verify the binary against the manifest
        sha256sum --ignore-missing -c checksums.txt
        # on macOS: shasum -a 256 --ignore-missing -c checksums.txt

        # Install it onto your PATH
        chmod +x chainloop-linux-amd64
        sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
        ```
      </Accordion>

      <Accordion title="v1.90.0">
        | OS      | Architecture  | Download                                                                                                                                            | SHA256                                                             |
        | ------- | ------------- | --------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------ |
        | Linux   | Intel (amd64) | [chainloop-linux-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.90.0/chainloop-linux-amd64)             | `34f1a1ac189d7b3eeaff4b9fd669c806f4f7cddf95e92087ec6a382b253007b1` |
        | Linux   | ARM64         | [chainloop-linux-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.90.0/chainloop-linux-arm64)             | `6660f64fb170e4502777b726148f62fb797b4127a2b636f9112984ea0d36fd60` |
        | macOS   | Intel (amd64) | [chainloop-darwin-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.90.0/chainloop-darwin-amd64)           | `81dec5662f435b8c93dd2ae53f6f864451693902def27600b3b5757c6931ba7a` |
        | macOS   | Apple Silicon | [chainloop-darwin-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.90.0/chainloop-darwin-arm64)           | `396241942f4ecbe021772dd6bb2a4580a7f5631104f644b8107e1d7373bc67a7` |
        | Windows | Intel (amd64) | [chainloop-windows-amd64.exe](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.90.0/chainloop-windows-amd64.exe) | `276ba3a33d6b6e9559b8afae5ff0ca900dcacaafb7f1fe9f4219565ee8bc5847` |
        | Windows | ARM64         | [chainloop-windows-arm64.exe](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.90.0/chainloop-windows-arm64.exe) | `fef82536eea04c99ce5b0630ea48e11672fbe7ada01911f24047e48122ce678b` |

        Full manifest: [`checksums.txt`](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.90.0/checksums.txt) · [signature bundle](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.90.0/checksums.txt.sigstore.json) · [Release notes](/changelog)

        Download, verify, and install (linux/amd64 shown — swap `chainloop-linux-amd64` for another row from the table above):

        ```bash theme={"dark"}
        VERSION=v1.90.0
        BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION

        # Download the linux/amd64 binary and the checksum manifest
        curl -fsSLO "$BASE/chainloop-linux-amd64"
        curl -fsSLO "$BASE/checksums.txt"

        # Download the signature bundle and confirm the manifest itself came from Chainloop's release pipeline
        curl -fsSLO "$BASE/checksums.txt.sigstore.json"
        cosign verify-blob   --bundle=checksums.txt.sigstore.json   --certificate-oidc-issuer="https://token.actions.githubusercontent.com"   --certificate-identity-regexp="^https://github.com/chainloop-dev/platform/.github/workflows/release_backend.yml@"   checksums.txt

        # Verify the binary against the manifest
        sha256sum --ignore-missing -c checksums.txt
        # on macOS: shasum -a 256 --ignore-missing -c checksums.txt

        # Install it onto your PATH
        chmod +x chainloop-linux-amd64
        sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
        ```
      </Accordion>

      <Accordion title="v1.89.1">
        | OS      | Architecture  | Download                                                                                                                                            | SHA256                                                             |
        | ------- | ------------- | --------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------ |
        | Linux   | Intel (amd64) | [chainloop-linux-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.89.1/chainloop-linux-amd64)             | `121a78e3dd13e5f3c088f64cfac14f7e1a00e3937923d2ac0613a4a1474e6fbc` |
        | Linux   | ARM64         | [chainloop-linux-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.89.1/chainloop-linux-arm64)             | `6d6435be2383459283cb1bfe8b87bba63456e4dde8ba34d584789a4571d69cc9` |
        | macOS   | Intel (amd64) | [chainloop-darwin-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.89.1/chainloop-darwin-amd64)           | `65629458205970c6b632fd7d79ebc8eed646bba4db33f07300d61e6a0dcbe047` |
        | macOS   | Apple Silicon | [chainloop-darwin-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.89.1/chainloop-darwin-arm64)           | `7f18fb43946c874059c46eebe01abc29b2bb434c9657558b99bc64650bf90d8e` |
        | Windows | Intel (amd64) | [chainloop-windows-amd64.exe](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.89.1/chainloop-windows-amd64.exe) | `c413fce321641d87295943d04d6fa14006b516a7a0b63b5fd0f65a999139cddd` |
        | Windows | ARM64         | [chainloop-windows-arm64.exe](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.89.1/chainloop-windows-arm64.exe) | `e719c86be9f34ee811f7b3478b177900829b7d1c0b15b78962e1a2d020326243` |

        Full manifest: [`checksums.txt`](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.89.1/checksums.txt) · [signature bundle](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.89.1/checksums.txt.sigstore.json) · [Release notes](/changelog)

        Download, verify, and install (linux/amd64 shown — swap `chainloop-linux-amd64` for another row from the table above):

        ```bash theme={"dark"}
        VERSION=v1.89.1
        BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION

        # Download the linux/amd64 binary and the checksum manifest
        curl -fsSLO "$BASE/chainloop-linux-amd64"
        curl -fsSLO "$BASE/checksums.txt"

        # Download the signature bundle and confirm the manifest itself came from Chainloop's release pipeline
        curl -fsSLO "$BASE/checksums.txt.sigstore.json"
        cosign verify-blob   --bundle=checksums.txt.sigstore.json   --certificate-oidc-issuer="https://token.actions.githubusercontent.com"   --certificate-identity-regexp="^https://github.com/chainloop-dev/platform/.github/workflows/release_backend.yml@"   checksums.txt

        # Verify the binary against the manifest
        sha256sum --ignore-missing -c checksums.txt
        # on macOS: shasum -a 256 --ignore-missing -c checksums.txt

        # Install it onto your PATH
        chmod +x chainloop-linux-amd64
        sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
        ```
      </Accordion>

      <Accordion title="v1.89.0">
        | OS      | Architecture  | Download                                                                                                                                            | SHA256                                                             |
        | ------- | ------------- | --------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------ |
        | Linux   | Intel (amd64) | [chainloop-linux-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.89.0/chainloop-linux-amd64)             | `f7198796b8becc23914685184e22fa4e5f42e61824dfd84befdad4fa0e3f3d07` |
        | Linux   | ARM64         | [chainloop-linux-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.89.0/chainloop-linux-arm64)             | `60f146fe1fd8b8b25de4e11854baa01f7cf6ad8c54b9b6c5e6f06dd35ea2a45f` |
        | macOS   | Intel (amd64) | [chainloop-darwin-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.89.0/chainloop-darwin-amd64)           | `92ca5a5f68a3797a789e448e7aadbbed7332ad74daca0e9969f59a20fafad30e` |
        | macOS   | Apple Silicon | [chainloop-darwin-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.89.0/chainloop-darwin-arm64)           | `af4a6f0153a250601e3e3a4bb92c35917eb43d442bb657285bbbe31046b680cf` |
        | Windows | Intel (amd64) | [chainloop-windows-amd64.exe](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.89.0/chainloop-windows-amd64.exe) | `c78ddd1fad35d83357aedddbdd332318872709167c0cd6ed5ab7eb474366a7b5` |
        | Windows | ARM64         | [chainloop-windows-arm64.exe](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.89.0/chainloop-windows-arm64.exe) | `041780cf2576a48dd0ef9f19a8f5b61667ec6c06e07e28a0b0997075a11d3518` |

        Full manifest: [`checksums.txt`](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.89.0/checksums.txt) · [signature bundle](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.89.0/checksums.txt.sigstore.json) · [Release notes](/changelog)

        Download, verify, and install (linux/amd64 shown — swap `chainloop-linux-amd64` for another row from the table above):

        ```bash theme={"dark"}
        VERSION=v1.89.0
        BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION

        # Download the linux/amd64 binary and the checksum manifest
        curl -fsSLO "$BASE/chainloop-linux-amd64"
        curl -fsSLO "$BASE/checksums.txt"

        # Download the signature bundle and confirm the manifest itself came from Chainloop's release pipeline
        curl -fsSLO "$BASE/checksums.txt.sigstore.json"
        cosign verify-blob   --bundle=checksums.txt.sigstore.json   --certificate-oidc-issuer="https://token.actions.githubusercontent.com"   --certificate-identity-regexp="^https://github.com/chainloop-dev/platform/.github/workflows/release_backend.yml@"   checksums.txt

        # Verify the binary against the manifest
        sha256sum --ignore-missing -c checksums.txt
        # on macOS: shasum -a 256 --ignore-missing -c checksums.txt

        # Install it onto your PATH
        chmod +x chainloop-linux-amd64
        sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
        ```
      </Accordion>

      <Accordion title="v1.88.11">
        | OS      | Architecture  | Download                                                                                                                                             | SHA256                                                             |
        | ------- | ------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------ |
        | Linux   | Intel (amd64) | [chainloop-linux-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.88.11/chainloop-linux-amd64)             | `8f53bf6a8c3bc76f80826179e4bfff03e9f4499a0b14c3603ebac7a3132cd105` |
        | Linux   | ARM64         | [chainloop-linux-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.88.11/chainloop-linux-arm64)             | `8f871a1f2b33f94bc0a599c9f8e0e092960b2f7910cd30697df789af947ae588` |
        | macOS   | Intel (amd64) | [chainloop-darwin-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.88.11/chainloop-darwin-amd64)           | `982984bc9d276802cd7fba8a48742107ffa946a89aa617809c61db66019d2590` |
        | macOS   | Apple Silicon | [chainloop-darwin-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.88.11/chainloop-darwin-arm64)           | `ce740348a6940f74e3d6952bcd608405b094d39daacf862bd821fe50cfecbd8f` |
        | Windows | Intel (amd64) | [chainloop-windows-amd64.exe](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.88.11/chainloop-windows-amd64.exe) | `9685caecb81ccdea4640cadc6f4074950bd6fd0847755d297c250dfb22911b6c` |
        | Windows | ARM64         | [chainloop-windows-arm64.exe](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.88.11/chainloop-windows-arm64.exe) | `b5f45d602931f98adec4ba72d92a03acc1eda51ae5a3f62d053fa7342a71077a` |

        Full manifest: [`checksums.txt`](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.88.11/checksums.txt) · [signature bundle](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.88.11/checksums.txt.sigstore.json) · [Release notes](/changelog)

        Download, verify, and install (linux/amd64 shown — swap `chainloop-linux-amd64` for another row from the table above):

        ```bash theme={"dark"}
        VERSION=v1.88.11
        BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION

        # Download the linux/amd64 binary and the checksum manifest
        curl -fsSLO "$BASE/chainloop-linux-amd64"
        curl -fsSLO "$BASE/checksums.txt"

        # Download the signature bundle and confirm the manifest itself came from Chainloop's release pipeline
        curl -fsSLO "$BASE/checksums.txt.sigstore.json"
        cosign verify-blob   --bundle=checksums.txt.sigstore.json   --certificate-oidc-issuer="https://token.actions.githubusercontent.com"   --certificate-identity-regexp="^https://github.com/chainloop-dev/platform/.github/workflows/release_backend.yml@"   checksums.txt

        # Verify the binary against the manifest
        sha256sum --ignore-missing -c checksums.txt
        # on macOS: shasum -a 256 --ignore-missing -c checksums.txt

        # Install it onto your PATH
        chmod +x chainloop-linux-amd64
        sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
        ```
      </Accordion>

      <Accordion title="v1.88.10">
        | OS      | Architecture  | Download                                                                                                                                             | SHA256                                                             |
        | ------- | ------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------ |
        | Linux   | Intel (amd64) | [chainloop-linux-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.88.10/chainloop-linux-amd64)             | `4ec7d9201bc6bf8baf07c0d550b8cbac0fe4adf013004103d4b0f0d667aa04d4` |
        | Linux   | ARM64         | [chainloop-linux-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.88.10/chainloop-linux-arm64)             | `86b486bde4c1cac209ccdffc14a30b1c1b9aa5f49e2681d2e2a0ef265b3ec67a` |
        | macOS   | Intel (amd64) | [chainloop-darwin-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.88.10/chainloop-darwin-amd64)           | `6ef05f8a9739c7c0edcb10c8ef64e76f3c6df0974d525790a593e63b7971298f` |
        | macOS   | Apple Silicon | [chainloop-darwin-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.88.10/chainloop-darwin-arm64)           | `bd368ca6081ae26ce1346af900625c3c25b85fe2dd081f528130b10a41b7073d` |
        | Windows | Intel (amd64) | [chainloop-windows-amd64.exe](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.88.10/chainloop-windows-amd64.exe) | `f14418d9e46efe39df4ca0cde4e9e9c6edf1172bb207d0f7e07950df71f569a5` |
        | Windows | ARM64         | [chainloop-windows-arm64.exe](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.88.10/chainloop-windows-arm64.exe) | `2fcb05dd79b7925064ea054a4c72548961b9ed3b1a320145fcb1103f68042958` |

        Full manifest: [`checksums.txt`](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.88.10/checksums.txt) · [signature bundle](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.88.10/checksums.txt.sigstore.json) · [Release notes](/changelog)

        Download, verify, and install (linux/amd64 shown — swap `chainloop-linux-amd64` for another row from the table above):

        ```bash theme={"dark"}
        VERSION=v1.88.10
        BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION

        # Download the linux/amd64 binary and the checksum manifest
        curl -fsSLO "$BASE/chainloop-linux-amd64"
        curl -fsSLO "$BASE/checksums.txt"

        # Download the signature bundle and confirm the manifest itself came from Chainloop's release pipeline
        curl -fsSLO "$BASE/checksums.txt.sigstore.json"
        cosign verify-blob   --bundle=checksums.txt.sigstore.json   --certificate-oidc-issuer="https://token.actions.githubusercontent.com"   --certificate-identity-regexp="^https://github.com/chainloop-dev/platform/.github/workflows/release_backend.yml@"   checksums.txt

        # Verify the binary against the manifest
        sha256sum --ignore-missing -c checksums.txt
        # on macOS: shasum -a 256 --ignore-missing -c checksums.txt

        # Install it onto your PATH
        chmod +x chainloop-linux-amd64
        sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
        ```
      </Accordion>

      <Accordion title="v1.88.9">
        | OS      | Architecture  | Download                                                                                                                                            | SHA256                                                             |
        | ------- | ------------- | --------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------ |
        | Linux   | Intel (amd64) | [chainloop-linux-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.88.9/chainloop-linux-amd64)             | `19fab1f1b92010694d03da79cb150de7a665e0aada03c4f21f4acbeb065d52ed` |
        | Linux   | ARM64         | [chainloop-linux-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.88.9/chainloop-linux-arm64)             | `70c6d2e38b3fbcb5b17eb698f46ac8f6182c3ae58ad22842f5ea649f361bf0bf` |
        | macOS   | Intel (amd64) | [chainloop-darwin-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.88.9/chainloop-darwin-amd64)           | `fa186243073992754d2044c53a538a269e5a1d0205ee433f90505ccc1cddcf88` |
        | macOS   | Apple Silicon | [chainloop-darwin-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.88.9/chainloop-darwin-arm64)           | `bf9174ec5b1547542112146e7c092c32c4da97decba6342bfe392a34bab12b00` |
        | Windows | Intel (amd64) | [chainloop-windows-amd64.exe](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.88.9/chainloop-windows-amd64.exe) | `516fb7bd76f57f609d5e359fa97e3b3f75c3978c96d818fa23b411a8decce800` |
        | Windows | ARM64         | [chainloop-windows-arm64.exe](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.88.9/chainloop-windows-arm64.exe) | `d0a032fe66a1774dc656bf1b691b0be6b580e43ee022e019de13babaf11f8f0d` |

        Full manifest: [`checksums.txt`](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.88.9/checksums.txt) · [signature bundle](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.88.9/checksums.txt.sigstore.json) · [Release notes](/changelog)

        Download, verify, and install (linux/amd64 shown — swap `chainloop-linux-amd64` for another row from the table above):

        ```bash theme={"dark"}
        VERSION=v1.88.9
        BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION

        # Download the linux/amd64 binary and the checksum manifest
        curl -fsSLO "$BASE/chainloop-linux-amd64"
        curl -fsSLO "$BASE/checksums.txt"

        # Download the signature bundle and confirm the manifest itself came from Chainloop's release pipeline
        curl -fsSLO "$BASE/checksums.txt.sigstore.json"
        cosign verify-blob   --bundle=checksums.txt.sigstore.json   --certificate-oidc-issuer="https://token.actions.githubusercontent.com"   --certificate-identity-regexp="^https://github.com/chainloop-dev/platform/.github/workflows/release_backend.yml@"   checksums.txt

        # Verify the binary against the manifest
        sha256sum --ignore-missing -c checksums.txt
        # on macOS: shasum -a 256 --ignore-missing -c checksums.txt

        # Install it onto your PATH
        chmod +x chainloop-linux-amd64
        sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
        ```
      </Accordion>

      <Accordion title="v1.88.8">
        | OS      | Architecture  | Download                                                                                                                                            | SHA256                                                             |
        | ------- | ------------- | --------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------ |
        | Linux   | Intel (amd64) | [chainloop-linux-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.88.8/chainloop-linux-amd64)             | `c8b74751faf84d8d585cc80c31a7300c855c276984b269af2561f3a45f2e9d5f` |
        | Linux   | ARM64         | [chainloop-linux-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.88.8/chainloop-linux-arm64)             | `a02e702e9279ca68113e46c187c2a0c3c5a4058dcf34b4ef42d3feacda3cbb67` |
        | macOS   | Intel (amd64) | [chainloop-darwin-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.88.8/chainloop-darwin-amd64)           | `e21c209bb023b8a6285f3908475078c37b8446da7e384011fce8a27ea59ee1b6` |
        | macOS   | Apple Silicon | [chainloop-darwin-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.88.8/chainloop-darwin-arm64)           | `4010be3917ad9b2d9c5f8039ac3d79e26a6bbff2d41075c5c62d3f5df63f9684` |
        | Windows | Intel (amd64) | [chainloop-windows-amd64.exe](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.88.8/chainloop-windows-amd64.exe) | `7b0a5292a550ff5fd41138f4ab375a463599811a4c208aca967eac922fc5f3da` |
        | Windows | ARM64         | [chainloop-windows-arm64.exe](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.88.8/chainloop-windows-arm64.exe) | `72fe943dd02db8827af091f4862aa72bebab2fc0ced827ef4cd4c09aa313b8c7` |

        Full manifest: [`checksums.txt`](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.88.8/checksums.txt) · [signature bundle](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.88.8/checksums.txt.sigstore.json) · [Release notes](/changelog)

        Download, verify, and install (linux/amd64 shown — swap `chainloop-linux-amd64` for another row from the table above):

        ```bash theme={"dark"}
        VERSION=v1.88.8
        BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION

        # Download the linux/amd64 binary and the checksum manifest
        curl -fsSLO "$BASE/chainloop-linux-amd64"
        curl -fsSLO "$BASE/checksums.txt"

        # Download the signature bundle and confirm the manifest itself came from Chainloop's release pipeline
        curl -fsSLO "$BASE/checksums.txt.sigstore.json"
        cosign verify-blob   --bundle=checksums.txt.sigstore.json   --certificate-oidc-issuer="https://token.actions.githubusercontent.com"   --certificate-identity-regexp="^https://github.com/chainloop-dev/platform/.github/workflows/release_backend.yml@"   checksums.txt

        # Verify the binary against the manifest
        sha256sum --ignore-missing -c checksums.txt
        # on macOS: shasum -a 256 --ignore-missing -c checksums.txt

        # Install it onto your PATH
        chmod +x chainloop-linux-amd64
        sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
        ```
      </Accordion>

      <Accordion title="v1.88.7">
        | OS      | Architecture  | Download                                                                                                                                            | SHA256                                                             |
        | ------- | ------------- | --------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------ |
        | Linux   | Intel (amd64) | [chainloop-linux-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.88.7/chainloop-linux-amd64)             | `cc29d61d52fb6a60e715ca1a1316a17cead11b3533134afc0c00e4770012ae3f` |
        | Linux   | ARM64         | [chainloop-linux-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.88.7/chainloop-linux-arm64)             | `17bd3cd2c135ba2bdc8b60df2481dbbd12714a875737c77021ed029a31f1dca0` |
        | macOS   | Intel (amd64) | [chainloop-darwin-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.88.7/chainloop-darwin-amd64)           | `277c52b79b7dfdfbbd1b0715a7e358043248bdcccda203c93dfa7f7fda1b2c88` |
        | macOS   | Apple Silicon | [chainloop-darwin-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.88.7/chainloop-darwin-arm64)           | `93b16ea4f98b62b15e3cb583d725cbd2d3a4a8160ed180e4b6c3d7cf11efd393` |
        | Windows | Intel (amd64) | [chainloop-windows-amd64.exe](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.88.7/chainloop-windows-amd64.exe) | `b3f8a95be2d6fef3698bd3a462fe9620e0a04db3d9e7aa0124d4608ba02a9a24` |
        | Windows | ARM64         | [chainloop-windows-arm64.exe](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.88.7/chainloop-windows-arm64.exe) | `ca895eccaeae9d07c4d161f3a8bf2c2da8edd5ff9055944c6365248fec58fb57` |

        Full manifest: [`checksums.txt`](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.88.7/checksums.txt) · [signature bundle](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.88.7/checksums.txt.sigstore.json) · [Release notes](/changelog)

        Download, verify, and install (linux/amd64 shown — swap `chainloop-linux-amd64` for another row from the table above):

        ```bash theme={"dark"}
        VERSION=v1.88.7
        BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION

        # Download the linux/amd64 binary and the checksum manifest
        curl -fsSLO "$BASE/chainloop-linux-amd64"
        curl -fsSLO "$BASE/checksums.txt"

        # Download the signature bundle and confirm the manifest itself came from Chainloop's release pipeline
        curl -fsSLO "$BASE/checksums.txt.sigstore.json"
        cosign verify-blob   --bundle=checksums.txt.sigstore.json   --certificate-oidc-issuer="https://token.actions.githubusercontent.com"   --certificate-identity-regexp="^https://github.com/chainloop-dev/platform/.github/workflows/release_backend.yml@"   checksums.txt

        # Verify the binary against the manifest
        sha256sum --ignore-missing -c checksums.txt
        # on macOS: shasum -a 256 --ignore-missing -c checksums.txt

        # Install it onto your PATH
        chmod +x chainloop-linux-amd64
        sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
        ```
      </Accordion>

      <Accordion title="v1.88.6">
        | OS      | Architecture  | Download                                                                                                                                            | SHA256                                                             |
        | ------- | ------------- | --------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------ |
        | Linux   | Intel (amd64) | [chainloop-linux-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.88.6/chainloop-linux-amd64)             | `02828d03e03b50632f58af538caa519d911611fd9cb5f60542a8e100db84e40c` |
        | Linux   | ARM64         | [chainloop-linux-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.88.6/chainloop-linux-arm64)             | `0a1f2b8bd67366ea8983418fdb8eddda120d7e1c4d48fce3467ca19d10ade081` |
        | macOS   | Intel (amd64) | [chainloop-darwin-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.88.6/chainloop-darwin-amd64)           | `1e8893be229eaf040cc09cf81b278206e210818c8516c4515cc49aa38c0a9f04` |
        | macOS   | Apple Silicon | [chainloop-darwin-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.88.6/chainloop-darwin-arm64)           | `71bdfb4f46c350f698ab203ae1e52d6632aa0690246704ab1714da0d9266a718` |
        | Windows | Intel (amd64) | [chainloop-windows-amd64.exe](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.88.6/chainloop-windows-amd64.exe) | `48aea1269c679de4f89c1a486a97a91409ea463d98267759383c278ab7ebc1b0` |
        | Windows | ARM64         | [chainloop-windows-arm64.exe](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.88.6/chainloop-windows-arm64.exe) | `24c10ac5c7c5f6c59efb4fc88ad3bed46e8849fed6efcdb1f48526fb8e878a3e` |

        Full manifest: [`checksums.txt`](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.88.6/checksums.txt) · [signature bundle](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.88.6/checksums.txt.sigstore.json) · [Release notes](/changelog)

        Download, verify, and install (linux/amd64 shown — swap `chainloop-linux-amd64` for another row from the table above):

        ```bash theme={"dark"}
        VERSION=v1.88.6
        BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION

        # Download the linux/amd64 binary and the checksum manifest
        curl -fsSLO "$BASE/chainloop-linux-amd64"
        curl -fsSLO "$BASE/checksums.txt"

        # Download the signature bundle and confirm the manifest itself came from Chainloop's release pipeline
        curl -fsSLO "$BASE/checksums.txt.sigstore.json"
        cosign verify-blob   --bundle=checksums.txt.sigstore.json   --certificate-oidc-issuer="https://token.actions.githubusercontent.com"   --certificate-identity-regexp="^https://github.com/chainloop-dev/platform/.github/workflows/release_backend.yml@"   checksums.txt

        # Verify the binary against the manifest
        sha256sum --ignore-missing -c checksums.txt
        # on macOS: shasum -a 256 --ignore-missing -c checksums.txt

        # Install it onto your PATH
        chmod +x chainloop-linux-amd64
        sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
        ```
      </Accordion>

      <Accordion title="v1.88.5">
        | OS      | Architecture  | Download                                                                                                                                            | SHA256                                                             |
        | ------- | ------------- | --------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------ |
        | Linux   | Intel (amd64) | [chainloop-linux-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.88.5/chainloop-linux-amd64)             | `984ef4584d4911027aec3f526abe2616978612dea7d0c1551713b4465b6bacbb` |
        | Linux   | ARM64         | [chainloop-linux-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.88.5/chainloop-linux-arm64)             | `dcffefcdbfd8fe8e2d46a2ccb91481077680ce120191b4836ba3518f2a2cb83a` |
        | macOS   | Intel (amd64) | [chainloop-darwin-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.88.5/chainloop-darwin-amd64)           | `f5df65502d6f06e5a8c3cedcb0775ef56d54449c6d9dd9b4f2c555b22ae6a298` |
        | macOS   | Apple Silicon | [chainloop-darwin-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.88.5/chainloop-darwin-arm64)           | `c5b505ec496e9c9611bd5b8ff75fdb212556e929557f36f10468634288b8da2c` |
        | Windows | Intel (amd64) | [chainloop-windows-amd64.exe](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.88.5/chainloop-windows-amd64.exe) | `1aea679c3aab0a7f330909fe607e2bb8096b25c6d19e389491991ffeed27a412` |
        | Windows | ARM64         | [chainloop-windows-arm64.exe](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.88.5/chainloop-windows-arm64.exe) | `caf4f621b98fb6cc2899ed52ffc5a8578c23fc3c2c445ddafaf275ffd417c396` |

        Full manifest: [`checksums.txt`](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.88.5/checksums.txt) · [signature bundle](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.88.5/checksums.txt.sigstore.json) · [Release notes](/changelog)

        Download, verify, and install (linux/amd64 shown — swap `chainloop-linux-amd64` for another row from the table above):

        ```bash theme={"dark"}
        VERSION=v1.88.5
        BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION

        # Download the linux/amd64 binary and the checksum manifest
        curl -fsSLO "$BASE/chainloop-linux-amd64"
        curl -fsSLO "$BASE/checksums.txt"

        # Download the signature bundle and confirm the manifest itself came from Chainloop's release pipeline
        curl -fsSLO "$BASE/checksums.txt.sigstore.json"
        cosign verify-blob   --bundle=checksums.txt.sigstore.json   --certificate-oidc-issuer="https://token.actions.githubusercontent.com"   --certificate-identity-regexp="^https://github.com/chainloop-dev/platform/.github/workflows/release_backend.yml@"   checksums.txt

        # Verify the binary against the manifest
        sha256sum --ignore-missing -c checksums.txt
        # on macOS: shasum -a 256 --ignore-missing -c checksums.txt

        # Install it onto your PATH
        chmod +x chainloop-linux-amd64
        sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
        ```
      </Accordion>

      <Accordion title="v1.88.4">
        | OS      | Architecture  | Download                                                                                                                                            | SHA256                                                             |
        | ------- | ------------- | --------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------ |
        | Linux   | Intel (amd64) | [chainloop-linux-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.88.4/chainloop-linux-amd64)             | `310a835e632e2aefc7003f2c26b06ecd0a3c6d0c6a38262cb836342d1a3d4394` |
        | Linux   | ARM64         | [chainloop-linux-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.88.4/chainloop-linux-arm64)             | `05af9700fb85e0d65bfe859dac35461349523634ad430b845a9727baac007b5f` |
        | macOS   | Intel (amd64) | [chainloop-darwin-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.88.4/chainloop-darwin-amd64)           | `0a5beea5a81e2341aa439a5ccf318ada6b61b8a64510288956eea8bf593a097d` |
        | macOS   | Apple Silicon | [chainloop-darwin-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.88.4/chainloop-darwin-arm64)           | `c057ca9adbec170d87f3394bb688b6ef42289f5fd56a37e75aeeb9a54d0abae9` |
        | Windows | Intel (amd64) | [chainloop-windows-amd64.exe](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.88.4/chainloop-windows-amd64.exe) | `52bdcecf320c7f20f0a07b0e6cbf5652611e8cda4313e8b59b7f6e01f40d94f5` |
        | Windows | ARM64         | [chainloop-windows-arm64.exe](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.88.4/chainloop-windows-arm64.exe) | `3f7461440cf9a6da9c7d7f6e2bfa3dba26949869f2c92f43bb1967fbdbe6938a` |

        Full manifest: [`checksums.txt`](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.88.4/checksums.txt) · [signature bundle](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.88.4/checksums.txt.sigstore.json) · [Release notes](/changelog)

        Download, verify, and install (linux/amd64 shown — swap `chainloop-linux-amd64` for another row from the table above):

        ```bash theme={"dark"}
        VERSION=v1.88.4
        BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION

        # Download the linux/amd64 binary and the checksum manifest
        curl -fsSLO "$BASE/chainloop-linux-amd64"
        curl -fsSLO "$BASE/checksums.txt"

        # Download the signature bundle and confirm the manifest itself came from Chainloop's release pipeline
        curl -fsSLO "$BASE/checksums.txt.sigstore.json"
        cosign verify-blob   --bundle=checksums.txt.sigstore.json   --certificate-oidc-issuer="https://token.actions.githubusercontent.com"   --certificate-identity-regexp="^https://github.com/chainloop-dev/platform/.github/workflows/release_backend.yml@"   checksums.txt

        # Verify the binary against the manifest
        sha256sum --ignore-missing -c checksums.txt
        # on macOS: shasum -a 256 --ignore-missing -c checksums.txt

        # Install it onto your PATH
        chmod +x chainloop-linux-amd64
        sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
        ```
      </Accordion>

      <Accordion title="v1.88.3">
        | OS      | Architecture  | Download                                                                                                                                            | SHA256                                                             |
        | ------- | ------------- | --------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------ |
        | Linux   | Intel (amd64) | [chainloop-linux-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.88.3/chainloop-linux-amd64)             | `c1c36153706f2471dee7ba688dd4af2cd316c7ad60fb67ca15bdb46ccc21f1be` |
        | Linux   | ARM64         | [chainloop-linux-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.88.3/chainloop-linux-arm64)             | `37e22b9c3e149efa62a6e49b9598367e3a76c62002558986651e82c9d0fa0b87` |
        | macOS   | Intel (amd64) | [chainloop-darwin-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.88.3/chainloop-darwin-amd64)           | `801f9d1ff125623dbc36097f214dc34edede5bc9ea4c10f37f0f4c632264f62a` |
        | macOS   | Apple Silicon | [chainloop-darwin-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.88.3/chainloop-darwin-arm64)           | `9e7557867dee6dd31363122f8f5d56a9814c35e6178e684dfeab4daf6170ca36` |
        | Windows | Intel (amd64) | [chainloop-windows-amd64.exe](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.88.3/chainloop-windows-amd64.exe) | `1ae1a331a8255ab3deed461bd6b4dc2b5fe793746c45fc6443f1886b493b0ff6` |
        | Windows | ARM64         | [chainloop-windows-arm64.exe](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.88.3/chainloop-windows-arm64.exe) | `84b16e252b5198d9cc1a1eacc41c2e1a426f0380aca16e474f70b7d08aa78c06` |

        Full manifest: [`checksums.txt`](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.88.3/checksums.txt) · [signature bundle](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.88.3/checksums.txt.sigstore.json) · [Release notes](/changelog)

        Download, verify, and install (linux/amd64 shown — swap `chainloop-linux-amd64` for another row from the table above):

        ```bash theme={"dark"}
        VERSION=v1.88.3
        BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION

        # Download the linux/amd64 binary and the checksum manifest
        curl -fsSLO "$BASE/chainloop-linux-amd64"
        curl -fsSLO "$BASE/checksums.txt"

        # Download the signature bundle and confirm the manifest itself came from Chainloop's release pipeline
        curl -fsSLO "$BASE/checksums.txt.sigstore.json"
        cosign verify-blob   --bundle=checksums.txt.sigstore.json   --certificate-oidc-issuer="https://token.actions.githubusercontent.com"   --certificate-identity-regexp="^https://github.com/chainloop-dev/platform/.github/workflows/release_backend.yml@"   checksums.txt

        # Verify the binary against the manifest
        sha256sum --ignore-missing -c checksums.txt
        # on macOS: shasum -a 256 --ignore-missing -c checksums.txt

        # Install it onto your PATH
        chmod +x chainloop-linux-amd64
        sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
        ```
      </Accordion>

      <Accordion title="v1.88.2">
        | OS      | Architecture  | Download                                                                                                                                            | SHA256                                                             |
        | ------- | ------------- | --------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------ |
        | Linux   | Intel (amd64) | [chainloop-linux-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.88.2/chainloop-linux-amd64)             | `b8fe3d6fc5574d9d140bd03063f24b5db576c74f21c15de6656cfd9e847c8d09` |
        | Linux   | ARM64         | [chainloop-linux-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.88.2/chainloop-linux-arm64)             | `7d932c4225e0150f76bfec5d4e1f01302353c5a88a4379cebdd3d1f9033c6641` |
        | macOS   | Intel (amd64) | [chainloop-darwin-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.88.2/chainloop-darwin-amd64)           | `b21badce5f19154c6872fdd1d1405534497733c7527ccedff591584fc3a73f0e` |
        | macOS   | Apple Silicon | [chainloop-darwin-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.88.2/chainloop-darwin-arm64)           | `49e1d83ae95c0838648c4ca50d2e5c1c0d2e18dd349bbb20e062d47ec135498b` |
        | Windows | Intel (amd64) | [chainloop-windows-amd64.exe](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.88.2/chainloop-windows-amd64.exe) | `0ed22e9ffc4f39bfb1660d35f66ec12e0e3e3fb2b34e63279afb67c1ef02d956` |
        | Windows | ARM64         | [chainloop-windows-arm64.exe](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.88.2/chainloop-windows-arm64.exe) | `b8c1d80b7926e88ba16c77d326d076d1028866d208e212017f7b17ca7e8193e8` |

        Full manifest: [`checksums.txt`](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.88.2/checksums.txt) · [signature bundle](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.88.2/checksums.txt.sigstore.json) · [Release notes](/changelog)

        Download, verify, and install (linux/amd64 shown — swap `chainloop-linux-amd64` for another row from the table above):

        ```bash theme={"dark"}
        VERSION=v1.88.2
        BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION

        # Download the linux/amd64 binary and the checksum manifest
        curl -fsSLO "$BASE/chainloop-linux-amd64"
        curl -fsSLO "$BASE/checksums.txt"

        # Download the signature bundle and confirm the manifest itself came from Chainloop's release pipeline
        curl -fsSLO "$BASE/checksums.txt.sigstore.json"
        cosign verify-blob   --bundle=checksums.txt.sigstore.json   --certificate-oidc-issuer="https://token.actions.githubusercontent.com"   --certificate-identity-regexp="^https://github.com/chainloop-dev/platform/.github/workflows/release_backend.yml@"   checksums.txt

        # Verify the binary against the manifest
        sha256sum --ignore-missing -c checksums.txt
        # on macOS: shasum -a 256 --ignore-missing -c checksums.txt

        # Install it onto your PATH
        chmod +x chainloop-linux-amd64
        sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
        ```
      </Accordion>

      <Accordion title="v1.88.1">
        | OS      | Architecture  | Download                                                                                                                                            | SHA256                                                             |
        | ------- | ------------- | --------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------ |
        | Linux   | Intel (amd64) | [chainloop-linux-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.88.1/chainloop-linux-amd64)             | `b25300b57866436a408adee3fb68955dc6de90aefb43a4b03ed50f6dd8474226` |
        | Linux   | ARM64         | [chainloop-linux-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.88.1/chainloop-linux-arm64)             | `c3e67bcb14c99ec442b5a2ebf5a7780cd1b81582256d45aadc3299a6c4a46b24` |
        | macOS   | Intel (amd64) | [chainloop-darwin-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.88.1/chainloop-darwin-amd64)           | `b6714a2bcaec6ab3cdd3931d4d99aca2dfcbf8744538e37054700c4a04aa088b` |
        | macOS   | Apple Silicon | [chainloop-darwin-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.88.1/chainloop-darwin-arm64)           | `4eae9295739ba760dfe6c6c6e0f15d133b35187ce256a946349efbcf67117c9d` |
        | Windows | Intel (amd64) | [chainloop-windows-amd64.exe](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.88.1/chainloop-windows-amd64.exe) | `4e026b5c57be4618efcea2f8094e9f2bc5363e6e9a93d973f36e2c143ff979ef` |
        | Windows | ARM64         | [chainloop-windows-arm64.exe](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.88.1/chainloop-windows-arm64.exe) | `31f4774103b7b60be1de851da11d54256c01a04c898319ce169a07c2067ce238` |

        Full manifest: [`checksums.txt`](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.88.1/checksums.txt) · [signature bundle](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.88.1/checksums.txt.sigstore.json) · [Release notes](/changelog)

        Download, verify, and install (linux/amd64 shown — swap `chainloop-linux-amd64` for another row from the table above):

        ```bash theme={"dark"}
        VERSION=v1.88.1
        BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION

        # Download the linux/amd64 binary and the checksum manifest
        curl -fsSLO "$BASE/chainloop-linux-amd64"
        curl -fsSLO "$BASE/checksums.txt"

        # Download the signature bundle and confirm the manifest itself came from Chainloop's release pipeline
        curl -fsSLO "$BASE/checksums.txt.sigstore.json"
        cosign verify-blob   --bundle=checksums.txt.sigstore.json   --certificate-oidc-issuer="https://token.actions.githubusercontent.com"   --certificate-identity-regexp="^https://github.com/chainloop-dev/platform/.github/workflows/release_backend.yml@"   checksums.txt

        # Verify the binary against the manifest
        sha256sum --ignore-missing -c checksums.txt
        # on macOS: shasum -a 256 --ignore-missing -c checksums.txt

        # Install it onto your PATH
        chmod +x chainloop-linux-amd64
        sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
        ```
      </Accordion>

      <Accordion title="v1.88.0">
        | OS      | Architecture  | Download                                                                                                                                            | SHA256                                                             |
        | ------- | ------------- | --------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------ |
        | Linux   | Intel (amd64) | [chainloop-linux-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.88.0/chainloop-linux-amd64)             | `dad37156910f1de5ff1b9a24c9ae98006e7c6bc6329b4bbc42b61cd0506da79c` |
        | Linux   | ARM64         | [chainloop-linux-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.88.0/chainloop-linux-arm64)             | `bc324a130d72e955c69fd1663b9b1802da23508d84b7ed21ee5b2cf5b55a310c` |
        | macOS   | Intel (amd64) | [chainloop-darwin-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.88.0/chainloop-darwin-amd64)           | `90398486045edea283e1537243657ea2bc9a6ea27e26c147077392061f713929` |
        | macOS   | Apple Silicon | [chainloop-darwin-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.88.0/chainloop-darwin-arm64)           | `bec4e2b3a317a7162f00db99ad4f558b0821c3a193b316312a543d2227dd1817` |
        | Windows | Intel (amd64) | [chainloop-windows-amd64.exe](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.88.0/chainloop-windows-amd64.exe) | `06255849fbddf9556b13a01715f99661ca9d084faaddf6e13d96e988a08b5d20` |
        | Windows | ARM64         | [chainloop-windows-arm64.exe](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.88.0/chainloop-windows-arm64.exe) | `814d5c140c84f2152abb8fbdad8215799a4667741a9278265da31646b3c3a714` |

        Full manifest: [`checksums.txt`](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.88.0/checksums.txt) · [signature bundle](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.88.0/checksums.txt.sigstore.json) · [Release notes](/changelog)

        Download, verify, and install (linux/amd64 shown — swap `chainloop-linux-amd64` for another row from the table above):

        ```bash theme={"dark"}
        VERSION=v1.88.0
        BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION

        # Download the linux/amd64 binary and the checksum manifest
        curl -fsSLO "$BASE/chainloop-linux-amd64"
        curl -fsSLO "$BASE/checksums.txt"

        # Download the signature bundle and confirm the manifest itself came from Chainloop's release pipeline
        curl -fsSLO "$BASE/checksums.txt.sigstore.json"
        cosign verify-blob   --bundle=checksums.txt.sigstore.json   --certificate-oidc-issuer="https://token.actions.githubusercontent.com"   --certificate-identity-regexp="^https://github.com/chainloop-dev/platform/.github/workflows/release_backend.yml@"   checksums.txt

        # Verify the binary against the manifest
        sha256sum --ignore-missing -c checksums.txt
        # on macOS: shasum -a 256 --ignore-missing -c checksums.txt

        # Install it onto your PATH
        chmod +x chainloop-linux-amd64
        sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
        ```
      </Accordion>

      <Accordion title="v1.87.4">
        | OS      | Architecture  | Download                                                                                                                                            | SHA256                                                             |
        | ------- | ------------- | --------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------ |
        | Linux   | Intel (amd64) | [chainloop-linux-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.87.4/chainloop-linux-amd64)             | `a9b9ca0939b10d904c10a334111964a6fb3a371e414deead717de4f2fc0e5c0c` |
        | Linux   | ARM64         | [chainloop-linux-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.87.4/chainloop-linux-arm64)             | `602af1cdce8c2d59a533aab34b1a85eb009526b4a94cb58f199846984242fd91` |
        | macOS   | Intel (amd64) | [chainloop-darwin-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.87.4/chainloop-darwin-amd64)           | `93c8db6de3913ed3f8bdbaa7a7bd40b671d699a324a8fa3df6a05cdf3882c48d` |
        | macOS   | Apple Silicon | [chainloop-darwin-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.87.4/chainloop-darwin-arm64)           | `bfebd2a5db120a8d2850b25f75077990b46d381d176b232a9ceb51a180bfc97a` |
        | Windows | Intel (amd64) | [chainloop-windows-amd64.exe](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.87.4/chainloop-windows-amd64.exe) | `9ec69144b9361a8750a2515dd592a184572b6c5a2c7cd7738ad9f379c221f2be` |
        | Windows | ARM64         | [chainloop-windows-arm64.exe](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.87.4/chainloop-windows-arm64.exe) | `d816cad4344a905164542fce0dca2e545355afab452ac723583c11c17d23be1a` |

        Full manifest: [`checksums.txt`](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.87.4/checksums.txt) · [signature bundle](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.87.4/checksums.txt.sigstore.json) · [Release notes](/changelog)

        Download, verify, and install (linux/amd64 shown — swap `chainloop-linux-amd64` for another row from the table above):

        ```bash theme={"dark"}
        VERSION=v1.87.4
        BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION

        # Download the linux/amd64 binary and the checksum manifest
        curl -fsSLO "$BASE/chainloop-linux-amd64"
        curl -fsSLO "$BASE/checksums.txt"

        # Download the signature bundle and confirm the manifest itself came from Chainloop's release pipeline
        curl -fsSLO "$BASE/checksums.txt.sigstore.json"
        cosign verify-blob   --bundle=checksums.txt.sigstore.json   --certificate-oidc-issuer="https://token.actions.githubusercontent.com"   --certificate-identity-regexp="^https://github.com/chainloop-dev/platform/.github/workflows/release_backend.yml@"   checksums.txt

        # Verify the binary against the manifest
        sha256sum --ignore-missing -c checksums.txt
        # on macOS: shasum -a 256 --ignore-missing -c checksums.txt

        # Install it onto your PATH
        chmod +x chainloop-linux-amd64
        sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
        ```
      </Accordion>

      <Accordion title="v1.87.3">
        | OS      | Architecture  | Download                                                                                                                                            | SHA256                                                             |
        | ------- | ------------- | --------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------ |
        | Linux   | Intel (amd64) | [chainloop-linux-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.87.3/chainloop-linux-amd64)             | `362f22bf5569c781a829e67b83d368373ff98f67bb7e5f71cc849f4ceb4a5421` |
        | Linux   | ARM64         | [chainloop-linux-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.87.3/chainloop-linux-arm64)             | `05481b6e451071eea6ee66fcf6be6c70808ec3b52b6ca82ed74c906a53c1cef8` |
        | macOS   | Intel (amd64) | [chainloop-darwin-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.87.3/chainloop-darwin-amd64)           | `a5b98c999478ea2f7b5a9446bae94d49c054a56e500d67c3acf2ab30a5a8bf4d` |
        | macOS   | Apple Silicon | [chainloop-darwin-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.87.3/chainloop-darwin-arm64)           | `29d82b78b1da19f4973e447193d481e37611d1baaec2652762e98bd89c3bebc3` |
        | Windows | Intel (amd64) | [chainloop-windows-amd64.exe](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.87.3/chainloop-windows-amd64.exe) | `2c107a0501036ab6aefeb3efda3225af62293ca1505d190d7b927bf63699afa7` |
        | Windows | ARM64         | [chainloop-windows-arm64.exe](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.87.3/chainloop-windows-arm64.exe) | `e973ae4dcd117bdbc2a2c040bb027f2c55684412b5a7e5e780280c62afd7d35e` |

        Full manifest: [`checksums.txt`](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.87.3/checksums.txt) · [signature bundle](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.87.3/checksums.txt.sigstore.json) · [Release notes](/changelog)

        Download, verify, and install (linux/amd64 shown — swap `chainloop-linux-amd64` for another row from the table above):

        ```bash theme={"dark"}
        VERSION=v1.87.3
        BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION

        # Download the linux/amd64 binary and the checksum manifest
        curl -fsSLO "$BASE/chainloop-linux-amd64"
        curl -fsSLO "$BASE/checksums.txt"

        # Download the signature bundle and confirm the manifest itself came from Chainloop's release pipeline
        curl -fsSLO "$BASE/checksums.txt.sigstore.json"
        cosign verify-blob   --bundle=checksums.txt.sigstore.json   --certificate-oidc-issuer="https://token.actions.githubusercontent.com"   --certificate-identity-regexp="^https://github.com/chainloop-dev/platform/.github/workflows/release_backend.yml@"   checksums.txt

        # Verify the binary against the manifest
        sha256sum --ignore-missing -c checksums.txt
        # on macOS: shasum -a 256 --ignore-missing -c checksums.txt

        # Install it onto your PATH
        chmod +x chainloop-linux-amd64
        sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
        ```
      </Accordion>

      <Accordion title="v1.87.2">
        | OS      | Architecture  | Download                                                                                                                                            | SHA256                                                             |
        | ------- | ------------- | --------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------ |
        | Linux   | Intel (amd64) | [chainloop-linux-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.87.2/chainloop-linux-amd64)             | `a14243c5bc32c749c08b5faf0c1ca804822b78e0d3690b0c3455bc3bb69696c4` |
        | Linux   | ARM64         | [chainloop-linux-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.87.2/chainloop-linux-arm64)             | `9165f1bc58f3e762ef0816fa92ae84592c7e7a473a8935f161684215620ff4cb` |
        | macOS   | Intel (amd64) | [chainloop-darwin-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.87.2/chainloop-darwin-amd64)           | `0fdb54c8d836ebaa0bcb6142d7ff567a77b0db5b115ed645a77f20d245a426e9` |
        | macOS   | Apple Silicon | [chainloop-darwin-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.87.2/chainloop-darwin-arm64)           | `e30da91c457c9627152c2626a4cefbd8e2912b2da593feabc9cbfcaebf6577b7` |
        | Windows | Intel (amd64) | [chainloop-windows-amd64.exe](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.87.2/chainloop-windows-amd64.exe) | `1726189f7921d606e18eec1a9a59420a6d79f1212f93d8c8798a69a30d71584f` |
        | Windows | ARM64         | [chainloop-windows-arm64.exe](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.87.2/chainloop-windows-arm64.exe) | `8e241f82bfa641b54b2cf9098fa75feb7ae9b2bc11f4416093e981a0a1eb5c23` |

        Full manifest: [`checksums.txt`](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.87.2/checksums.txt) · [signature bundle](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.87.2/checksums.txt.sigstore.json) · [Release notes](/changelog)

        Download, verify, and install (linux/amd64 shown — swap `chainloop-linux-amd64` for another row from the table above):

        ```bash theme={"dark"}
        VERSION=v1.87.2
        BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION

        # Download the linux/amd64 binary and the checksum manifest
        curl -fsSLO "$BASE/chainloop-linux-amd64"
        curl -fsSLO "$BASE/checksums.txt"

        # Download the signature bundle and confirm the manifest itself came from Chainloop's release pipeline
        curl -fsSLO "$BASE/checksums.txt.sigstore.json"
        cosign verify-blob   --bundle=checksums.txt.sigstore.json   --certificate-oidc-issuer="https://token.actions.githubusercontent.com"   --certificate-identity-regexp="^https://github.com/chainloop-dev/platform/.github/workflows/release_backend.yml@"   checksums.txt

        # Verify the binary against the manifest
        sha256sum --ignore-missing -c checksums.txt
        # on macOS: shasum -a 256 --ignore-missing -c checksums.txt

        # Install it onto your PATH
        chmod +x chainloop-linux-amd64
        sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
        ```
      </Accordion>

      <Accordion title="v1.87.1">
        | OS      | Architecture  | Download                                                                                                                                            | SHA256                                                             |
        | ------- | ------------- | --------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------ |
        | Linux   | Intel (amd64) | [chainloop-linux-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.87.1/chainloop-linux-amd64)             | `afbc4ec7e313ec5430ae660ad2c0441491e4fcc828ddb9deed1f1553e2b8a65a` |
        | Linux   | ARM64         | [chainloop-linux-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.87.1/chainloop-linux-arm64)             | `f30283e57a4656981e5b573811275a59f98d0c61834d0f6bb3c3d46dbf8e46d3` |
        | macOS   | Intel (amd64) | [chainloop-darwin-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.87.1/chainloop-darwin-amd64)           | `4c2da6da7a8e02c4b2e6d6cfbd19329ee5d02f677ab09982e422601f0cb96845` |
        | macOS   | Apple Silicon | [chainloop-darwin-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.87.1/chainloop-darwin-arm64)           | `8e748281c407807887d05ca89c878b00b9e19d218da8ded1fd7a99745112913f` |
        | Windows | Intel (amd64) | [chainloop-windows-amd64.exe](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.87.1/chainloop-windows-amd64.exe) | `f29d496ba301b351c0dccdd3f817131b6dda6ae99d779b20a56d8375490e509f` |
        | Windows | ARM64         | [chainloop-windows-arm64.exe](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.87.1/chainloop-windows-arm64.exe) | `c8d2f2b529e918290eb3cfa03cedea9e9c5583f45d5dc0acee987d5501897838` |

        Full manifest: [`checksums.txt`](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.87.1/checksums.txt) · [signature bundle](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.87.1/checksums.txt.sigstore.json) · [Release notes](/changelog)

        Download, verify, and install (linux/amd64 shown — swap `chainloop-linux-amd64` for another row from the table above):

        ```bash theme={"dark"}
        VERSION=v1.87.1
        BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION

        # Download the linux/amd64 binary and the checksum manifest
        curl -fsSLO "$BASE/chainloop-linux-amd64"
        curl -fsSLO "$BASE/checksums.txt"

        # Download the signature bundle and confirm the manifest itself came from Chainloop's release pipeline
        curl -fsSLO "$BASE/checksums.txt.sigstore.json"
        cosign verify-blob   --bundle=checksums.txt.sigstore.json   --certificate-oidc-issuer="https://token.actions.githubusercontent.com"   --certificate-identity-regexp="^https://github.com/chainloop-dev/platform/.github/workflows/release_backend.yml@"   checksums.txt

        # Verify the binary against the manifest
        sha256sum --ignore-missing -c checksums.txt
        # on macOS: shasum -a 256 --ignore-missing -c checksums.txt

        # Install it onto your PATH
        chmod +x chainloop-linux-amd64
        sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
        ```
      </Accordion>

      <Accordion title="v1.87.0">
        | OS      | Architecture  | Download                                                                                                                                            | SHA256                                                             |
        | ------- | ------------- | --------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------ |
        | Linux   | Intel (amd64) | [chainloop-linux-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.87.0/chainloop-linux-amd64)             | `05594a4ec025f20c3d34292148d79e68bd6c814f915aff60ba29212b1e521a13` |
        | Linux   | ARM64         | [chainloop-linux-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.87.0/chainloop-linux-arm64)             | `7f7c1021b8d4a897a7056bb13098fcadc9b14ac37000bbca0d33031fc6b8c497` |
        | macOS   | Intel (amd64) | [chainloop-darwin-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.87.0/chainloop-darwin-amd64)           | `9584599790c138d44d1dc96fd82dcd6f0c4047aa3a3a6b34025766ea778b6936` |
        | macOS   | Apple Silicon | [chainloop-darwin-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.87.0/chainloop-darwin-arm64)           | `cb7ee35f834fa7627415e64902936b4e670d5d5d1f4bf7f287a47aef6304344e` |
        | Windows | Intel (amd64) | [chainloop-windows-amd64.exe](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.87.0/chainloop-windows-amd64.exe) | `d1158e51fb64155325f0d1bc50915342094e1d2e0072b27378953a3962fcce48` |
        | Windows | ARM64         | [chainloop-windows-arm64.exe](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.87.0/chainloop-windows-arm64.exe) | `75469c7130008408a53095695fb7ba8660ba720bc1f0590f41b19656fdf516eb` |

        Full manifest: [`checksums.txt`](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.87.0/checksums.txt) · [signature bundle](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.87.0/checksums.txt.sigstore.json) · [Release notes](/changelog)

        Download, verify, and install (linux/amd64 shown — swap `chainloop-linux-amd64` for another row from the table above):

        ```bash theme={"dark"}
        VERSION=v1.87.0
        BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION

        # Download the linux/amd64 binary and the checksum manifest
        curl -fsSLO "$BASE/chainloop-linux-amd64"
        curl -fsSLO "$BASE/checksums.txt"

        # Download the signature bundle and confirm the manifest itself came from Chainloop's release pipeline
        curl -fsSLO "$BASE/checksums.txt.sigstore.json"
        cosign verify-blob   --bundle=checksums.txt.sigstore.json   --certificate-oidc-issuer="https://token.actions.githubusercontent.com"   --certificate-identity-regexp="^https://github.com/chainloop-dev/platform/.github/workflows/release_backend.yml@"   checksums.txt

        # Verify the binary against the manifest
        sha256sum --ignore-missing -c checksums.txt
        # on macOS: shasum -a 256 --ignore-missing -c checksums.txt

        # Install it onto your PATH
        chmod +x chainloop-linux-amd64
        sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
        ```
      </Accordion>

      <Accordion title="v1.86.0">
        | OS    | Architecture  | Download                                                                                                                                  | SHA256                                                             |
        | ----- | ------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------ |
        | Linux | Intel (amd64) | [chainloop-linux-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.86.0/chainloop-linux-amd64)   | `0b990c61f65e42f8eba3a646a73d18f9fc0becb31228de947ef542f0c1b3b63a` |
        | Linux | ARM64         | [chainloop-linux-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.86.0/chainloop-linux-arm64)   | `e5dceeb6bfc112383c63d461eac1eefeec61d33483cd70e441192150760492d5` |
        | macOS | Intel (amd64) | [chainloop-darwin-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.86.0/chainloop-darwin-amd64) | `b95ca45effca37cf4c1b089801c5a16d16678c35712812363ec6865144f8a03f` |
        | macOS | Apple Silicon | [chainloop-darwin-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.86.0/chainloop-darwin-arm64) | `d9730858fc26532a64be9916e8d8c8bf5100ce8c88eec36f7740836161a1489c` |

        Full manifest: [`checksums.txt`](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.86.0/checksums.txt) · [signature bundle](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.86.0/checksums.txt.sigstore.json) · [Release notes](/changelog)

        Download, verify, and install (linux/amd64 shown — swap `chainloop-linux-amd64` for another row from the table above):

        ```bash theme={"dark"}
        VERSION=v1.86.0
        BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION

        # Download the linux/amd64 binary and the checksum manifest
        curl -fsSLO "$BASE/chainloop-linux-amd64"
        curl -fsSLO "$BASE/checksums.txt"

        # Download the signature bundle and confirm the manifest itself came from Chainloop's release pipeline
        curl -fsSLO "$BASE/checksums.txt.sigstore.json"
        cosign verify-blob   --bundle=checksums.txt.sigstore.json   --certificate-oidc-issuer="https://token.actions.githubusercontent.com"   --certificate-identity-regexp="^https://github.com/chainloop-dev/platform/.github/workflows/release_backend.yml@"   checksums.txt

        # Verify the binary against the manifest
        sha256sum --ignore-missing -c checksums.txt
        # on macOS: shasum -a 256 --ignore-missing -c checksums.txt

        # Install it onto your PATH
        chmod +x chainloop-linux-amd64
        sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
        ```
      </Accordion>

      <Accordion title="v1.85.2">
        | OS    | Architecture  | Download                                                                                                                                  | SHA256                                                             |
        | ----- | ------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------ |
        | Linux | Intel (amd64) | [chainloop-linux-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.85.2/chainloop-linux-amd64)   | `90e3baec28e5a0806ad14b84b44b7cd6e4aa01ad3a563795a9133af562dd6185` |
        | Linux | ARM64         | [chainloop-linux-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.85.2/chainloop-linux-arm64)   | `b06ab29b94bc139b01c28be5e2d2f833954d66c46fead21ba4dbd76aa956e9be` |
        | macOS | Intel (amd64) | [chainloop-darwin-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.85.2/chainloop-darwin-amd64) | `123c49a90938f40b7eb32351d51840b7fc46d2735e0bbb46d480560c4a34e695` |
        | macOS | Apple Silicon | [chainloop-darwin-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.85.2/chainloop-darwin-arm64) | `7e5e08c0d7182a6c8b818f2c2f371924b0cbdf8f1ed12bf87a554eb4b453f95b` |

        Full manifest: [`checksums.txt`](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.85.2/checksums.txt) · [signature bundle](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.85.2/checksums.txt.sigstore.json) · [Release notes](/changelog)

        Download, verify, and install (linux/amd64 shown — swap `chainloop-linux-amd64` for another row from the table above):

        ```bash theme={"dark"}
        VERSION=v1.85.2
        BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION

        # Download the linux/amd64 binary and the checksum manifest
        curl -fsSLO "$BASE/chainloop-linux-amd64"
        curl -fsSLO "$BASE/checksums.txt"

        # Download the signature bundle and confirm the manifest itself came from Chainloop's release pipeline
        curl -fsSLO "$BASE/checksums.txt.sigstore.json"
        cosign verify-blob   --bundle=checksums.txt.sigstore.json   --certificate-oidc-issuer="https://token.actions.githubusercontent.com"   --certificate-identity-regexp="^https://github.com/chainloop-dev/platform/.github/workflows/release_backend.yml@"   checksums.txt

        # Verify the binary against the manifest
        sha256sum --ignore-missing -c checksums.txt
        # on macOS: shasum -a 256 --ignore-missing -c checksums.txt

        # Install it onto your PATH
        chmod +x chainloop-linux-amd64
        sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
        ```
      </Accordion>

      <Accordion title="v1.85.0">
        | OS    | Architecture  | Download                                                                                                                                  | SHA256                                                             |
        | ----- | ------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------ |
        | Linux | Intel (amd64) | [chainloop-linux-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.85.0/chainloop-linux-amd64)   | `31c53ca9b6cc4b5b69e9703fb87c24b41786f7347e78e4e866b6bf5887354946` |
        | Linux | ARM64         | [chainloop-linux-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.85.0/chainloop-linux-arm64)   | `8e7658658bf53fbc700b38c350dc4d6596cc30d31e4db806543d48cb245ecddc` |
        | macOS | Intel (amd64) | [chainloop-darwin-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.85.0/chainloop-darwin-amd64) | `112ec95c934f00945691ea6c9b180f4a4786d70fc81bb59733e54ddb773eb91e` |
        | macOS | Apple Silicon | [chainloop-darwin-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.85.0/chainloop-darwin-arm64) | `4c90a834553fa5b266b4c68fe8041a16112a8090fa76c2a1a069f7ea243eb5c8` |

        Full manifest: [`checksums.txt`](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.85.0/checksums.txt) · [signature bundle](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.85.0/checksums.txt.sigstore.json) · [Release notes](/changelog)

        Download, verify, and install (linux/amd64 shown — swap `chainloop-linux-amd64` for another row from the table above):

        ```bash theme={"dark"}
        VERSION=v1.85.0
        BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION

        # Download the linux/amd64 binary and the checksum manifest
        curl -fsSLO "$BASE/chainloop-linux-amd64"
        curl -fsSLO "$BASE/checksums.txt"

        # Download the signature bundle and confirm the manifest itself came from Chainloop's release pipeline
        curl -fsSLO "$BASE/checksums.txt.sigstore.json"
        cosign verify-blob   --bundle=checksums.txt.sigstore.json   --certificate-oidc-issuer="https://token.actions.githubusercontent.com"   --certificate-identity-regexp="^https://github.com/chainloop-dev/platform/.github/workflows/release_backend.yml@"   checksums.txt

        # Verify the binary against the manifest
        sha256sum --ignore-missing -c checksums.txt
        # on macOS: shasum -a 256 --ignore-missing -c checksums.txt

        # Install it onto your PATH
        chmod +x chainloop-linux-amd64
        sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
        ```
      </Accordion>

      <Accordion title="v1.84.2">
        | OS    | Architecture  | Download                                                                                                                                  | SHA256                                                             |
        | ----- | ------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------ |
        | Linux | Intel (amd64) | [chainloop-linux-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.84.2/chainloop-linux-amd64)   | `0151be99df69c0e709f1459a20602501de739d97e23255193350bb2430417ed3` |
        | Linux | ARM64         | [chainloop-linux-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.84.2/chainloop-linux-arm64)   | `dfdfaec135c171958fed001362d845fcba9fb7fea2b2122684373ab40bc8765a` |
        | macOS | Intel (amd64) | [chainloop-darwin-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.84.2/chainloop-darwin-amd64) | `dea7416c9582c58ce6e24b6435a05b2655325498b615a8347a71cf0da9680afc` |
        | macOS | Apple Silicon | [chainloop-darwin-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.84.2/chainloop-darwin-arm64) | `1175c5ea61e978a7c9ee2396f43792b486109b4dcbb6ffe743c96b64c35d1914` |

        Full manifest: [`checksums.txt`](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.84.2/checksums.txt) · [signature bundle](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.84.2/checksums.txt.sigstore.json) · [Release notes](/changelog)

        Download, verify, and install (linux/amd64 shown — swap `chainloop-linux-amd64` for another row from the table above):

        ```bash theme={"dark"}
        VERSION=v1.84.2
        BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION

        # Download the linux/amd64 binary and the checksum manifest
        curl -fsSLO "$BASE/chainloop-linux-amd64"
        curl -fsSLO "$BASE/checksums.txt"

        # Download the signature bundle and confirm the manifest itself came from Chainloop's release pipeline
        curl -fsSLO "$BASE/checksums.txt.sigstore.json"
        cosign verify-blob   --bundle=checksums.txt.sigstore.json   --certificate-oidc-issuer="https://token.actions.githubusercontent.com"   --certificate-identity-regexp="^https://github.com/chainloop-dev/platform/.github/workflows/release_backend.yml@"   checksums.txt

        # Verify the binary against the manifest
        sha256sum --ignore-missing -c checksums.txt
        # on macOS: shasum -a 256 --ignore-missing -c checksums.txt

        # Install it onto your PATH
        chmod +x chainloop-linux-amd64
        sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
        ```
      </Accordion>

      <Accordion title="v1.84.1">
        | OS    | Architecture  | Download                                                                                                                                  | SHA256                                                             |
        | ----- | ------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------ |
        | Linux | Intel (amd64) | [chainloop-linux-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.84.1/chainloop-linux-amd64)   | `83098c194a49a566617815880c4cbfaba229a7134290197b06bf2cda0602bad6` |
        | Linux | ARM64         | [chainloop-linux-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.84.1/chainloop-linux-arm64)   | `c1b179aaef6fc5d9723e8f9768215b3536c27af00bd8bd9a7eb7b834916e0e4f` |
        | macOS | Intel (amd64) | [chainloop-darwin-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.84.1/chainloop-darwin-amd64) | `afcac8a8d338a1572305d6b3b8a780330894ca68f7eec21bc1ccb09a7701979b` |
        | macOS | Apple Silicon | [chainloop-darwin-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.84.1/chainloop-darwin-arm64) | `75cce8fd379cfb27103d31683457ad9d774e36b1629b14c0ec04f7b07a3d6743` |

        Full manifest: [`checksums.txt`](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.84.1/checksums.txt) · [signature bundle](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.84.1/checksums.txt.sigstore.json) · [Release notes](/changelog)

        Download, verify, and install (linux/amd64 shown — swap `chainloop-linux-amd64` for another row from the table above):

        ```bash theme={"dark"}
        VERSION=v1.84.1
        BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION

        # Download the linux/amd64 binary and the checksum manifest
        curl -fsSLO "$BASE/chainloop-linux-amd64"
        curl -fsSLO "$BASE/checksums.txt"

        # Download the signature bundle and confirm the manifest itself came from Chainloop's release pipeline
        curl -fsSLO "$BASE/checksums.txt.sigstore.json"
        cosign verify-blob   --bundle=checksums.txt.sigstore.json   --certificate-oidc-issuer="https://token.actions.githubusercontent.com"   --certificate-identity-regexp="^https://github.com/chainloop-dev/platform/.github/workflows/release_backend.yml@"   checksums.txt

        # Verify the binary against the manifest
        sha256sum --ignore-missing -c checksums.txt
        # on macOS: shasum -a 256 --ignore-missing -c checksums.txt

        # Install it onto your PATH
        chmod +x chainloop-linux-amd64
        sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
        ```
      </Accordion>

      <Accordion title="v1.83.2">
        | OS    | Architecture  | Download                                                                                                                                  | SHA256                                                             |
        | ----- | ------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------ |
        | Linux | Intel (amd64) | [chainloop-linux-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.83.2/chainloop-linux-amd64)   | `f8e40f197a0137cf77f107b0e7ce7e9b47b9180a6ea92ac30cab49044bd67717` |
        | Linux | ARM64         | [chainloop-linux-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.83.2/chainloop-linux-arm64)   | `dcc6c9dd31aa8b6a029e1a4829aae9df1f03ffadfb84ff352adc33363c161506` |
        | macOS | Intel (amd64) | [chainloop-darwin-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.83.2/chainloop-darwin-amd64) | `c4d2e977b90b5522fb591cffb79b7980d8163c21d893eeb3cf7ee45cd19c3aa9` |
        | macOS | Apple Silicon | [chainloop-darwin-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.83.2/chainloop-darwin-arm64) | `1b59544bab9f4ba6064e783d7e4dd165e70e9adc58d5c6f7d1a9d641fb4e8ba4` |

        Full manifest: [`checksums.txt`](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.83.2/checksums.txt) · [signature bundle](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.83.2/checksums.txt.sigstore.json) · [Release notes](/changelog)

        Download, verify, and install (linux/amd64 shown — swap `chainloop-linux-amd64` for another row from the table above):

        ```bash theme={"dark"}
        VERSION=v1.83.2
        BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION

        # Download the linux/amd64 binary and the checksum manifest
        curl -fsSLO "$BASE/chainloop-linux-amd64"
        curl -fsSLO "$BASE/checksums.txt"

        # Download the signature bundle and confirm the manifest itself came from Chainloop's release pipeline
        curl -fsSLO "$BASE/checksums.txt.sigstore.json"
        cosign verify-blob   --bundle=checksums.txt.sigstore.json   --certificate-oidc-issuer="https://token.actions.githubusercontent.com"   --certificate-identity-regexp="^https://github.com/chainloop-dev/platform/.github/workflows/release_backend.yml@"   checksums.txt

        # Verify the binary against the manifest
        sha256sum --ignore-missing -c checksums.txt
        # on macOS: shasum -a 256 --ignore-missing -c checksums.txt

        # Install it onto your PATH
        chmod +x chainloop-linux-amd64
        sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
        ```
      </Accordion>

      <Accordion title="v1.83.1">
        | OS    | Architecture  | Download                                                                                                                                  | SHA256                                                             |
        | ----- | ------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------ |
        | Linux | Intel (amd64) | [chainloop-linux-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.83.1/chainloop-linux-amd64)   | `dbafbf5fe00e932ed4162ba3dfce005c7433a5785f91c09ba6d83123207f6a58` |
        | Linux | ARM64         | [chainloop-linux-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.83.1/chainloop-linux-arm64)   | `751eb41a6d3b7fe42193f8f61ed84fb15f929ab8c2a1913771ef2b9f1cd7c379` |
        | macOS | Intel (amd64) | [chainloop-darwin-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.83.1/chainloop-darwin-amd64) | `74f6ee85380e06e77d6b50fcd90c5ac5a8be3ca24d040fce6075e2c251470c18` |
        | macOS | Apple Silicon | [chainloop-darwin-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.83.1/chainloop-darwin-arm64) | `bcf7e16cfd802fff8e9897050cfbeca7e2c26bda7b80ccde61444280e7921d79` |

        Full manifest: [`checksums.txt`](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.83.1/checksums.txt) · [signature bundle](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.83.1/checksums.txt.sigstore.json) · [Release notes](/changelog)

        Download, verify, and install (linux/amd64 shown — swap `chainloop-linux-amd64` for another row from the table above):

        ```bash theme={"dark"}
        VERSION=v1.83.1
        BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION

        # Download the linux/amd64 binary and the checksum manifest
        curl -fsSLO "$BASE/chainloop-linux-amd64"
        curl -fsSLO "$BASE/checksums.txt"

        # Download the signature bundle and confirm the manifest itself came from Chainloop's release pipeline
        curl -fsSLO "$BASE/checksums.txt.sigstore.json"
        cosign verify-blob   --bundle=checksums.txt.sigstore.json   --certificate-oidc-issuer="https://token.actions.githubusercontent.com"   --certificate-identity-regexp="^https://github.com/chainloop-dev/platform/.github/workflows/release_backend.yml@"   checksums.txt

        # Verify the binary against the manifest
        sha256sum --ignore-missing -c checksums.txt
        # on macOS: shasum -a 256 --ignore-missing -c checksums.txt

        # Install it onto your PATH
        chmod +x chainloop-linux-amd64
        sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
        ```
      </Accordion>

      <Accordion title="v1.83.0">
        | OS    | Architecture  | Download                                                                                                                                  | SHA256                                                             |
        | ----- | ------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------ |
        | Linux | Intel (amd64) | [chainloop-linux-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.83.0/chainloop-linux-amd64)   | `31c7682283b4ea7ed19f2965675f1c5e65c19698375370bfaa36f2abb43ec62d` |
        | Linux | ARM64         | [chainloop-linux-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.83.0/chainloop-linux-arm64)   | `87b85b35ca821642c6eff3c09aa658ef35175a68456d8c1c4e0bdff86ee65f23` |
        | macOS | Intel (amd64) | [chainloop-darwin-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.83.0/chainloop-darwin-amd64) | `45e0c1c71c8c792e0872951f36f70f4f7f67f990c701f8c76c1aa8aa1789d664` |
        | macOS | Apple Silicon | [chainloop-darwin-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.83.0/chainloop-darwin-arm64) | `b3bf5d38d5bc583e75fded104fceb4c69b952350db1a7c3e97879f4b8a6a5dc3` |

        Full manifest: [`checksums.txt`](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.83.0/checksums.txt) · [signature bundle](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.83.0/checksums.txt.sigstore.json) · [Release notes](/changelog)

        Download, verify, and install (linux/amd64 shown — swap `chainloop-linux-amd64` for another row from the table above):

        ```bash theme={"dark"}
        VERSION=v1.83.0
        BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION

        # Download the linux/amd64 binary and the checksum manifest
        curl -fsSLO "$BASE/chainloop-linux-amd64"
        curl -fsSLO "$BASE/checksums.txt"

        # Download the signature bundle and confirm the manifest itself came from Chainloop's release pipeline
        curl -fsSLO "$BASE/checksums.txt.sigstore.json"
        cosign verify-blob   --bundle=checksums.txt.sigstore.json   --certificate-oidc-issuer="https://token.actions.githubusercontent.com"   --certificate-identity-regexp="^https://github.com/chainloop-dev/platform/.github/workflows/release_backend.yml@"   checksums.txt

        # Verify the binary against the manifest
        sha256sum --ignore-missing -c checksums.txt
        # on macOS: shasum -a 256 --ignore-missing -c checksums.txt

        # Install it onto your PATH
        chmod +x chainloop-linux-amd64
        sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
        ```
      </Accordion>

      <Accordion title="v1.82.1">
        | OS    | Architecture  | Download                                                                                                                                  | SHA256                                                             |
        | ----- | ------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------ |
        | Linux | Intel (amd64) | [chainloop-linux-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.82.1/chainloop-linux-amd64)   | `514a1f5fa9830f69a9f2b850a28a92bec4e531a666b607220054a97610316033` |
        | Linux | ARM64         | [chainloop-linux-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.82.1/chainloop-linux-arm64)   | `a7a2b4527527d997120379fd0c036dbe2efa4d431521cc22f2e62cc644be8194` |
        | macOS | Intel (amd64) | [chainloop-darwin-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.82.1/chainloop-darwin-amd64) | `8d633ca7ab28e7d223f5444ab2bf73b45ca771cc35fe0abff0af64508328cf5b` |
        | macOS | Apple Silicon | [chainloop-darwin-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.82.1/chainloop-darwin-arm64) | `1346eed124025d7d92196734e85ec326210e718c6ffb497f2e8274e251cd0611` |

        Full manifest: [`checksums.txt`](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.82.1/checksums.txt) · [signature bundle](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.82.1/checksums.txt.sigstore.json) · [Release notes](/changelog)

        Download, verify, and install (linux/amd64 shown — swap `chainloop-linux-amd64` for another row from the table above):

        ```bash theme={"dark"}
        VERSION=v1.82.1
        BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION

        # Download the linux/amd64 binary and the checksum manifest
        curl -fsSLO "$BASE/chainloop-linux-amd64"
        curl -fsSLO "$BASE/checksums.txt"

        # Download the signature bundle and confirm the manifest itself came from Chainloop's release pipeline
        curl -fsSLO "$BASE/checksums.txt.sigstore.json"
        cosign verify-blob   --bundle=checksums.txt.sigstore.json   --certificate-oidc-issuer="https://token.actions.githubusercontent.com"   --certificate-identity-regexp="^https://github.com/chainloop-dev/platform/.github/workflows/release_backend.yml@"   checksums.txt

        # Verify the binary against the manifest
        sha256sum --ignore-missing -c checksums.txt
        # on macOS: shasum -a 256 --ignore-missing -c checksums.txt

        # Install it onto your PATH
        chmod +x chainloop-linux-amd64
        sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
        ```
      </Accordion>

      <Accordion title="v1.82.0">
        | OS    | Architecture  | Download                                                                                                                                  | SHA256                                                             |
        | ----- | ------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------ |
        | Linux | Intel (amd64) | [chainloop-linux-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.82.0/chainloop-linux-amd64)   | `7f9972d1570426a6536e9251d1117fb2d560e0502f7362d3b85a92dcc38d0f8b` |
        | Linux | ARM64         | [chainloop-linux-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.82.0/chainloop-linux-arm64)   | `2c2ef85197ff53a2ba2be924137bea7c435c65c940128723bea36463ffa859c4` |
        | macOS | Intel (amd64) | [chainloop-darwin-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.82.0/chainloop-darwin-amd64) | `4b6d284a575082e1b0c9690d49b6919d2d75acba322756b9fc14d146254c7f87` |
        | macOS | Apple Silicon | [chainloop-darwin-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.82.0/chainloop-darwin-arm64) | `589c43c7ef732b40f077cc75ecf4353ecafec392302f2c2e2678448f693f0e68` |

        Full manifest: [`checksums.txt`](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.82.0/checksums.txt) · [signature bundle](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.82.0/checksums.txt.sigstore.json) · [Release notes](/changelog)

        Download, verify, and install (linux/amd64 shown — swap `chainloop-linux-amd64` for another row from the table above):

        ```bash theme={"dark"}
        VERSION=v1.82.0
        BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION

        # Download the linux/amd64 binary and the checksum manifest
        curl -fsSLO "$BASE/chainloop-linux-amd64"
        curl -fsSLO "$BASE/checksums.txt"

        # Download the signature bundle and confirm the manifest itself came from Chainloop's release pipeline
        curl -fsSLO "$BASE/checksums.txt.sigstore.json"
        cosign verify-blob   --bundle=checksums.txt.sigstore.json   --certificate-oidc-issuer="https://token.actions.githubusercontent.com"   --certificate-identity-regexp="^https://github.com/chainloop-dev/platform/.github/workflows/release_backend.yml@"   checksums.txt

        # Verify the binary against the manifest
        sha256sum --ignore-missing -c checksums.txt
        # on macOS: shasum -a 256 --ignore-missing -c checksums.txt

        # Install it onto your PATH
        chmod +x chainloop-linux-amd64
        sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
        ```
      </Accordion>

      <Accordion title="v1.81.2">
        | OS    | Architecture  | Download                                                                                                                                  | SHA256                                                             |
        | ----- | ------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------ |
        | Linux | Intel (amd64) | [chainloop-linux-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.81.2/chainloop-linux-amd64)   | `300b9422a1ae90ddae69d2ff31f550c7f021576ad5bbbf44b1c2cd8b2cbf7260` |
        | Linux | ARM64         | [chainloop-linux-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.81.2/chainloop-linux-arm64)   | `4e707a2caa8ca5c15cd2d22eddc66849b4d7c3136ceabe980eeeb423ffa2022f` |
        | macOS | Intel (amd64) | [chainloop-darwin-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.81.2/chainloop-darwin-amd64) | `343183f4d0cf3a459b8da28706969ed4b4925163c3dd19de339190133b01f376` |
        | macOS | Apple Silicon | [chainloop-darwin-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.81.2/chainloop-darwin-arm64) | `f20b26c67513b037d1fb9e9b1b51fa508e5ca555dc521e973cff982eaac9d0f5` |

        Full manifest: [`checksums.txt`](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.81.2/checksums.txt) · [signature bundle](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.81.2/checksums.txt.sigstore.json) · [Release notes](/changelog)

        Download, verify, and install (linux/amd64 shown — swap `chainloop-linux-amd64` for another row from the table above):

        ```bash theme={"dark"}
        VERSION=v1.81.2
        BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION

        # Download the linux/amd64 binary and the checksum manifest
        curl -fsSLO "$BASE/chainloop-linux-amd64"
        curl -fsSLO "$BASE/checksums.txt"

        # Download the signature bundle and confirm the manifest itself came from Chainloop's release pipeline
        curl -fsSLO "$BASE/checksums.txt.sigstore.json"
        cosign verify-blob   --bundle=checksums.txt.sigstore.json   --certificate-oidc-issuer="https://token.actions.githubusercontent.com"   --certificate-identity-regexp="^https://github.com/chainloop-dev/platform/.github/workflows/release_backend.yml@"   checksums.txt

        # Verify the binary against the manifest
        sha256sum --ignore-missing -c checksums.txt
        # on macOS: shasum -a 256 --ignore-missing -c checksums.txt

        # Install it onto your PATH
        chmod +x chainloop-linux-amd64
        sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
        ```
      </Accordion>

      <Accordion title="v1.81.1">
        | OS    | Architecture  | Download                                                                                                                                  | SHA256                                                             |
        | ----- | ------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------ |
        | Linux | Intel (amd64) | [chainloop-linux-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.81.1/chainloop-linux-amd64)   | `e61200bc47fd9587baf3f3683bda02a9ea442da02b3546b37a574fce724a204b` |
        | Linux | ARM64         | [chainloop-linux-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.81.1/chainloop-linux-arm64)   | `3eda6c3e4631d1aa060a795530497a09ce047fe514ca4d9520b3385a63e42dec` |
        | macOS | Intel (amd64) | [chainloop-darwin-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.81.1/chainloop-darwin-amd64) | `9b71653cff5a2d086be0882bee4aad68f721047593397788b9e16a0f9a1ad179` |
        | macOS | Apple Silicon | [chainloop-darwin-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.81.1/chainloop-darwin-arm64) | `7119fca6f9a418c375e7c8be72e5de4371467d8f37d079b189ac7c95eb7efba4` |

        Full manifest: [`checksums.txt`](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.81.1/checksums.txt) · [signature bundle](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.81.1/checksums.txt.sigstore.json) · [Release notes](/changelog)

        Download, verify, and install (linux/amd64 shown — swap `chainloop-linux-amd64` for another row from the table above):

        ```bash theme={"dark"}
        VERSION=v1.81.1
        BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION

        # Download the linux/amd64 binary and the checksum manifest
        curl -fsSLO "$BASE/chainloop-linux-amd64"
        curl -fsSLO "$BASE/checksums.txt"

        # Download the signature bundle and confirm the manifest itself came from Chainloop's release pipeline
        curl -fsSLO "$BASE/checksums.txt.sigstore.json"
        cosign verify-blob \
          --bundle=checksums.txt.sigstore.json \
          --certificate-oidc-issuer="https://token.actions.githubusercontent.com" \
          --certificate-identity-regexp="^https://github.com/chainloop-dev/platform/\.github/workflows/release_backend\.yml@" \
          checksums.txt

        # Verify the binary against the manifest
        sha256sum --ignore-missing -c checksums.txt
        # on macOS: shasum -a 256 --ignore-missing -c checksums.txt

        # Install it onto your PATH
        chmod +x chainloop-linux-amd64
        sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
        ```
      </Accordion>

      <Accordion title="v1.81.0">
        | OS    | Architecture  | Download                                                                                                                                  | SHA256                                                             |
        | ----- | ------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------ |
        | Linux | Intel (amd64) | [chainloop-linux-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.81.0/chainloop-linux-amd64)   | `82a5c0d06c7e86327ca116557432c3fa45f6fea246851fce44e7b879718e2b1d` |
        | Linux | ARM64         | [chainloop-linux-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.81.0/chainloop-linux-arm64)   | `1513dc3f302200710d8277d35cdc32ae5d8dafbdbeec842034df070ba2dd8885` |
        | macOS | Intel (amd64) | [chainloop-darwin-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.81.0/chainloop-darwin-amd64) | `0a61b1c53f9ca4c32e53e83bdfaba05f1dd8c72c45403d9f18029248c36a0ee5` |
        | macOS | Apple Silicon | [chainloop-darwin-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.81.0/chainloop-darwin-arm64) | `190f9f6144a23b035618072733aad932cab1d1a837e978d104f9d0a8fd7daeb4` |

        Full manifest: [`checksums.txt`](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.81.0/checksums.txt) · [Release notes](/changelog)

        Download, verify, and install (linux/amd64 shown — swap `chainloop-linux-amd64` for another row from the table above):

        ```bash theme={"dark"}
        VERSION=v1.81.0
        BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION

        # Download the linux/amd64 binary and the checksum manifest
        curl -fsSLO "$BASE/chainloop-linux-amd64"
        curl -fsSLO "$BASE/checksums.txt"

        # Verify the binary against the manifest
        sha256sum --ignore-missing -c checksums.txt
        # on macOS: shasum -a 256 --ignore-missing -c checksums.txt

        # Install it onto your PATH
        chmod +x chainloop-linux-amd64
        sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
        ```
      </Accordion>

      <Accordion title="v1.80.0">
        | OS    | Architecture  | Download                                                                                                                                  | SHA256                                                             |
        | ----- | ------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------ |
        | Linux | Intel (amd64) | [chainloop-linux-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.80.0/chainloop-linux-amd64)   | `52dab2005c9b28fc9e6a9f8e487486f154c0619e7462e295bb27b7bc8d12a1b5` |
        | Linux | ARM64         | [chainloop-linux-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.80.0/chainloop-linux-arm64)   | `9c38eb1eb299056728c78c383987a8f106516ab3e278685234eb2cf55f69372c` |
        | macOS | Intel (amd64) | [chainloop-darwin-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.80.0/chainloop-darwin-amd64) | `c6b4481bbfaf8a167c67ae5b48a51603053a4b490688d43a7996f7407155b61f` |
        | macOS | Apple Silicon | [chainloop-darwin-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.80.0/chainloop-darwin-arm64) | `f14ba972673ebcb04a5dedbe5aecffeef5fbe42443cca26cf76dcdb51dd93867` |

        Full manifest: [`checksums.txt`](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.80.0/checksums.txt) · [Release notes](/changelog)

        Download, verify, and install (linux/amd64 shown — swap `chainloop-linux-amd64` for another row from the table above):

        ```bash theme={"dark"}
        VERSION=v1.80.0
        BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION

        # Download the linux/amd64 binary and the checksum manifest
        curl -fsSLO "$BASE/chainloop-linux-amd64"
        curl -fsSLO "$BASE/checksums.txt"

        # Verify the binary against the manifest
        sha256sum --ignore-missing -c checksums.txt
        # on macOS: shasum -a 256 --ignore-missing -c checksums.txt

        # Install it onto your PATH
        chmod +x chainloop-linux-amd64
        sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
        ```
      </Accordion>

      <Accordion title="v1.79.4">
        | OS    | Architecture  | Download                                                                                                                                  | SHA256                                                             |
        | ----- | ------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------ |
        | Linux | Intel (amd64) | [chainloop-linux-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.79.4/chainloop-linux-amd64)   | `3757313c8bd06dcbb893bc1cf0de5418389322559ea874813f2c4d23dee6aedc` |
        | Linux | ARM64         | [chainloop-linux-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.79.4/chainloop-linux-arm64)   | `537012d4249a1f67094e6ec2717f97476a18a3b6e9f91e69c4b84a1cf7f54088` |
        | macOS | Intel (amd64) | [chainloop-darwin-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.79.4/chainloop-darwin-amd64) | `f76dcbcf68ccc425ff6a7e8c8407dfe30c3783a54ac6616c56cbb787ac0c432b` |
        | macOS | Apple Silicon | [chainloop-darwin-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.79.4/chainloop-darwin-arm64) | `99cba5b5ff85e65fae177dc4d1e2b59c71c3a9b2e3356425149603f1f9c59817` |

        Full manifest: [`checksums.txt`](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.79.4/checksums.txt) · [Release notes](/changelog)

        Download, verify, and install (linux/amd64 shown — swap `chainloop-linux-amd64` for another row from the table above):

        ```bash theme={"dark"}
        VERSION=v1.79.4
        BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION

        # Download the linux/amd64 binary and the checksum manifest
        curl -fsSLO "$BASE/chainloop-linux-amd64"
        curl -fsSLO "$BASE/checksums.txt"

        # Verify the binary against the manifest
        sha256sum --ignore-missing -c checksums.txt
        # on macOS: shasum -a 256 --ignore-missing -c checksums.txt

        # Install it onto your PATH
        chmod +x chainloop-linux-amd64
        sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
        ```
      </Accordion>

      <Accordion title="v1.79.3">
        | OS    | Architecture  | Download                                                                                                                                  | SHA256                                                             |
        | ----- | ------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------ |
        | Linux | Intel (amd64) | [chainloop-linux-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.79.3/chainloop-linux-amd64)   | `1b8f9857b07ae086e234abbdad2ca2d6cff7073e7e2a5a6815514664c7ccb2ad` |
        | Linux | ARM64         | [chainloop-linux-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.79.3/chainloop-linux-arm64)   | `626a58737a9a3f5096cbe1d46de56d2f337153a70236e354c72ee8a6c5ebaccc` |
        | macOS | Intel (amd64) | [chainloop-darwin-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.79.3/chainloop-darwin-amd64) | `db6889b1f8718f9785b9d67a7a1581e3aed3ed82da796649f9060216e2e4bb1c` |
        | macOS | Apple Silicon | [chainloop-darwin-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.79.3/chainloop-darwin-arm64) | `c387ef1fce8a54f4df87a033c5ea03bf908d22c1f1fbe9dbd86e2aff55addd16` |

        Full manifest: [`checksums.txt`](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.79.3/checksums.txt) · [Release notes](/changelog)

        Download, verify, and install (linux/amd64 shown — swap `chainloop-linux-amd64` for another row from the table above):

        ```bash theme={"dark"}
        VERSION=v1.79.3
        BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION

        # Download the linux/amd64 binary and the checksum manifest
        curl -fsSLO "$BASE/chainloop-linux-amd64"
        curl -fsSLO "$BASE/checksums.txt"

        # Verify the binary against the manifest
        sha256sum --ignore-missing -c checksums.txt
        # on macOS: shasum -a 256 --ignore-missing -c checksums.txt

        # Install it onto your PATH
        chmod +x chainloop-linux-amd64
        sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
        ```
      </Accordion>

      <Accordion title="v1.79.2">
        | OS    | Architecture  | Download                                                                                                                                  | SHA256                                                             |
        | ----- | ------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------ |
        | Linux | Intel (amd64) | [chainloop-linux-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.79.2/chainloop-linux-amd64)   | `9e9720bd3f8f6cc500b40a55314d8cb45bc1e4d75a550847cd389392b4bdb92a` |
        | Linux | ARM64         | [chainloop-linux-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.79.2/chainloop-linux-arm64)   | `20ac37fb329655b00960101b152a2e5f93f25caccbb12e36b7b19ef90dca2247` |
        | macOS | Intel (amd64) | [chainloop-darwin-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.79.2/chainloop-darwin-amd64) | `470f431afde3abceceb3ebca5a108f7ce6910f554bdbe96ec3f79d7778cf67e7` |
        | macOS | Apple Silicon | [chainloop-darwin-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.79.2/chainloop-darwin-arm64) | `30d9c2ae004acb8bae8be1ac9cfbd324830220a841fcd6b55de8f9bdc68cd253` |

        Full manifest: [`checksums.txt`](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.79.2/checksums.txt) · [Release notes](/changelog)

        Download, verify, and install (linux/amd64 shown — swap `chainloop-linux-amd64` for another row from the table above):

        ```bash theme={"dark"}
        VERSION=v1.79.2
        BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION

        # Download the linux/amd64 binary and the checksum manifest
        curl -fsSLO "$BASE/chainloop-linux-amd64"
        curl -fsSLO "$BASE/checksums.txt"

        # Verify the binary against the manifest
        sha256sum --ignore-missing -c checksums.txt
        # on macOS: shasum -a 256 --ignore-missing -c checksums.txt

        # Install it onto your PATH
        chmod +x chainloop-linux-amd64
        sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
        ```
      </Accordion>

      <Accordion title="v1.79.1">
        | OS    | Architecture  | Download                                                                                                                                  | SHA256                                                             |
        | ----- | ------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------ |
        | Linux | Intel (amd64) | [chainloop-linux-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.79.1/chainloop-linux-amd64)   | `cd836ca5ca347355dc53add9b9e1ce17985caec5d29d8ea0bfbeef961b5e437c` |
        | Linux | ARM64         | [chainloop-linux-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.79.1/chainloop-linux-arm64)   | `7aa12d4f94241df8bb64de31399b156513013a17c937dbe6a922405acc577525` |
        | macOS | Intel (amd64) | [chainloop-darwin-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.79.1/chainloop-darwin-amd64) | `957682433e2facb0443fff7e9fc8b32902145553a80c6215a4e899a40f70ee96` |
        | macOS | Apple Silicon | [chainloop-darwin-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.79.1/chainloop-darwin-arm64) | `b1dedd04cb470de1788f1eebe9b81ad5ecb5318be74d2d3b8b0aaaf633db5c48` |

        Full manifest: [`checksums.txt`](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.79.1/checksums.txt) · [Release notes](/changelog)

        Download, verify, and install (linux/amd64 shown — swap `chainloop-linux-amd64` for another row from the table above):

        ```bash theme={"dark"}
        VERSION=v1.79.1
        BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION

        # Download the linux/amd64 binary and the checksum manifest
        curl -fsSLO "$BASE/chainloop-linux-amd64"
        curl -fsSLO "$BASE/checksums.txt"

        # Verify the binary against the manifest
        sha256sum --ignore-missing -c checksums.txt
        # on macOS: shasum -a 256 --ignore-missing -c checksums.txt

        # Install it onto your PATH
        chmod +x chainloop-linux-amd64
        sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
        ```
      </Accordion>

      <Accordion title="v1.78.0">
        | OS    | Architecture  | Download                                                                                                                                  | SHA256                                                             |
        | ----- | ------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------ |
        | Linux | Intel (amd64) | [chainloop-linux-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.78.0/chainloop-linux-amd64)   | `ca81ffd9ff3c1b8d8578ee75eaf41e353137bd8c80960acb7647579528eefc2a` |
        | Linux | ARM64         | [chainloop-linux-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.78.0/chainloop-linux-arm64)   | `30f50b7bf33ba7638c410f92b1521f3b6079464a366fda8e5f6ed2a77dbd84ba` |
        | macOS | Intel (amd64) | [chainloop-darwin-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.78.0/chainloop-darwin-amd64) | `b6351e4f0f8e014b6479482f4280a39486f462f4d7e528f1e201890444351bb8` |
        | macOS | Apple Silicon | [chainloop-darwin-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.78.0/chainloop-darwin-arm64) | `a4f999b088475d8076262997c25c8597934a2cf1e3011a5ccb4528090f1d84a9` |

        Full manifest: [`checksums.txt`](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.78.0/checksums.txt) · [Release notes](/changelog)

        Download, verify, and install (linux/amd64 shown — swap `chainloop-linux-amd64` for another row from the table above):

        ```bash theme={"dark"}
        VERSION=v1.78.0
        BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION

        # Download the linux/amd64 binary and the checksum manifest
        curl -fsSLO "$BASE/chainloop-linux-amd64"
        curl -fsSLO "$BASE/checksums.txt"

        # Verify the binary against the manifest
        sha256sum --ignore-missing -c checksums.txt
        # on macOS: shasum -a 256 --ignore-missing -c checksums.txt

        # Install it onto your PATH
        chmod +x chainloop-linux-amd64
        sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
        ```
      </Accordion>

      <Accordion title="v1.77.8">
        | OS    | Architecture  | Download                                                                                                                                  | SHA256                                                             |
        | ----- | ------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------ |
        | Linux | Intel (amd64) | [chainloop-linux-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.77.8/chainloop-linux-amd64)   | `6b650621b3a7f2c1f4fcdb17416ac0834946c719462e84265b9f972e99ec77f4` |
        | Linux | ARM64         | [chainloop-linux-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.77.8/chainloop-linux-arm64)   | `55800ab5867f9670956fa03b27249320faae3aa39a03fd85c283eeab565d5fda` |
        | macOS | Intel (amd64) | [chainloop-darwin-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.77.8/chainloop-darwin-amd64) | `c6dd3f5be0094b7561822ae8d5cffd6eb3200d4ccf3495f49773a960a40b634e` |
        | macOS | Apple Silicon | [chainloop-darwin-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.77.8/chainloop-darwin-arm64) | `87a4c80e61f162580d3c1ca337fb3168f6c7af27a749b5f82138b2f6c25ac5ce` |

        Full manifest: [`checksums.txt`](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.77.8/checksums.txt) · [Release notes](/changelog)

        Download, verify, and install (linux/amd64 shown — swap `chainloop-linux-amd64` for another row from the table above):

        ```bash theme={"dark"}
        VERSION=v1.77.8
        BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION

        # Download the linux/amd64 binary and the checksum manifest
        curl -fsSLO "$BASE/chainloop-linux-amd64"
        curl -fsSLO "$BASE/checksums.txt"

        # Verify the binary against the manifest
        sha256sum --ignore-missing -c checksums.txt
        # on macOS: shasum -a 256 --ignore-missing -c checksums.txt

        # Install it onto your PATH
        chmod +x chainloop-linux-amd64
        sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
        ```
      </Accordion>

      <Accordion title="v1.77.7">
        | OS    | Architecture  | Download                                                                                                                                  | SHA256                                                             |
        | ----- | ------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------ |
        | Linux | Intel (amd64) | [chainloop-linux-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.77.7/chainloop-linux-amd64)   | `f0240db3a89c4aac7236ce6afd81d16a93fd5e6f1b88f3baefa618b83e1312c4` |
        | Linux | ARM64         | [chainloop-linux-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.77.7/chainloop-linux-arm64)   | `df6b29cd03ac63436920fc25ff1494649b52259344738db4616236f60c7e05a8` |
        | macOS | Intel (amd64) | [chainloop-darwin-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.77.7/chainloop-darwin-amd64) | `69b63242e72a3ae2b68cc8c22c9849a0afd547a92e4669f4a0cfb6547f6e00f0` |
        | macOS | Apple Silicon | [chainloop-darwin-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.77.7/chainloop-darwin-arm64) | `b54a21756e4cd7bf3b556736b58dd638ecda9deef5a558db1c33e2f580bac6b8` |

        Full manifest: [`checksums.txt`](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.77.7/checksums.txt) · [Release notes](/changelog)

        Download, verify, and install (linux/amd64 shown — swap `chainloop-linux-amd64` for another row from the table above):

        ```bash theme={"dark"}
        VERSION=v1.77.7
        BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION

        # Download the linux/amd64 binary and the checksum manifest
        curl -fsSLO "$BASE/chainloop-linux-amd64"
        curl -fsSLO "$BASE/checksums.txt"

        # Verify the binary against the manifest
        sha256sum --ignore-missing -c checksums.txt
        # on macOS: shasum -a 256 --ignore-missing -c checksums.txt

        # Install it onto your PATH
        chmod +x chainloop-linux-amd64
        sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
        ```
      </Accordion>

      <Accordion title="v1.77.6">
        | OS    | Architecture  | Download                                                                                                                                  | SHA256                                                             |
        | ----- | ------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------ |
        | Linux | Intel (amd64) | [chainloop-linux-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.77.6/chainloop-linux-amd64)   | `21e98926bbd2a3d29683f7ee8623b93cca29d11d9633c2a9684dca0deaccc3aa` |
        | Linux | ARM64         | [chainloop-linux-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.77.6/chainloop-linux-arm64)   | `0b26372fb89a3bfb5e94e8db0b305695e545e9369f442a26fe0732a16c578a2c` |
        | macOS | Intel (amd64) | [chainloop-darwin-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.77.6/chainloop-darwin-amd64) | `328a97c52665d7ae5a3391278f6cc9bf26de38430258928f58819384a8722027` |
        | macOS | Apple Silicon | [chainloop-darwin-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.77.6/chainloop-darwin-arm64) | `d20500b922323626fdfd21178ccc06ff23e02df2ac9c4a8e690b143c21e68545` |

        Full manifest: [`checksums.txt`](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.77.6/checksums.txt) · [Release notes](/changelog)

        Download, verify, and install (linux/amd64 shown — swap `chainloop-linux-amd64` for another row from the table above):

        ```bash theme={"dark"}
        VERSION=v1.77.6
        BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION

        # Download the linux/amd64 binary and the checksum manifest
        curl -fsSLO "$BASE/chainloop-linux-amd64"
        curl -fsSLO "$BASE/checksums.txt"

        # Verify the binary against the manifest
        sha256sum --ignore-missing -c checksums.txt
        # on macOS: shasum -a 256 --ignore-missing -c checksums.txt

        # Install it onto your PATH
        chmod +x chainloop-linux-amd64
        sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
        ```
      </Accordion>

      <Accordion title="v1.77.4">
        | OS    | Architecture  | Download                                                                                                                                  | SHA256                                                             |
        | ----- | ------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------ |
        | Linux | Intel (amd64) | [chainloop-linux-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.77.4/chainloop-linux-amd64)   | `65b783560c78f9a66074a42c756a0c7f834535194fae8fbe784db5eb61649146` |
        | Linux | ARM64         | [chainloop-linux-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.77.4/chainloop-linux-arm64)   | `3e5ad838ad896e193baf289a247ac7547419b245b31a656b2b4e53ab5bcf0e3d` |
        | macOS | Intel (amd64) | [chainloop-darwin-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.77.4/chainloop-darwin-amd64) | `15259d8df575b390a5b2b5e0989f88b1f8679b4d41e96e9caa69bb4dda0debda` |
        | macOS | Apple Silicon | [chainloop-darwin-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.77.4/chainloop-darwin-arm64) | `27149a07fd7670771f197b965837b0471d7239259b87695d46a840314c761c67` |

        Full manifest: [`checksums.txt`](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.77.4/checksums.txt) · [Release notes](/changelog)

        Download, verify, and install (linux/amd64 shown — swap `chainloop-linux-amd64` for another row from the table above):

        ```bash theme={"dark"}
        VERSION=v1.77.4
        BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION

        # Download the linux/amd64 binary and the checksum manifest
        curl -fsSLO "$BASE/chainloop-linux-amd64"
        curl -fsSLO "$BASE/checksums.txt"

        # Verify the binary against the manifest
        sha256sum --ignore-missing -c checksums.txt
        # on macOS: shasum -a 256 --ignore-missing -c checksums.txt

        # Install it onto your PATH
        chmod +x chainloop-linux-amd64
        sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
        ```
      </Accordion>

      <Accordion title="v1.77.2">
        | OS    | Architecture  | Download                                                                                                                                  | SHA256                                                             |
        | ----- | ------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------ |
        | Linux | Intel (amd64) | [chainloop-linux-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.77.2/chainloop-linux-amd64)   | `960bea7ef536970bf2320e60b08b63bf5c0574cf32e02146a79dcc3d64aa9cf9` |
        | Linux | ARM64         | [chainloop-linux-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.77.2/chainloop-linux-arm64)   | `b55af5e8889164618936667c8272059d292f73443fc661d5e11185c721801347` |
        | macOS | Intel (amd64) | [chainloop-darwin-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.77.2/chainloop-darwin-amd64) | `df5d185dc229c05452a3fe7f42eb2fd4c8b320f802d67b817836407cf0f7a2a0` |
        | macOS | Apple Silicon | [chainloop-darwin-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.77.2/chainloop-darwin-arm64) | `b782e9c03010d2f1cc871dc656922e27ec52c3a3a11cb64d0dfa7ce59dea9760` |

        Full manifest: [`checksums.txt`](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.77.2/checksums.txt) · [Release notes](/changelog)

        Download, verify, and install (linux/amd64 shown — swap `chainloop-linux-amd64` for another row from the table above):

        ```bash theme={"dark"}
        VERSION=v1.77.2
        BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION

        # Download the linux/amd64 binary and the checksum manifest
        curl -fsSLO "$BASE/chainloop-linux-amd64"
        curl -fsSLO "$BASE/checksums.txt"

        # Verify the binary against the manifest
        sha256sum --ignore-missing -c checksums.txt
        # on macOS: shasum -a 256 --ignore-missing -c checksums.txt

        # Install it onto your PATH
        chmod +x chainloop-linux-amd64
        sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
        ```
      </Accordion>

      <Accordion title="v1.77.1">
        | OS    | Architecture  | Download                                                                                                                                  | SHA256                                                             |
        | ----- | ------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------ |
        | Linux | Intel (amd64) | [chainloop-linux-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.77.1/chainloop-linux-amd64)   | `9f9ceaa5c19dd3221ca23220ac22f968d77265fe914d13d11f8c553865e60858` |
        | Linux | ARM64         | [chainloop-linux-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.77.1/chainloop-linux-arm64)   | `4d9bcfdd2f8933219f1f64b848cdaab7722f34a588cd16155136b76f48c0e2b7` |
        | macOS | Intel (amd64) | [chainloop-darwin-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.77.1/chainloop-darwin-amd64) | `48b3de7905362624a90aaa6424c49fbd54bb59777a6eee5e51cd4fd5516ca6c6` |
        | macOS | Apple Silicon | [chainloop-darwin-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.77.1/chainloop-darwin-arm64) | `6a2e7c9c5980b69c342ecabceb582fd7b33b13d362d69f71d2b6929d47c7bbb0` |

        Full manifest: [`checksums.txt`](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.77.1/checksums.txt) · [Release notes](/changelog)

        Download, verify, and install (linux/amd64 shown — swap `chainloop-linux-amd64` for another row from the table above):

        ```bash theme={"dark"}
        VERSION=v1.77.1
        BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION

        # Download the linux/amd64 binary and the checksum manifest
        curl -fsSLO "$BASE/chainloop-linux-amd64"
        curl -fsSLO "$BASE/checksums.txt"

        # Verify the binary against the manifest
        sha256sum --ignore-missing -c checksums.txt
        # on macOS: shasum -a 256 --ignore-missing -c checksums.txt

        # Install it onto your PATH
        chmod +x chainloop-linux-amd64
        sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
        ```
      </Accordion>

      <Accordion title="v1.77.0">
        | OS    | Architecture  | Download                                                                                                                                  | SHA256                                                             |
        | ----- | ------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------ |
        | Linux | Intel (amd64) | [chainloop-linux-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.77.0/chainloop-linux-amd64)   | `99b189c3f2fa135fc22d242497dcc6ca37f4dca1e28aaf5f90f6f535f9264684` |
        | Linux | ARM64         | [chainloop-linux-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.77.0/chainloop-linux-arm64)   | `f7c7d0911f81a78a4191928a7d948453fe3b3dcc06eeb850604489c04701f153` |
        | macOS | Intel (amd64) | [chainloop-darwin-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.77.0/chainloop-darwin-amd64) | `4fc28e9d7a26095ec219c2d9bcdb0ef39acae9a0120a542bd8a1dbf14546e3f1` |
        | macOS | Apple Silicon | [chainloop-darwin-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.77.0/chainloop-darwin-arm64) | `e86bb44a1b2407df71ebd9a775a6f5a5de770e1182dc107549bcb855899eca60` |

        Full manifest: [`checksums.txt`](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.77.0/checksums.txt) · [Release notes](/changelog)

        Download, verify, and install (linux/amd64 shown — swap `chainloop-linux-amd64` for another row from the table above):

        ```bash theme={"dark"}
        VERSION=v1.77.0
        BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION

        # Download the linux/amd64 binary and the checksum manifest
        curl -fsSLO "$BASE/chainloop-linux-amd64"
        curl -fsSLO "$BASE/checksums.txt"

        # Verify the binary against the manifest
        sha256sum --ignore-missing -c checksums.txt
        # on macOS: shasum -a 256 --ignore-missing -c checksums.txt

        # Install it onto your PATH
        chmod +x chainloop-linux-amd64
        sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
        ```
      </Accordion>

      <Accordion title="v1.76.5">
        | OS    | Architecture  | Download                                                                                                                                  | SHA256                                                             |
        | ----- | ------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------ |
        | Linux | Intel (amd64) | [chainloop-linux-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.76.5/chainloop-linux-amd64)   | `0b78bc6d840e4c9d2987219af784a211fbf5df2bb84dcc54aad8b61b24f2a3b7` |
        | Linux | ARM64         | [chainloop-linux-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.76.5/chainloop-linux-arm64)   | `075aca72dd9c361ecb3c7689cd93f885f7bb9c0edec0dc7932b32b4e561f8106` |
        | macOS | Intel (amd64) | [chainloop-darwin-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.76.5/chainloop-darwin-amd64) | `7598c591d6a9502a7f1db67d2f66f63f369890f9fc2325f116dd335c053a8a2f` |
        | macOS | Apple Silicon | [chainloop-darwin-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.76.5/chainloop-darwin-arm64) | `efb046ae23dc9e66e4738382a245a2a59a50399d20bae0eb17dab77df35896e2` |

        Full manifest: [`checksums.txt`](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.76.5/checksums.txt) · [Release notes](/changelog)

        Download, verify, and install (linux/amd64 shown — swap `chainloop-linux-amd64` for another row from the table above):

        ```bash theme={"dark"}
        VERSION=v1.76.5
        BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION

        # Download the linux/amd64 binary and the checksum manifest
        curl -fsSLO "$BASE/chainloop-linux-amd64"
        curl -fsSLO "$BASE/checksums.txt"

        # Verify the binary against the manifest
        sha256sum --ignore-missing -c checksums.txt
        # on macOS: shasum -a 256 --ignore-missing -c checksums.txt

        # Install it onto your PATH
        chmod +x chainloop-linux-amd64
        sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
        ```
      </Accordion>

      <Accordion title="v1.76.4">
        | OS    | Architecture  | Download                                                                                                                                  | SHA256                                                             |
        | ----- | ------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------ |
        | Linux | Intel (amd64) | [chainloop-linux-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.76.4/chainloop-linux-amd64)   | `989bdf986e7350ec3b96e5b696291b68bf560c448670533d2e7946cf376933c7` |
        | Linux | ARM64         | [chainloop-linux-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.76.4/chainloop-linux-arm64)   | `e6d38023d84695b9cd47a022e1a8e080c868abe0031784ea2828921070d98cb3` |
        | macOS | Intel (amd64) | [chainloop-darwin-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.76.4/chainloop-darwin-amd64) | `d0ec7374c088e9a0689a919efb6c9277e8c0f37689b234495682c2d5766c95c5` |
        | macOS | Apple Silicon | [chainloop-darwin-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.76.4/chainloop-darwin-arm64) | `01d126711b14e19f8ee5765615dece574263ef5e65a17598d5894a8a40b58d93` |

        Full manifest: [`checksums.txt`](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.76.4/checksums.txt) · [Release notes](/changelog)

        Download, verify, and install (linux/amd64 shown — swap `chainloop-linux-amd64` for another row from the table above):

        ```bash theme={"dark"}
        VERSION=v1.76.4
        BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION

        # Download the linux/amd64 binary and the checksum manifest
        curl -fsSLO "$BASE/chainloop-linux-amd64"
        curl -fsSLO "$BASE/checksums.txt"

        # Verify the binary against the manifest
        sha256sum --ignore-missing -c checksums.txt
        # on macOS: shasum -a 256 --ignore-missing -c checksums.txt

        # Install it onto your PATH
        chmod +x chainloop-linux-amd64
        sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
        ```
      </Accordion>

      <Accordion title="v1.76.3">
        | OS    | Architecture  | Download                                                                                                                                  | SHA256                                                             |
        | ----- | ------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------ |
        | Linux | Intel (amd64) | [chainloop-linux-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.76.3/chainloop-linux-amd64)   | `998c674c39704601e4fcc3c2f7e8eb928b8bcd44ad36da66cb50fb52f1f92146` |
        | Linux | ARM64         | [chainloop-linux-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.76.3/chainloop-linux-arm64)   | `7bc7208257ca1b2c63c1b22121b991550a945644844dfe77eb79a38c9ecd55ac` |
        | macOS | Intel (amd64) | [chainloop-darwin-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.76.3/chainloop-darwin-amd64) | `a3627e054c92100fc268ab1a964a1f2724cae4a46b3514ab56f2aa7cd968df4a` |
        | macOS | Apple Silicon | [chainloop-darwin-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.76.3/chainloop-darwin-arm64) | `5d2a9f91b3ad9c662d0a510ca77b9eab58540aab47e5a99070aaa9f90ce43886` |

        Full manifest: [`checksums.txt`](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.76.3/checksums.txt) · [Release notes](/changelog)

        Download, verify, and install (linux/amd64 shown — swap `chainloop-linux-amd64` for another row from the table above):

        ```bash theme={"dark"}
        VERSION=v1.76.3
        BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION

        # Download the linux/amd64 binary and the checksum manifest
        curl -fsSLO "$BASE/chainloop-linux-amd64"
        curl -fsSLO "$BASE/checksums.txt"

        # Verify the binary against the manifest
        sha256sum --ignore-missing -c checksums.txt
        # on macOS: shasum -a 256 --ignore-missing -c checksums.txt

        # Install it onto your PATH
        chmod +x chainloop-linux-amd64
        sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
        ```
      </Accordion>

      <Accordion title="v1.76.2">
        | OS    | Architecture  | Download                                                                                                                                  | SHA256                                                             |
        | ----- | ------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------ |
        | Linux | Intel (amd64) | [chainloop-linux-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.76.2/chainloop-linux-amd64)   | `e4d2788abeeea0e835af06deb9028accff29beb432a09353e403339a0aafd072` |
        | Linux | ARM64         | [chainloop-linux-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.76.2/chainloop-linux-arm64)   | `1c2c40e365700768b804c5f4d3000217fc80dbf839203fe907576ef4ea1f441e` |
        | macOS | Intel (amd64) | [chainloop-darwin-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.76.2/chainloop-darwin-amd64) | `0c88e20c3920a31741d771451ae1d71b9ff478eafad263cbdf9d5b22674d7523` |
        | macOS | Apple Silicon | [chainloop-darwin-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.76.2/chainloop-darwin-arm64) | `084020f7dfd064d386f3395a0c06a75f82de93bfe5aafa8d4998833b98c74e0d` |

        Full manifest: [`checksums.txt`](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.76.2/checksums.txt) · [Release notes](/changelog)

        Download, verify, and install (linux/amd64 shown — swap `chainloop-linux-amd64` for another row from the table above):

        ```bash theme={"dark"}
        VERSION=v1.76.2
        BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION

        # Download the linux/amd64 binary and the checksum manifest
        curl -fsSLO "$BASE/chainloop-linux-amd64"
        curl -fsSLO "$BASE/checksums.txt"

        # Verify the binary against the manifest
        sha256sum --ignore-missing -c checksums.txt
        # on macOS: shasum -a 256 --ignore-missing -c checksums.txt

        # Install it onto your PATH
        chmod +x chainloop-linux-amd64
        sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
        ```
      </Accordion>

      <Accordion title="v1.76.1">
        | OS    | Architecture  | Download                                                                                                                                  | SHA256                                                             |
        | ----- | ------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------ |
        | Linux | Intel (amd64) | [chainloop-linux-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.76.1/chainloop-linux-amd64)   | `600538157376d7f0bb72fcf238cbb15be4b65b041c094b623ad0189cc6396512` |
        | Linux | ARM64         | [chainloop-linux-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.76.1/chainloop-linux-arm64)   | `ba6f023b431f3a0e302914b3f40f8cbda2c1ee91fccf9b095ce1f4a0cd8fbe7c` |
        | macOS | Intel (amd64) | [chainloop-darwin-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.76.1/chainloop-darwin-amd64) | `661935f0a14c5da312b91b2650d7cdfa548255c909b538b53f7427d8d74f9410` |
        | macOS | Apple Silicon | [chainloop-darwin-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.76.1/chainloop-darwin-arm64) | `be55c18f0783630eda24fcb0488390010b71844add09b6094bf8860845e74e35` |

        Full manifest: [`checksums.txt`](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.76.1/checksums.txt) · [Release notes](/changelog)

        Download, verify, and install (linux/amd64 shown — swap `chainloop-linux-amd64` for another row from the table above):

        ```bash theme={"dark"}
        VERSION=v1.76.1
        BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION

        # Download the linux/amd64 binary and the checksum manifest
        curl -fsSLO "$BASE/chainloop-linux-amd64"
        curl -fsSLO "$BASE/checksums.txt"

        # Verify the binary against the manifest
        sha256sum --ignore-missing -c checksums.txt
        # on macOS: shasum -a 256 --ignore-missing -c checksums.txt

        # Install it onto your PATH
        chmod +x chainloop-linux-amd64
        sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
        ```
      </Accordion>

      <Accordion title="v1.75.4">
        | OS    | Architecture  | Download                                                                                                                                  | SHA256                                                             |
        | ----- | ------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------ |
        | Linux | Intel (amd64) | [chainloop-linux-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.75.4/chainloop-linux-amd64)   | `f1faba042467752683ef35c6e314c6fad393c145c4dd6e57cd21ecbd56379aff` |
        | Linux | ARM64         | [chainloop-linux-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.75.4/chainloop-linux-arm64)   | `91479275a96530bc31730b061d9270e91a5a07ca3dc3a71f81143d06539cfb0d` |
        | macOS | Intel (amd64) | [chainloop-darwin-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.75.4/chainloop-darwin-amd64) | `897d49f22a3a195e29cb208943d9347caa99a117363a412df059152f3c44b7d1` |
        | macOS | Apple Silicon | [chainloop-darwin-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.75.4/chainloop-darwin-arm64) | `480d8eaa34c7b0af205b14bf734ad549721c8e73146d3fcfe2ce90b6ec9ded4b` |

        Full manifest: [`checksums.txt`](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.75.4/checksums.txt) · [Release notes](/changelog)

        Download, verify, and install (linux/amd64 shown — swap `chainloop-linux-amd64` for another row from the table above):

        ```bash theme={"dark"}
        VERSION=v1.75.4
        BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION

        # Download the linux/amd64 binary and the checksum manifest
        curl -fsSLO "$BASE/chainloop-linux-amd64"
        curl -fsSLO "$BASE/checksums.txt"

        # Verify the binary against the manifest
        sha256sum --ignore-missing -c checksums.txt
        # on macOS: shasum -a 256 --ignore-missing -c checksums.txt

        # Install it onto your PATH
        chmod +x chainloop-linux-amd64
        sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
        ```
      </Accordion>

      <Accordion title="v1.75.3">
        | OS    | Architecture  | Download                                                                                                                                  | SHA256                                                             |
        | ----- | ------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------ |
        | Linux | Intel (amd64) | [chainloop-linux-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.75.3/chainloop-linux-amd64)   | `dfb8679fe9d716400a010895b9ff0c464ba38cec25d1be6f76a7538199bae67e` |
        | Linux | ARM64         | [chainloop-linux-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.75.3/chainloop-linux-arm64)   | `89a6803280ab032b5afdae48c5813a19bd04b220a0aec13f03ca92bcd9314616` |
        | macOS | Intel (amd64) | [chainloop-darwin-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.75.3/chainloop-darwin-amd64) | `9b694b4efba85795b2069ce07d4b7b43e9515dfcd60f1d59c8cf70e626df487e` |
        | macOS | Apple Silicon | [chainloop-darwin-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.75.3/chainloop-darwin-arm64) | `1719ea1c2609a0d76502adab97e271f074edc25cef3a99696b7dca82662b8df1` |

        Full manifest: [`checksums.txt`](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.75.3/checksums.txt) · [Release notes](/changelog)

        Download, verify, and install (linux/amd64 shown — swap `chainloop-linux-amd64` for another row from the table above):

        ```bash theme={"dark"}
        VERSION=v1.75.3
        BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION

        # Download the linux/amd64 binary and the checksum manifest
        curl -fsSLO "$BASE/chainloop-linux-amd64"
        curl -fsSLO "$BASE/checksums.txt"

        # Verify the binary against the manifest
        sha256sum --ignore-missing -c checksums.txt
        # on macOS: shasum -a 256 --ignore-missing -c checksums.txt

        # Install it onto your PATH
        chmod +x chainloop-linux-amd64
        sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
        ```
      </Accordion>

      <Accordion title="v1.75.2">
        | OS    | Architecture  | Download                                                                                                                                  | SHA256                                                             |
        | ----- | ------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------ |
        | Linux | Intel (amd64) | [chainloop-linux-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.75.2/chainloop-linux-amd64)   | `8a9d57ad70268164c5654c068330036ac2f2de7e04af7f816bd1575731b5f68c` |
        | Linux | ARM64         | [chainloop-linux-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.75.2/chainloop-linux-arm64)   | `e36550ce59f3d3a8e4a6503c91a75c1c3b31c0ccc843e2b294240e4a2758a794` |
        | macOS | Intel (amd64) | [chainloop-darwin-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.75.2/chainloop-darwin-amd64) | `5521b87df76bac5944b3875a066bb5fd37dd64733ce1633c82d3ea91bfeadf21` |
        | macOS | Apple Silicon | [chainloop-darwin-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.75.2/chainloop-darwin-arm64) | `2fa6e4c73b0456e213370c5308d2ccf012253e34badfe44a08f1e11361c6c5af` |

        Full manifest: [`checksums.txt`](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.75.2/checksums.txt) · [Release notes](/changelog)

        Download, verify, and install (linux/amd64 shown — swap `chainloop-linux-amd64` for another row from the table above):

        ```bash theme={"dark"}
        VERSION=v1.75.2
        BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION

        # Download the linux/amd64 binary and the checksum manifest
        curl -fsSLO "$BASE/chainloop-linux-amd64"
        curl -fsSLO "$BASE/checksums.txt"

        # Verify the binary against the manifest
        sha256sum --ignore-missing -c checksums.txt
        # on macOS: shasum -a 256 --ignore-missing -c checksums.txt

        # Install it onto your PATH
        chmod +x chainloop-linux-amd64
        sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
        ```
      </Accordion>

      <Accordion title="v1.75.1">
        | OS    | Architecture  | Download                                                                                                                                  | SHA256                                                             |
        | ----- | ------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------ |
        | Linux | Intel (amd64) | [chainloop-linux-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.75.1/chainloop-linux-amd64)   | `a6a1e4438e3a0f9a66ac471bee85bd4abb70f5d40c2c22e224e44454aa9da372` |
        | Linux | ARM64         | [chainloop-linux-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.75.1/chainloop-linux-arm64)   | `82a121782f63f0560447b120670a1da55cda27d158eae8c758242bce0ff7bb46` |
        | macOS | Intel (amd64) | [chainloop-darwin-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.75.1/chainloop-darwin-amd64) | `161ee05bfc118b3f02227f5a07ff0590941d3dbc79a75ef816cab2add0846570` |
        | macOS | Apple Silicon | [chainloop-darwin-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.75.1/chainloop-darwin-arm64) | `be5243ad906f14f7a24152b1dd03d4ffc467906858ebe6a0efcf90250f36f8f9` |

        Full manifest: [`checksums.txt`](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.75.1/checksums.txt) · [Release notes](/changelog)

        Download, verify, and install (linux/amd64 shown — swap `chainloop-linux-amd64` for another row from the table above):

        ```bash theme={"dark"}
        VERSION=v1.75.1
        BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION

        # Download the linux/amd64 binary and the checksum manifest
        curl -fsSLO "$BASE/chainloop-linux-amd64"
        curl -fsSLO "$BASE/checksums.txt"

        # Verify the binary against the manifest
        sha256sum --ignore-missing -c checksums.txt
        # on macOS: shasum -a 256 --ignore-missing -c checksums.txt

        # Install it onto your PATH
        chmod +x chainloop-linux-amd64
        sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
        ```
      </Accordion>

      <Accordion title="v1.75.0">
        | OS    | Architecture  | Download                                                                                                                                  | SHA256                                                             |
        | ----- | ------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------ |
        | Linux | Intel (amd64) | [chainloop-linux-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.75.0/chainloop-linux-amd64)   | `c985fd3213a758257e22fa062bd1b4c32c28dc13d4c9061e9992a40f7f685b9a` |
        | Linux | ARM64         | [chainloop-linux-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.75.0/chainloop-linux-arm64)   | `0f570b3e9762c52ceb76f880403d236e917fac7a598621a4debf3418a9440a51` |
        | macOS | Intel (amd64) | [chainloop-darwin-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.75.0/chainloop-darwin-amd64) | `120cb395a3a9f1aead9ee3c9b45e9d083da60afacc752f8918ed93f523b70a4d` |
        | macOS | Apple Silicon | [chainloop-darwin-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.75.0/chainloop-darwin-arm64) | `fb179668461887e87fc1be3fbd32f3241bc1975c1b3188880d4ae6020ebffdad` |

        Full manifest: [`checksums.txt`](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.75.0/checksums.txt) · [Release notes](/changelog)

        Download, verify, and install (linux/amd64 shown — swap `chainloop-linux-amd64` for another row from the table above):

        ```bash theme={"dark"}
        VERSION=v1.75.0
        BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION

        # Download the linux/amd64 binary and the checksum manifest
        curl -fsSLO "$BASE/chainloop-linux-amd64"
        curl -fsSLO "$BASE/checksums.txt"

        # Verify the binary against the manifest
        sha256sum --ignore-missing -c checksums.txt
        # on macOS: shasum -a 256 --ignore-missing -c checksums.txt

        # Install it onto your PATH
        chmod +x chainloop-linux-amd64
        sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
        ```
      </Accordion>

      <Accordion title="v1.74.1">
        | OS    | Architecture  | Download                                                                                                                                  | SHA256                                                             |
        | ----- | ------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------ |
        | Linux | Intel (amd64) | [chainloop-linux-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.74.1/chainloop-linux-amd64)   | `4019d9d5b18c4f2cf67f8300f64a27eeeecff04acca9af5892d89007600d351d` |
        | Linux | ARM64         | [chainloop-linux-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.74.1/chainloop-linux-arm64)   | `826bf90f9922b9d5db41fb9dab8ee40f0dc09969b44b62a61e7bee2fde0db734` |
        | macOS | Intel (amd64) | [chainloop-darwin-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.74.1/chainloop-darwin-amd64) | `ce4545fb993dc295c8cd5d26f85ad3032dc25bfe9c68267b5cf66db1d4774796` |
        | macOS | Apple Silicon | [chainloop-darwin-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.74.1/chainloop-darwin-arm64) | `7e337bde4e79c004b3c9c5e9cd0200bee924105c199050c96fabc2fb28198477` |

        Full manifest: [`checksums.txt`](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.74.1/checksums.txt) · [Release notes](/changelog)

        Download, verify, and install (linux/amd64 shown — swap `chainloop-linux-amd64` for another row from the table above):

        ```bash theme={"dark"}
        VERSION=v1.74.1
        BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION

        # Download the linux/amd64 binary and the checksum manifest
        curl -fsSLO "$BASE/chainloop-linux-amd64"
        curl -fsSLO "$BASE/checksums.txt"

        # Verify the binary against the manifest
        sha256sum --ignore-missing -c checksums.txt
        # on macOS: shasum -a 256 --ignore-missing -c checksums.txt

        # Install it onto your PATH
        chmod +x chainloop-linux-amd64
        sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
        ```
      </Accordion>

      <Accordion title="v1.74.0">
        | OS    | Architecture  | Download                                                                                                                                  | SHA256                                                             |
        | ----- | ------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------ |
        | Linux | Intel (amd64) | [chainloop-linux-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.74.0/chainloop-linux-amd64)   | `5f3890418f9622a49493dc372bdc42397ba00cb3ed05c2dddcea2f861fbe62b3` |
        | Linux | ARM64         | [chainloop-linux-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.74.0/chainloop-linux-arm64)   | `cb1a73b3ddafe5889dbcc3115097cb53f7db520409bae4b231b4816be413a9b5` |
        | macOS | Intel (amd64) | [chainloop-darwin-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.74.0/chainloop-darwin-amd64) | `3bfe953139112d2c843600a4703bc65d5ac14f835808cacb83b6d2c59b0ef9e4` |
        | macOS | Apple Silicon | [chainloop-darwin-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.74.0/chainloop-darwin-arm64) | `e0c6c15185a2dffecb5bc00bc8feefb4d016c2b2144c6f3a91b711692ab0f4d5` |

        Full manifest: [`checksums.txt`](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.74.0/checksums.txt) · [Release notes](/changelog)

        Download, verify, and install (linux/amd64 shown — swap `chainloop-linux-amd64` for another row from the table above):

        ```bash theme={"dark"}
        VERSION=v1.74.0
        BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION

        # Download the linux/amd64 binary and the checksum manifest
        curl -fsSLO "$BASE/chainloop-linux-amd64"
        curl -fsSLO "$BASE/checksums.txt"

        # Verify the binary against the manifest
        sha256sum --ignore-missing -c checksums.txt
        # on macOS: shasum -a 256 --ignore-missing -c checksums.txt

        # Install it onto your PATH
        chmod +x chainloop-linux-amd64
        sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
        ```
      </Accordion>

      <Accordion title="v1.73.2">
        | OS    | Architecture  | Download                                                                                                                                  | SHA256                                                             |
        | ----- | ------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------ |
        | Linux | Intel (amd64) | [chainloop-linux-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.73.2/chainloop-linux-amd64)   | `88c008610950ba302545e9ec24008650a948247d497e7228768d48737a9d4ad7` |
        | Linux | ARM64         | [chainloop-linux-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.73.2/chainloop-linux-arm64)   | `f104aeb87df948400db9cd3e095b556d50d8c64b772962241e15c269cce1ba91` |
        | macOS | Intel (amd64) | [chainloop-darwin-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.73.2/chainloop-darwin-amd64) | `9012689011e55054d4249150e8d0ea48f5816e15603f20efcc76c4f0feca8375` |
        | macOS | Apple Silicon | [chainloop-darwin-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.73.2/chainloop-darwin-arm64) | `8ba3bd56af8c7b5c5bfd29500f12965c7da28bd8b1d549b81f90217146d57f89` |

        Full manifest: [`checksums.txt`](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.73.2/checksums.txt) · [Release notes](/changelog)

        Download, verify, and install (linux/amd64 shown — swap `chainloop-linux-amd64` for another row from the table above):

        ```bash theme={"dark"}
        VERSION=v1.73.2
        BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION

        # Download the linux/amd64 binary and the checksum manifest
        curl -fsSLO "$BASE/chainloop-linux-amd64"
        curl -fsSLO "$BASE/checksums.txt"

        # Verify the binary against the manifest
        sha256sum --ignore-missing -c checksums.txt
        # on macOS: shasum -a 256 --ignore-missing -c checksums.txt

        # Install it onto your PATH
        chmod +x chainloop-linux-amd64
        sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
        ```
      </Accordion>

      <Accordion title="v1.73.1">
        | OS    | Architecture  | Download                                                                                                                                  | SHA256                                                             |
        | ----- | ------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------ |
        | Linux | Intel (amd64) | [chainloop-linux-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.73.1/chainloop-linux-amd64)   | `7dea4b8e87a820a7b41a6e06a83302efb9398389a10b5e45fec63388779ed8aa` |
        | Linux | ARM64         | [chainloop-linux-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.73.1/chainloop-linux-arm64)   | `9d8e0dfadcf7ae9b92f83141e681b5b3fa2d394436299b5aed698bf753995fa7` |
        | macOS | Intel (amd64) | [chainloop-darwin-amd64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.73.1/chainloop-darwin-amd64) | `1a0cf6f3322db9e54fd41cddbde2156577bbc33602e488e40384b0e0bd16f69d` |
        | macOS | Apple Silicon | [chainloop-darwin-arm64](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.73.1/chainloop-darwin-arm64) | `ed909640031769226328f76ac955d772b3ca39967db7c8c3c73dd806372ea91b` |

        Full manifest: [`checksums.txt`](https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/v1.73.1/checksums.txt) · [Release notes](/changelog)

        Download, verify, and install (linux/amd64 shown — swap `chainloop-linux-amd64` for another row from the table above):

        ```bash theme={"dark"}
        VERSION=v1.73.1
        BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION

        # Download the linux/amd64 binary and the checksum manifest
        curl -fsSLO "$BASE/chainloop-linux-amd64"
        curl -fsSLO "$BASE/checksums.txt"

        # Verify the binary against the manifest
        sha256sum --ignore-missing -c checksums.txt
        # on macOS: shasum -a 256 --ignore-missing -c checksums.txt

        # Install it onto your PATH
        chmod +x chainloop-linux-amd64
        sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
        ```
      </Accordion>
    </AccordionGroup>

    Unlike the install script, a manually downloaded binary isn't automatically configured for your instance. If you're on an **on-prem or dedicated instance**, point the CLI at your instance's endpoints (Chainloop SaaS users can skip this):

    ```bash theme={"dark"}
    chainloop config save \
      --control-plane my-controlplane.acme.com:443 \
      --artifact-cas cas.acme.com:443 \
      --platform my-platform.acme.com:443
    ```
  </Tab>
</Tabs>
