bdy pipeline

$bdy pipeline|pip [options] [command]

Commands to interact with the pipeline service

OPTIONS
-h, --help
display help for command
AVAILABLE COMMANDS
Pipeline create. Required scopes: EXECUTION_RUN
Pipeline delete. Required scopes: EXECUTION_RUN
Pipeline info. Required scopes: EXECUTION_INFO
Pipeline list. Required scopes: EXECUTION_INFO
Manage pipeline runs
Pipeline update. Required scopes: EXECUTION_RUN
Pipeline yaml. Required scopes: EXECUTION_INFO

Documentation for bdy v1.22.49

Last modified on May 19, 2026

Examples

## run pipeline with high priority and upload everything from scratch
bdy pip run start pipeline-identifier --priority HIGH -f$
## run pipeline without cache and wait for execution to complete
bdy pip run start pipeline-identifier --wait -c$
## run pipeline and pass custom variables to execution
bdy pip run start pipeline-identifier -v key:val -v a:b$
## run pipeline and pass custom variables from file
bdy pip run start pipeline-identifier -vf path/to/env/file$
## run pipeline and output only final jsonl
bdy pip run start pipeline-identifier --no-follow --format jsonl$
## pipeline run status
bdy pip run status pipeline-identifier run-id$
## pipeline run status, get only final jsonl
bdy pip run status pipeline-identifier run-id --no-follow --format jsonl$
## pipeline run logs
bdy pip run logs pipeline-identifier run-id action-run-id$
## pipeline run logs with jsonl output
bdy pip run logs pipeline-identifier run-id action-run-id --format jsonl$
## pipeline run cancel
bdy pip run cancel pipeline-identifier run-id$
## pipeline run cancel with final output in jsonl
bdy pip run cancel pipeline-identifier run-id --no-follow --format jsonl$
## pipeline run retry
bdy pip run retry pipeline-identifier run-id$
## pipeline run retry with only final json output
bdy pip run retry pipeline-identifier run-id --no-follow --format json$
## pipeline run approve
bdy pip run approve pipeline-identifier run-id action-run-id$
## pipeline run pass params
bdy pip run approve pipeline-identifier run-id action-run-id -v a:b$
## pipeline run approve with final output in jsonl
bdy pip run approve pipeline-identifier run-id action-run-id --no-follow --format jsonl$
## pipeline run list
bdy pip run list pipeline-identifier$
## pipeline run list in json
bdy pip run list pipeline-identifier --format json$
## pipeline list
bdy pip list$
## pipeline list in json
bdy pip list --format json$
## pipeline get
bdy pip get pipeline-identifier$
## pipeline get in json
bdy pip get pipeline-identifier --format json$
## pipeline delete
bdy pip rm pipeline-identifier$
## pipeline force delete
bdy pip rm pipeline-identifier -f$
## pipeline yml
bdy pip yml pipeline-identifier$
## pipeline create with name
bdy pip create -n name$
## pipeline create with yaml
bdy pip create --yaml @path/to/yaml$
## pipeline create with name, output json
bdy pip create -n name --format json$
## pipeline update with yaml
bdy pip update pipeline-identifier @path/to/yaml$
## pipeline update with yaml and output json
bdy pip update pipeline-identifier @path/to/yaml --format json$