CLI Installation
Install the Vyre CLI to run agents from your terminal, integrate with CI/CD pipelines, and use Shell Mode for terminal-native debugging.
macOS
Install via Homebrew:
brew install vyre/tap/vyreOr download the binary directly:
curl -fsSL https://vyre.dev/install.sh | shWindows
Install via Scoop:
scoop bucket add vyre https://github.com/vyre/scoop-bucket
scoop install vyreOr download the installer from the Releases page and run the .msi file.
Linux
Debian/Ubuntu (APT):
curl -fsSL https://vyre.dev/keys/vyre.gpg | sudo tee /etc/apt/keyrings/vyre.gpg > /dev/null
echo "deb [signed-by=/etc/apt/keyrings/vyre.gpg] https://vyre.dev/apt stable main" | sudo tee /etc/apt/sources.list.d/vyre.list
sudo apt update && sudo apt install vyreRed Hat/Fedora (RPM):
sudo rpm --import https://vyre.dev/keys/vyre.gpg
sudo dnf install https://vyre.dev/rpm/vyre-latest.rpmAny Linux (binary):
curl -fsSL https://vyre.dev/install.sh | shVerifying installation
After installation, verify the CLI works:
vyre --version
# Vyre CLI v2.4.1
vyre --help
# Usage: vyre [command] [options]
# ...Authentication
Authenticate with your Vyre account:
Run login
vyre loginComplete browser auth
A browser window opens. Sign in with your Vyre account. The CLI waits for the browser callback.
Verify auth
vyre whoami
# Logged in as: your@email.com (Pro plan)Authentication in CI/CD
For non-interactive environments (CI, GitHub Actions, Docker), use an API token instead of browser auth:
# Generate a token at vyre.dev/settings/tokens
export VYRE_API_TOKEN=your_token_here
vyre whoami # confirms token worksStore the token as a CI secret — never commit it to your repository.
Multiple accounts
Use profiles to switch between accounts:
vyre login --profile work
vyre login --profile personal
# Switch profiles
vyre use workAdd ~/.vyre/bin to your PATH if the CLI isn't found after installation. The installer will tell you the exact path to add.