Installation
Install the Nullify CLI to manage your security posture from the command line
Last updated
Install the Nullify CLI to manage your security posture from the command line
Run the install script to download the latest Nullify CLI binary:
curl -sSfL https://raw.githubusercontent.com/Nullify-Platform/cli/main/install.sh | sh -s -- --host api.<TENANT>.nullify.aiReplace <TENANT> with your organization name (e.g. api.acme.nullify.ai).
The curl | sh installer runs on macOS and Linux. It does not run on native Windows — use WSL or Git Bash, or follow the Manual Installation steps with the Windows archive below.
This will:
Detect your OS and architecture (macOS, Linux; amd64, arm64)
Download the latest release from GitHub Releases
Verify the SHA256 checksum
Install the binary to /usr/local/bin/nullify (or ~/.local/bin/)
Configure the CLI to connect to your Nullify instance
Download the latest archive for your platform from GitHub Releases:
macOS
Apple Silicon (arm64)
nullify_darwin_arm64.tar.gz
macOS
Intel (amd64)
nullify_darwin_amd64.tar.gz
Linux
amd64
nullify_linux_amd64.tar.gz
Linux
arm64
nullify_linux_arm64.tar.gz
Windows
amd64
nullify_windows_amd64.zip
After downloading:
If you have a Go toolchain installed, you can build and install the CLI directly:
The CLI resolves which Nullify instance to connect to in this order:
The --host flag
The NULLIFY_HOST environment variable
The host saved in ~/.nullify/config.json by nullify auth login
NULLIFY_HOST (and --host) accept either the full API host api.<TENANT>.nullify.ai or the bare <TENANT>.nullify.ai form. The CLI stores the host in its bare <TENANT>.nullify.ai form and adds the api. prefix automatically when it makes API requests, so either form works.
Authentication Guide - Log in to your Nullify instance
MCP Setup Guide - Connect your AI coding assistant
Last updated
tar -xzf nullify_<os>_<arch>.tar.gz
sudo mv nullify /usr/local/bin/nullifygo install github.com/nullify-platform/cli/cmd/cli@latestnullify --version# 1. Set via flag (highest priority)
nullify --host api.<TENANT>.nullify.ai <command>
# 2. Or set via environment variable
export NULLIFY_HOST=api.<TENANT>.nullify.ai
nullify <command>