orvanta flow
Manage flows in your workspace. Flows are addressed by path (e.g. f/folder/my_flow) and stored locally as flow specs.
orvanta flow <subcommand> [options]Subcommands
Section titled “Subcommands”Create a new empty flow.
orvanta flow new f/demo/welcome --summary "Welcome flow"List all flows.
orvanta flow list [--show-archived] [--json]Run a flow by path.
orvanta flow run f/demo/welcome --data '{"name": "Ada"}'Inputs are passed with -d/--data as a JSON string, @<filename>, or @- for stdin.
preview
Section titled “preview”Run a local flow without deploying it. Uses local scripts by default; pass --remote to use deployed workspace scripts.
orvanta flow preview f/demo/welcome --data '{"name": "Ada"}'Push a local flow spec, overriding the remote version.
orvanta flow push ./welcome.flow.yaml f/demo/welcome --message "Update greeting"get / history
Section titled “get / history”Show a flow’s details, or its version history.
orvanta flow get f/demo/welcomeorvanta flow history f/demo/welcomeRelated
Section titled “Related”- Concepts: Workflows
- Jobs — Inspect the jobs a flow run produces.
- Sync — Deploy many items at once.