Official binary distribution of initializ — the Initializ AI Platform CLI for CI pipelines. It composes an agent deploy request from your repo's initializ-deploy.yaml + forge.yaml + build output and submits it to the platform, so pre-built agent images deploy straight from CI.
The CLI is developed in a private repository. This repo hosts the released binaries, checksums, and install tooling.
brew install initializ/tap/initializcurl -fsSL https://raw.githubusercontent.com/initializ/cli/main/install.sh | shInstalls the latest release to /usr/local/bin (override with INSTALL_DIR=..., pin a version with VERSION=vX.Y.Z).
Download the latest release for your platform, verify it against checksums.txt, and put the initializ binary on your PATH:
| Platform | Latest download |
|---|---|
| Linux amd64 | initializ_linux_amd64.tar.gz |
| Linux arm64 | initializ_linux_arm64.tar.gz |
| macOS Apple Silicon | initializ_darwin_arm64.tar.gz |
| macOS Intel | initializ_darwin_amd64.tar.gz |
| Windows amd64 | initializ_windows_amd64.zip |
macOS note: binaries are not yet notarized. Browser-downloaded archives are quarantined by macOS and Gatekeeper will show "Apple could not verify…" — prefer Homebrew or the install script (neither quarantines), or clear the flag with
xattr -d com.apple.quarantine ./initializ.
For GitLab CI, Tekton, and similar:
image: ghcr.io/initializ/cli-next:latest # or pin :<version>export INITIALIZ_API_URL=... # platform API base URL
export INITIALIZ_TOKEN=... # workspace-scoped CI token
initializ auth whoami # preflight: verifies the token server-side
initializ deploy # deploy the CI-built agent imageRun initializ --help for the full command set.
Every release ships a checksums.txt:
shasum -a 256 -c --ignore-missing checksums.txtNote: releases prior to 2026 in this repo belonged to the deprecated initz application CLI and have been relocated. If you still depend on the legacy CLI, contact support@initializ.ai.