The Installation page in the dashboard provides a one-command installer tailored to your platform. The page auto-detects your OS and embeds your selected API key.
Watch: copy your key and run the installer
This short walkthrough shows how to copy your API key from the dashboard and run the install command in your terminal.
Quick install
Replace <YOUR_API_KEY> with the key you created in the previous step.
macOS / Linux
curl -sSL https://app.hiaudit.io/install.sh | bash -s -- <YOUR_API_KEY>Windows (PowerShell)
$env:HIAUDIT_KEY="<YOUR_API_KEY>"; irm https://app.hiaudit.io/install.ps1 | iexWhat the installer does
- Detects your OS and CPU architecture automatically.
- Downloads the correct pre-built binary for your platform.
- Installs the binary to a directory in your
PATH. - Activates the agent with your API key.
- Copies supporting files (skills, MCP config) to your home directory.
Verify the installation
hiauditagent --helpIf the help text prints, the agent is installed correctly.
macOS: binary blocked by Gatekeeper
If macOS shows a “cannot be opened” or “unverified developer” error after installation, run these two commands once to clear quarantine attributes and ad-hoc sign the binary:
sudo xattr -cr /usr/local/bin/hiauditagent
sudo codesign --force --sign - /usr/local/bin/hiauditagent