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.80

Last modified on Jun 30, 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$