The official command-line interface for Adaline. Manage your prompts, datasets, evaluators, evaluations, deployments, providers, models, projects, and observability logs from your terminal.
Standalone binaries — no Node.js or other dependencies required.
curl -fsSL https://raw.githubusercontent.com/adaline/cli/main/install.sh | shpowershell -ExecutionPolicy Bypass -c "irm https://raw.githubusercontent.com/adaline/cli/main/install.ps1 | iex"Verify the install:
adaline --version
adaline --helpThe CLI is also available under the short alias adx — adx and adaline are interchangeable.
| OS | Architectures |
|---|---|
| macOS | Apple Silicon (arm64), Intel (x64) |
| Linux | x86_64 (x64), ARM (arm64) |
| Windows | x64 |
The installers honor these environment variables:
| Variable | Default | Description |
|---|---|---|
ADALINE_VERSION |
latest |
Version to install (e.g. 0.1.0). |
ADALINE_INSTALL_DIR |
~/.local/bin (Unix) · %LOCALAPPDATA%\Adaline\bin (Windows) |
Where to install the binary. |
Example — pin a specific version on macOS/Linux:
curl -fsSL https://raw.githubusercontent.com/adaline/cli/main/install.sh | ADALINE_VERSION=0.1.0 shThe CLI updates itself in place — no need to re-run the installer:
adaline upgrade # update to the latest release
adaline upgrade --check # report whether an update is available (no install)
adaline upgrade --to 0.2.0 # switch to a specific version (up or down)Every release publishes a SHA256SUMS file alongside the binaries, and the installers verify each
download against it automatically. To check a manual download:
sha256sum --check --ignore-missing SHA256SUMSDelete the binaries (and, on Windows, remove the install dir from your user PATH):
rm "$(command -v adaline)" "$(command -v adx)"