The runcomfy CLI is a single statically-linked Rust binary. Pick whichever install matches your environment.Documentation Index
Fetch the complete documentation index at: https://docs.runcomfy.com/llms.txt
Use this file to discover all available pages before exploring further.
Option 1: npx (no install)
For a one-off run or to try the CLI before committing to an install:npx downloads @runcomfy/cli, runs its postinstall hook (which fetches the per-platform binary from GitHub Releases), and invokes it. Subsequent npx runs reuse the cached package. No PATH changes, no admin privileges.
Option 2: npm global
npx, but runcomfy is on your PATH permanently. Update with npm i -g @runcomfy/cli@latest.
Option 3: curl install script
For developers who don’t want Node on the install path, or for quick provisioning into containers / VMs:- Detects your OS and CPU architecture
- Downloads the matching binary from the latest GitHub Release
- Verifies the SHA-256 checksum
- Installs to
~/.local/bin/runcomfy(or/usr/local/bin/runcomfyif you have write access) - Adds the install dir to your PATH if needed (with a one-line printed instruction)
Option 4: Build from source
rustup install stable).
Supported platforms
| OS | Architecture | npm | curl install.sh | Notes |
|---|---|---|---|---|
| macOS | Apple Silicon (M1+) | ✅ | ✅ | |
| macOS | Intel | ✅ | ✅ | |
| Linux | x86_64 (glibc) | ✅ | ✅ | Works on Ubuntu, Debian, Fedora, RHEL, Alpine via apk add gcompat |
| Linux | ARM64 (aarch64) | ✅ | ✅ | Raspberry Pi 4 / 5, ARM cloud VMs |
| Windows | x86_64 | — | — | Use WSL2 for now |
Shell completion
After install, generate a completion script for your shell:runcomfy <Tab> will then list subcommands; runcomfy run <Tab> will offer flags.
