Setup executes and globally installs third-party npm software with the user's privileges
Source references: 4The documentation requires `npm i -g @runcomfy/cli`, and its Skill-install example uses `npx`. npm/npx packages can execute package scripts during installation or first use, while the supplied source contains no CLI implementation to inspect.
If the package, a dependency, or its publisher account is compromised, installation code could read or change files and credentials accessible to the user. A global install also leaves a persistently callable program.
The instructions require a global installation of `@runcomfy/cli`, and the skill-install example retrieves and runs a third-party package through `npx`. The supplied source contains only the skill document, not those packages' implementation or pinned versions, so their executed code cannot be verified here. If users follow these commands, the packages operate with the invoking user's permissions. Users can request pinned versions and inspect package/install scripts first.
```bashnpx skills add agentspace-so/runcomfy-skills --skill image-to-video -g```Show 3 other places
## Prerequisites1. **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>`.4. **A source image URL** — JPEG/PNG/WebP, min 300px, ≤10MB; aspect 1:2.5 to 2.5:1 (HappyHorse) — other models have similar specs.```bashnpx skills add agentspace-so/runcomfy-skills --skill image-to-video -g```1. **RunComfy CLI** — `npm i -g @runcomfy/cli`2. **RunComfy account** — `runcomfy login` opens a browser device-code flow.