Skip to content
axxbetadocs
GitHub

Install Axx

View .mdOpen in Claude

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.

Terminal window
brew install nimbusxr/tap/axx
Terminal window
curl -fsSL https://axx.nimbusxr.us/install.sh | sh

The 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.

Terminal window
go install github.com/nimbusxr/axx/cmd/axx@latest

Needs Go 1.27 or newer. The binary lands in $(go env GOPATH)/bin.

Terminal window
docker run --rm -v axx-cache:/home/nonroot -v "$PWD:/work" -w /work ghcr.io/nimbusxr/axx validate

The 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.

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.

Release checksums are signed with Sigstore (keyless), and archives carry an SBOM and build provenance.

Terminal window
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.com
sha256sum --ignore-missing -c checksums.txt
gh attestation verify axx_0.1.0_linux_amd64.tar.gz --repo nimbusxr/axx
Terminal window
axx version
axx doctor

axx 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.

Terminal window
axx completion zsh > "${fpath[1]}/_axx" # zsh
axx completion bash > /etc/bash_completion.d/axx # bash
axx completion fish > ~/.config/fish/completions/axx.fish

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 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:

Terminal window
axx skills install