Diátaxis: How-to. Iterate on the codebase with the global
flowcommand pointed at your tree.
git clone https://github.com/dvhthomas/flowmetrics
cd flowmetrics
uv sync # creates .venv/
# Run from the checkout.
uv run flow --help
uv run pytest # unit suite (no network)
uv run pytest -m integration # opt-in, needs gh auth
uv run ruff check
uv run ty check src
flow follows your editsuv tool install --force --editable .
--editable keeps the global flow pointed at your source tree so
edits take effect without a re-install.