Installation commands execute unpinned third-party code
Source references: 3The setup uses npx to run a skills installer and offers either a global CLI install or a zero-install command with -y. None pins a package version. npm package code and installation scripts execute on the user's machine.
If a package, dependency, or publisher account is compromised, installation could read or modify files with the user's permissions. The CLI later also handles a RunComfy token and access to a billed account.
The instructions use npx to fetch the skill installer/repository and either globally install or automatically accept and run the RunComfy CLI. None of these commands pins a version. Retrieved third-party packages and any installation lifecycle scripts run with the user's account permissions and may change over time. The user can isolate installation and request pinned versions, commits, and checksums.
```bashnpx skills add agentspace-so/runcomfy-agent-skills --skill ai-music -g```Show 2 other places
```bashnpm i -g @runcomfy/cli # global installnpx -y @runcomfy/cli --version # zero-install```**Step 1 — install** (one of, see the `runcomfy-cli` skill for details):```bashnpm i -g @runcomfy/cli # global installnpx -y @runcomfy/cli --version # zero-install```