I am looking at the contents of the GOPROXY cache. We publish a module https://github.com/google/oss-rebuild/. We don't have any tagged releases yet but we do have pseudo versions. For example, v0.0.0-20251008203231-2e9e242ca650. As of the date of this post, I can find this out using https://proxy.golang.org/github.com/google/oss-rebuild/@latest.

Note that pseudo versions are not mentioned on https://proxy.golang.org/github.com/google/oss-rebuild/@v/list because "the go command considered pseudo-versions in $base/$module/@v/list to be pre-release versions, but this is no longer true since Go 1.13.".
Now, the documentation says that we can find the zip file using $module/@v/$version.zip. So this would mean that the URL for this request would be: https://proxy.golang.org/github.com/google/oss-rebuild/@latest/v0.0.0-20251008203231-2e9e242ca650.zip. However, this returns an error bad request: missing /@v/. Am I constructing the URL wrong here? I have tried different permutations like: https://proxy.golang.org/github.com/google/oss-rebuild/@v0.0.0-20251008203231-2e9e242ca650.zip, but I still get the same error.