Installation executes third-party code fetched from npm
Source references: 4The global install and `npx -y` commands fetch and execute `@runcomfy/cli`; the Skill installation command also globally fetches another repository. Versions are not pinned, and the package code is not included for review.
If a package, publisher account, or dependency is compromised, installation code could access or modify files and credentials available to the current user. A global install also makes lasting changes to the development environment.
The document asks the operator to obtain software through npm/npx, and `npx -y` can run the fetched CLI without an interactive confirmation. None of these commands pins a version. The fetched package and repository implementations are absent, so their install scripts and runtime behavior cannot be audited here. The risk arises if the user runs these setup commands.
```bashnpx skills add agentspace-so/runcomfy-agent-skills --skill runcomfy-cli -g```Show 3 other places
```bash# Global install via npm (recommended for repeat use)npm i -g @runcomfy/cli# Zero-install one-shot (no Node global state)npx -y @runcomfy/cli --version``````bashnpx skills add agentspace-so/runcomfy-agent-skills --skill runcomfy-cli -g``````bash# Global install via npm (recommended for repeat use)npm i -g @runcomfy/cli# Zero-install one-shot (no Node global state)npx -y @runcomfy/cli --version```