Installation runs and globally installs third-party software
Source references: 2The instructions require a global npm installation of the RunComfy CLI and provide a Skill installation command executed through npx. These steps run package-ecosystem code, but the supplied source contains no pinned version, integrity hash, or CLI implementation to inspect.
A substituted, compromised, or subsequently changed package could access files and environment variables available to the current user when installation or the CLI runs. Global installation also leaves persistent software on the machine.
The prerequisites globally install the third-party RunComfy CLI through npm, while the npx command installs the skill from a repository/package source. Neither pins a version or commit, and the supplied material does not include the installer or CLI implementation. Running them therefore trusts whatever third-party code resolves at that time. A user can require pinned versions, commits, and integrity checks and restrict global-install privileges.
```bashnpx skills add agentspace-so/runcomfy-skills --skill gpt-image-2 -g```Show 1 other places
1. **RunComfy CLI** — `npm i -g @runcomfy/cli`2. **RunComfy account** — `runcomfy login` opens a browser device-code flow.3. **CI / containers** — set `RUNCOMFY_TOKEN=<token>` instead of `runcomfy login`.