Verification
On a fresh clone, explicitly populate the exact product and tools module graphs:
make tools-bootstrapThis is the only network-enabled quality mode. It requires Go 1.26.5, downloads
all from private temporary copies of both go.mod/go.sum pairs, disables Go
authentication, and permits only the public checksum database and module proxy.
It verifies that the repository is byte-for-byte unchanged even when a download
fails. A repository without a tools module is valid. No application API keys,
tokens, passwords, or secrets are passed to the Go subprocess.
Every child Go command uses the selected Go 1.26.5 binary from runtime.GOROOT,
not an older go that may appear first on PATH.
make fastchecks the exact Go version and runs repository tests.make checkadds goimports/gofumpt, tidy diff, vet, and shuffled tests.make verifyadds allowlisted lint, NilAway, gosec, govulncheck, race tests, 85% product coverage, reproducible vendor comparison, and vendor-offline tests/builds.
The verifier is repository-owned Go and is cross-platform. It never rewrites
product source. make fmt is the only formatting target that mutates Go files.
make fast, make check, and make verify force GOPROXY=off; a missing cache
entry fails with an actionable prompt to run the explicit bootstrap.
Product tests exercise traversal and symlink escape, paging and encoded payload
bounds, create/replace/stale/race behavior, committed durability uncertainty,
acknowledgement-loss replay, commit-point cancellation, definition fingerprints,
strict argv/workdir/environment policy, output truncation, caller cancellation
and deadlines, configured timeouts, uncertain managed-process cleanup,
dispatcher correlation, sanitized failure chains, fallback DI, and concurrency.
Windows uses a real Job Object; Unix uses a real process group. A platform-
specific detached-child fixture proves those mechanisms are cleanup aids rather
than containment and prevents managed_cleanup_completed from being described
as whole-tree termination.