Mutable `@latest` installs are followed by execution of a downloaded scaffolding tool
Source references: 3The Skill recommends fetching the latest Cobra and cobra-cli releases and shows immediately invoking the scaffolder through `go tool`. `latest` is not pinned to a reviewed version and can resolve differently over time.
Execution contacts dependency sources and changes Go module or tool configuration; the scaffolder also creates or modifies project files. A malicious, compromised, or incompatible newest release would directly affect the user.
These are documentation examples, not automatic installer code, but they do recommend fetching unpinned `@latest` versions and then running `go tool cobra-cli` to generate or modify project files. If followed, the downloaded executable can change over time and the scaffolder writes into the current project. Users can ask for an audited pinned version and preview generated files in an isolated directory before merging them. The Cobra dependency is also unpinned, while the shown download-then-scaffold sequence specifically involves cobra-cli.
```bashgo get github.com/spf13/cobra@latest```Show 2 other places
```bashgo get -tool github.com/spf13/cobra-cli@latest# Initialize a new cobra projectgo tool cobra-cli init myapp# Add a subcommandgo tool cobra-cli add servego tool cobra-cli add migrate`cobra-cli` generates command files and wires them into your project:```bashgo get -tool github.com/spf13/cobra-cli@latest# Initialize a new cobra projectgo tool cobra-cli init myapp# Add a subcommandgo tool cobra-cli add servego tool cobra-cli add migrate