Installation executes npm software whose implementation was not supplied for audit
Source references: 3The Skill directs the user to install `@runcomfy/cli` globally or use `npx -y` to download and execute it automatically. The package code is absent from the supplied material, so its install scripts, dependencies, and runtime behavior cannot be reviewed.
If the npm package, a dependency, or its publishing account is compromised, installation or first execution could read files, access environment variables, or modify user-level files with the current user's permissions. A global installation also makes persistent changes.
The setup directs users to globally install an external CLI or let `npx -y` fetch and execute it; that CLI then handles login, network requests, and downloads. The supplied material contains only the skill instructions, not the npm package implementation, so its install scripts, dependencies, and actual runtime behavior cannot be verified here. A package-manager source is more constrained than an arbitrary remote shell script, but it still executes third-party code locally; users can require a pinned version, publisher/dependency verification, and isolation.
```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 2 other places
The skill picks Veo 3-1 Extend or Fast Extend based on quality vs cost intent, and invokes `runcomfy run` with the source video URL + continuation prompt. The CLI POSTs to the RunComfy Model API, polls request status, and downloads the resulting clip into `--output-dir`. `Ctrl-C` cancels the remote request before exit.- **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. Never echo into prompts or logs.