Install Axx
Axx is a single static binary for Linux, macOS and Windows on amd64 and arm64. It has no runtime dependencies. Docker is only needed if the apps you test start with Docker Compose.
Choose a channel
Section titled “Choose a channel”Homebrew (macOS, Linux)
Section titled “Homebrew (macOS, Linux)”brew install nimbusxr/tap/axxInstall script (Linux, macOS, CI)
Section titled “Install script (Linux, macOS, CI)”curl -fsSL https://axx.nimbusxr.us/install.sh | shThe script picks the newest release (pre-releases included, since every 0.x release is one), downloads the archive for your OS and architecture, and checks it against checksums.txt.
go install github.com/nimbusxr/axx/cmd/axx@latestNeeds Go 1.27 or newer. The binary lands in $(go env GOPATH)/bin.
Container image
Section titled “Container image”docker run --rm -v axx-cache:/home/nonroot -v "$PWD:/work" -w /work ghcr.io/nimbusxr/axx validateThe image contains only the axx binary (on a distroless base). The axx-cache volume keeps the packs Axx prepares for the project (Choose packs); without it, every run prepares them again. It suits commands that do not start apps (validate, steps, explain, schema) and runs against services that are already up (axx run --no-start). It cannot run docker compose for you.
Release archives
Section titled “Release archives”Download axx_<version>_<os>_<arch>.tar.gz (.zip on Windows) from GitHub releases, extract axx and put it on your PATH. A rolling nightly pre-release is built from main every day.
Verify the download
Section titled “Verify the download”Release checksums are signed with Sigstore (keyless), and archives carry an SBOM and build provenance.
cosign verify-blob checksums.txt \ --bundle checksums.txt.sigstore.json \ --certificate-identity-regexp '^https://github.com/nimbusxr/axx/' \ --certificate-oidc-issuer https://token.actions.githubusercontent.comsha256sum --ignore-missing -c checksums.txt
gh attestation verify axx_0.1.0_linux_amd64.tar.gz --repo nimbusxr/axxCheck the installation
Section titled “Check the installation”axx versionaxx doctoraxx doctor checks the binary, axx.yaml, the step packs, your feature files and the commands your apps need. It exits 0 when nothing failed (warnings are allowed) and 4 otherwise.
Shell completion
Section titled “Shell completion”axx completion zsh > "${fpath[1]}/_axx" # zshaxx completion bash > /etc/bash_completion.d/axx # bashaxx completion fish > ~/.config/fish/completions/axx.fishEditors
Section titled “Editors”To see Axx’s steps in feature files as you write them, set up IntelliJ IDEA, VS Code or another editor with Set up your editor.
Upgrade
Section titled “Upgrade”Upgrade with the channel you installed from (brew upgrade, rerun the script, or go install ...@latest). Step text never changes between versions, so feature files keep working. Before v1.0.0, a minor version bump (0.1 to 0.2) may change a flag or a configuration key; read the changelog first.
After upgrading, refresh the agent skills so their step index matches the new binary:
axx skills install