Installation fetches and executes unpinned third-party npm software
Source references: 3The documentation requires a global npm CLI installation and provides an npx command to install the Skill; neither command pins a specific version or verifies its contents. The code obtained therefore depends on the package or repository state at execution time.
If a package, publisher account, dependency chain, or repository is compromised, installation could execute malicious code with the current user’s privileges. The global installation also leaves a persistent CLI in the user environment.
The documentation provides an `npx` Skill installation command with no pinned version or commit and requires a global npm installation of an unversioned RunComfy CLI. Running these commands downloads and executes whatever third-party content is current at that time, while the global install modifies the user’s software environment. Users can require pinned package versions, commit hashes, and integrity checks, and inspect dependencies in isolation first.
```bashnpx skills add agentspace-so/runcomfy-skills --skill flux-kontext -g```Show 2 other places
1. **RunComfy CLI** — `npm i -g @runcomfy/cli`2. **RunComfy account** — `runcomfy login` opens a browser device-code flow.## 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>` instead of `runcomfy login`.