Setup runs and globally installs third-party software
Source references: 3The setup invokes a remote package through npx and uses global options for the Skill and RunComfy CLI; installing ImageMagick also changes the system or Homebrew environment. No package version or commit is pinned.
Downloaded packages and lifecycle scripts can run with the permissions of the account performing installation. A compromised package, publisher account, or dependency could read accessible data or alter global tooling.
These are explicit installation instructions: globally add a third-party skill through npx, globally install the RunComfy CLI through npm, and install ImageMagick through Homebrew or apt. They are normal, user-initiated prerequisites for the stated workflow, but they run downloaded code and modify global or system package environments, with no versions pinned. The user can install in an isolated environment and request pinned versions and package provenance checks.
```bashnpx skills add agentspace-so/runcomfy-agent-skills --skill codex-pet -g```Show 2 other places
1. **RunComfy CLI** — `npm i -g @runcomfy/cli`2. **RunComfy account** — `runcomfy login`. CI alternative: `RUNCOMFY_TOKEN=<token>`.3. **ImageMagick** — `brew install imagemagick` (macOS) or `apt-get install imagemagick` (Linux). Provides the `magick` command for the deterministic atlas assembly.4. **A source image URL** — publicly fetchable HTTPS, JPEG/PNG/WebP, the subject the Codex Pet will be modeled on.## Prerequisites1. **RunComfy CLI** — `npm i -g @runcomfy/cli`2. **RunComfy account** — `runcomfy login`. CI alternative: `RUNCOMFY_TOKEN=<token>`.3. **ImageMagick** — `brew install imagemagick` (macOS) or `apt-get install imagemagick` (Linux). Provides the `magick` command for the deterministic atlas assembly.4. **A source image URL** — publicly fetchable HTTPS, JPEG/PNG/WebP, the subject the Codex Pet will be modeled on.