Skip to main content
The reqflo binary is a single executable you install once and then use in any terminal, CI environment, or automation script. After installation, run reqflo --help to confirm it’s working.

When to use it

Install the CLI whenever you want to run journeys outside the Reqflo web editor — local development, CI pipelines, or any scripted workflow.

Key concepts

The reqflo binary. All CLI functionality lives in the single reqflo command. There are no extra runtimes or plugins required for local runs. Cloud runs require authentication (see Authenticate). Shell completion. After installing, you can optionally enable tab completion for your shell — run reqflo completion --help for instructions.

How it works

Choose the install method that fits your environment. The binary works on macOS, Linux, and Windows.

Examples

brew install reqflo
After installation, verify it’s on your PATH:
reqflo --version
To install a specific version (useful for pinning in CI):
curl -fsSL https://install.reqflo.io | sh -s -- --version 1.2.3
In CI, pin the CLI version to avoid unexpected breakage from updates. Use the versioned install or lock the version in your package manager.