Download the latest release of a project for your architecture from any project on GitHub. The only thing you need to know is the project's name, owner and the naming convention for the releases.
For example, to download the latest version of chroma
for a Linux 64-bit system:
$ TAG=$(curl -sS https://api.github.com/repos/alecthomas/chroma/releases/latest | jq -r '.tag_name')
$ curl -OL "https://github.com/alecthomas/chroma/releases/download/${TAG}/chroma-${TAG:1}-linux-amd64.tar.gz"
Another example, to download the latest version of protobuf
for a Windows 64-bit system: