Homebrew (macOS / Linux)
The recommended way to install hitspec:
brew install abdul-hamid-achik/tap/hitspec
This installs the latest release and makes the hitspec command available in your shell.
Go Install
If you have Go installed:
go install github.com/abdul-hamid-achik/hitspec/apps/cli@latest
Requires Go 1.25 or later. The binary will be placed in your $GOPATH/bin directory — make sure it’s in your PATH.
Binary Download
Download pre-built binaries for your platform from GitHub Releases.
# Apple Silicon
curl -Lo hitspec https://github.com/abdul-hamid-achik/hitspec/releases/latest/download/hitspec-darwin-arm64
chmod +x hitspec
sudo mv hitspec /usr/local/bin/
# Intel
curl -Lo hitspec https://github.com/abdul-hamid-achik/hitspec/releases/latest/download/hitspec-darwin-amd64
chmod +x hitspec
sudo mv hitspec /usr/local/bin/
# x86_64
curl -Lo hitspec https://github.com/abdul-hamid-achik/hitspec/releases/latest/download/hitspec-linux-amd64
chmod +x hitspec
sudo mv hitspec /usr/local/bin/
# ARM64
curl -Lo hitspec https://github.com/abdul-hamid-achik/hitspec/releases/latest/download/hitspec-linux-arm64
chmod +x hitspec
sudo mv hitspec /usr/local/bin/
Download hitspec-windows-amd64.exe from GitHub Releases and add it to your PATH.
Verify Installation
You should see the installed version number. If the command is not found, make sure the binary location is in your PATH.
Updating