Skip to content

orvanta flow

Manage flows in your workspace. Flows are addressed by path (e.g. f/folder/my_flow) and stored locally as flow specs.

Terminal window
orvanta flow <subcommand> [options]

Create a new empty flow.

Terminal window
orvanta flow new f/demo/welcome --summary "Welcome flow"

List all flows.

Terminal window
orvanta flow list [--show-archived] [--json]

Run a flow by path.

Terminal window
orvanta flow run f/demo/welcome --data '{"name": "Ada"}'

Inputs are passed with -d/--data as a JSON string, @<filename>, or @- for stdin.

Run a local flow without deploying it. Uses local scripts by default; pass --remote to use deployed workspace scripts.

Terminal window
orvanta flow preview f/demo/welcome --data '{"name": "Ada"}'

Push a local flow spec, overriding the remote version.

Terminal window
orvanta flow push ./welcome.flow.yaml f/demo/welcome --message "Update greeting"

Show a flow’s details, or its version history.

Terminal window
orvanta flow get f/demo/welcome
orvanta flow history f/demo/welcome