
Create pipeline of Notice stages from top telemetry issues (sugar)
bid_pipeline.Rd
Convenience function that creates a pipeline of Notice stages from the highest priority telemetry issues. Useful for systematic issue resolution workflows.
Examples
if (FALSE) { # \dontrun{
issues <- bid_telemetry("data.sqlite")
interpret <- bid_interpret("How can we systematically improve UX?")
# Create pipeline for top 3 issues
notice_pipeline <- bid_pipeline(issues, interpret, max = 3)
# Continue with first issue in pipeline
anticipate <- bid_anticipate(previous_stage = notice_pipeline[[1]])
} # }