tuist cache warm now prints a machine-readable summary line at the end of the warm step, for example: Cache warm summary: 42 remote hits, 3 local hits, 12 misses. The line is shown both after a successful build and store, and in the All cacheable targets are already cached early return. It lets setup scripts and CI logs report remote hit rates locally without a server round-trip, and the counts match the remote_cache_target_hits value that tuist cache-run show and GET /cache-runs return. Including misses alongside hits lets reporting clients compute a hit rate as hits / (hits + misses) directly from CLI output.
Hive