The Skill globally installs an unpinned Vercel CLI version
Source references: 2It runs `npm install -g vercel` without pinning a version or requiring package-source verification. A global installation changes the user's development environment and runs installation behavior permitted by the downloaded npm package.
CLI behavior can change with the latest release. If the package source, a dependency, or a publisher account is compromised, installation code runs with the current user's permissions and may affect files and credentials that user can access.
The setup step directly calls for an unpinned global npm installation and says the CLI should be up to date. This changes the user's global development environment, while installed content depends on the package version published at that time. The package name is consistent with Vercel CLI, but the text provides no version pin, source verification, or pre-install approval. Users can require a pinned, project-local or isolated installation and verify source and permissions first.
## CLI SetupEnsure the Vercel CLI is installed and up to date:```bashnpm install -g vercelvercel --version```Show 1 other places
### CLI not installed```bashnpm install -g vercel```