Installation executes unpinned third-party npm software and installs globally
Source references: 2The Skill uses npx to obtain and execute a Skill installer and recommends a global npm installation of the RunComfy CLI. Neither command pins a package version. npm packages execute publisher-supplied code, and global installation leaves persistent files and commands in the user environment.
If the current package release or a dependency is compromised, installation could read or modify files, access available credentials, or alter the development environment with the user’s permissions.
There are two unpinned third-party npm steps: `npx` runs the skill installer, and `npm -g` installs the CLI globally. The code obtained depends on the versions published at execution time, and the global install persistently changes the user environment. The user can require pinned, verified versions and inspect packages and install scripts in isolation first.
```bashnpx skills add genmedia-labs/skills --skill wan-3-0-prime-reference-to-video -g```Show 1 other places
1. **RunComfy CLI** — `npm i -g @runcomfy/cli` (or `npx -y @runcomfy/cli --version`)2. **RunComfy account** — `runcomfy login` opens a browser device-code flow.