Install
The binary is named miucr. Releases ship prebuilt static binaries for macOS (amd64 + arm64), Linux (amd64), and Windows (amd64). See GitHub Releases.
Install script (macOS / Linux)
Section titled “Install script (macOS / Linux)”curl -fsSL https://raw.githubusercontent.com/vanducng/miu-cr/main/install.sh | shPin a specific version:
curl -fsSL https://raw.githubusercontent.com/vanducng/miu-cr/main/install.sh | sh -s -- vX.Y.Z # see github.com/vanducng/miu-cr/releasesThe script detects your OS/arch, downloads the matching archive, verifies its SHA-256 checksum against checksums.txt, and installs miucr to /usr/local/bin when that is writable (no sudo) or ~/.local/bin otherwise. It warns if the chosen directory is not on your PATH.
Knobs:
MIUCR_VERSION: tag to install (same as the positional arg).MIUCR_INSTALL_DIR: target bin directory.
Homebrew (macOS / Linux)
Section titled “Homebrew (macOS / Linux)”brew install vanducng/tap/miucrThe formula lives in vanducng/homebrew-tap and is updated automatically on each release.
go install (any platform with Go 1.25+)
Section titled “go install (any platform with Go 1.25+)”go install github.com/vanducng/miu-cr/cmd/miucr@latestWindows
Section titled “Windows”Download miucr_windows_x86_64.zip from Releases, extract miucr.exe, and put it on your PATH (e.g. a folder you add via System → Environment Variables).
In PowerShell:
$version = "vX.Y.Z" # see the Releases page for the latest tag$asset = "miucr_windows_x86_64.zip"Invoke-WebRequest "https://github.com/vanducng/miu-cr/releases/download/$version/$asset" -OutFile $assetExpand-Archive $asset -DestinationPath ".\miucr" -Force.\miucr\miucr.exe versionA Scoop manifest is planned.
Update
Section titled “Update”Binaries installed via install.sh or the Windows zip self-update from the latest GitHub release:
miucr upgrade # download + install the latest releasemiucr upgrade --check # report whether a newer version exists, install nothingmiucr upgrade --version vX.Y.Z # install a specific release tagHomebrew users update through Homebrew instead: brew upgrade miucr.
Verify
Section titled “Verify”miucr version # stable JSON envelopemiucr version -o prettyThen set a provider key and run your first review. See Usage and Credentials.