Installation fetches and executes a third-party CLI from npm
Source references: 4The documentation offers both a global installation and `npx -y`; the former persistently changes the global Node.js environment, while the latter automatically downloads and runs the package. The package implementation is absent from the supplied source, so its install scripts and runtime behavior cannot be verified here.
If the npm package, a dependency, or its publishing account is compromised, installation or first execution could run unexpected code with the user's privileges. A global installation also leaves a persistent software change.
If the user follows the setup, the global install persistently changes the Node.js environment, while `npx -y` automatically obtains and runs the currently resolved package. The supplied material contains usage documentation but not the `@runcomfy/cli` implementation or a pinned version, so its install scripts and full behavior cannot be verified here. The skill describes this as one-time operator setup; its declared agent tool scope only covers an existing `runcomfy` command. Users can request a pinned package version and release checksum.
```bash# 1. Install (see runcomfy-cli skill for details)npm i -g @runcomfy/cli # or: npx -y @runcomfy/cli --versionShow 3 other places
# 1. Install (see runcomfy-cli skill for details)npm i -g @runcomfy/cli # or: npx -y @runcomfy/cli --version- **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 to bypass the file in CI / containers. Never echo the token into a prompt, log it, or check it in.- **Generated-file size cap**: the CLI aborts any single download > 2 GiB.- **Scope of bash usage**: declared `allowed-tools: Bash(runcomfy *)`. The skill never instructs the agent to run anything other than `runcomfy <subcommand>` — install lines are one-time operator setup.