The installation command selects an unpinned `@latest` dependency
Source references: 1The Skill directly recommends `go get github.com/spf13/viper@latest`. This accesses the network, downloads the newest available dependency code, and normally updates `go.mod` and `go.sum`; running it at different times can select different code.
An unreviewed release or transitive dependency could change build behavior, introduce compatibility problems, or increase supply-chain exposure, while leaving persistent dependency-file changes.
This is an installation recommendation in the live instructions and explicitly uses the floating `@latest` version. The version obtained therefore depends on when it is run, and the Go tool will contact dependency sources and update project dependency records. Installing Viper is consistent with the Skill's purpose, but this form is not reproducibly pinned. Users can request a tested exact version and review `go.mod`/`go.sum` changes. The source does not show automatic execution.
```bashgo get github.com/spf13/viper@latest```