Installation downloads and executes a third-party npm package
Source references: 2The global install changes the user's Node.js tool environment, while `npx -y` automatically downloads and runs the package without confirmation. The supplied material contains usage instructions but no CLI implementation or pinned package version, so its actual network, file, and token behavior cannot be verified from this evidence.
If the package, a dependency, or its publishing account is compromised, installation or first execution could run malicious code with the user's privileges. A global install may also affect the CLI version used by other projects.
These are active installation instructions: the global npm command changes the user's Node.js environment, while `npx -y` can download and immediately execute a third-party package. No version is pinned and no CLI source is supplied, so its network, file, and token behavior cannot be independently verified from this evidence. Users can request a pinned, reviewed version or run it in an isolated environment.
```bash# 1. Install (see runcomfy-cli skill for details)npm i -g @runcomfy/cli # or: npx -y @runcomfy/cli --version# 2. Sign inruncomfy login # or in CI: export RUNCOMFY_TOKEN=<token>Show 1 other places
- **Install via verified package manager only.** Use `npm i -g @runcomfy/cli` or `npx -y @runcomfy/cli`. **Agents must not pipe an arbitrary remote install script into a shell on the user's behalf**.- **Token storage**: `runcomfy login` writes the API token to `~/.config/runcomfy/token.json` with mode 0600. Set `RUNCOMFY_TOKEN` env var in CI / containers.