H3Tech hiro-crew CLI downloads
Companion CLI

Install the hiro-crew CLI

The CLI runs alongside the Claude Code plugin — it handles authentication, skill cache sync, telemetry, and project enumeration. One install per laptop covers every project you're a member of.

Quick install

macOS / Linux

curl -fsSL https://crew.h3t.co/cli/install.sh | bash

Windows (PowerShell)

iwr -useb https://crew.h3t.co/cli/install.ps1 | iex

Both installers detect your OS+arch, fetch the right binary, verify SHA-256, and put hiro-crew on your PATH (under ~/.local/bin on Unix, %LOCALAPPDATA%\hiro-crew\bin on Windows).

First run

1
Sign in once with your Entra account. A browser window opens, you complete OAuth, and the resulting token lands in your OS keychain (macOS Keychain / Windows Credential Manager / libsecret).
hiro-crew login
2
Verify identity:
hiro-crew whoami
3
List your projects:
hiro-crew projects list
Already running on a headless box? Use hiro-crew login --device-code; it shows a code you paste into a browser on another machine. Useful for SSH-only servers or CI runners.

What the CLI does for you

Manual download

Latest version pointer: /cli/latest.json. Per-version binaries live under /cli/<version>/:

PlatformBinary
macOS arm64 (Apple Silicon)hiro-crew-darwin-arm64
macOS amd64 (Intel)hiro-crew-darwin-amd64
Linux amd64hiro-crew-linux-amd64
Linux arm64hiro-crew-linux-arm64
Windows amd64hiro-crew-windows-amd64.exe

Each version directory ships a sha256sums.txt for integrity verification.

Updating

The CLI checks /cli/latest.json on each invocation; when a newer version is available it prints a one-line notice with the upgrade command. To force right now:

hiro-crew upgrade

Or just re-run the install one-liner — the installer is idempotent and replaces the binary in place.

Uninstall

hiro-crew logout                # revoke session + clear keychain
rm $(which hiro-crew)           # macOS / Linux
# Windows: delete %LOCALAPPDATA%\hiro-crew\

References