flowmetrics

Install on macOS, Linux, Windows

Diátaxis: How-to. Single recipe for getting flow onto a fresh machine.

Same path on every OS: install uv, then uv tool install.

# macOS
brew install uv

# Linux
curl -LsSf https://astral.sh/uv/install.sh | sh

# Windows (PowerShell)
irm https://astral.sh/uv/install.ps1 | iex
# Install flowmetrics as a global tool (isolated env, exposes `flow`).
uv tool install git+https://github.com/dvhthomas/flowmetrics

# Verify.
flow --help
which flow                          # macOS/Linux
where flow                          # Windows

flow lands in ~/.local/bin/ on macOS/Linux and %USERPROFILE%\.local\bin\ on Windows. If those aren’t on your PATH, uv tool install prints the line to add.

Credentials

Next