Unpinned npm/npx commands execute code fetched at installation time
Source references: 6The guidance repeatedly uses `@latest` and installs packages without fixed versions. The code executed is therefore determined by the current npm release rather than a version auditable in this Skill.
If a package, publisher account, or dependency chain is compromised, installation or CLI code could read files, environment variables, and credentials or modify the workspace with the user's permissions.
The guide provides several executable `npx` commands using `@latest` plus an SDK install with no version. Consequently, the downloaded and executed code depends on npm's state at runtime. This is a supply-chain and reproducibility risk, not evidence that any package is malicious. Users can request pinned, verified versions for each package.
```bashnpx create-db@latest```Show 5 other places
```bashnpx -y @prisma/cli@latest database create --helpnpx -y @prisma/cli@latest database list --json```bashnpm install @prisma/management-api-sdk``````bashnpm install create-db# orbun add create-db``````bashnpx create-db@latest```Aliases:```bashnpx create-pg@latestnpx create-postgres@latest```Install and use:```bashnpm install @prisma/management-api-sdk```