安装步骤会在本机执行未随审计材料提供的 npm 软件
原文依据:3 处技能指示全局安装 `@runcomfy/cli`,或使用 `npx -y` 自动下载并运行它。实际包代码未包含在材料中,所以无法审查安装脚本、依赖项或运行时行为。
若 npm 包、其依赖或发布账户被攻破,安装或首次运行可能以当前用户权限读取文件、访问环境变量或修改系统中的用户级文件;全局安装还会产生持久变更。
安装说明要求通过 npm 全局安装外部 CLI,或让 `npx -y` 自动取得并运行它;随后该 CLI 还负责登录、网络请求和文件下载。所给材料只有技能说明,没有 npm 包的实现,因此无法从这些证据核验其安装脚本、依赖或实际运行行为。包管理器来源比任意远程 shell 脚本更受约束,但仍属于在本机执行第三方代码;用户可要求固定版本、校验发布者和依赖,并在隔离环境中运行。
```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>查看另外 2 个位置
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.