Installation
Install the Nullify CLI to manage your security posture from the command line
Quick Install
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).
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
Manual Installation
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:
With Go
If you have a Go toolchain installed, you can build and install the CLI directly:
Verify Installation
Configuration
The CLI resolves which Nullify instance to connect to in this order:
The
--hostflagThe
NULLIFY_HOSTenvironment variableThe host saved in
~/.nullify/config.jsonbynullify 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.
Next Steps
Authentication Guide - Log in to your Nullify instance
MCP Setup Guide - Connect your AI coding assistant
Last updated