OMX
Oh My CodeXv0.18.14

$pipeline

Pipeline skill that runs predefined stages in sequence

TL;DR

Use $pipeline when you need to run multiple stages in sequence. It advances to the next stage after each completes, and intermediate outputs become inputs to the next stage.

How to invoke

$pipeline "run lint → test → build → deploy in order"

When to use it

Good fitAvoid
Work with fixed order like CI/CD stagesIndependent tasks that can be parallelized
Each stage's output is the next stage's inputRunning a single task
Repeatable release flows

Difference from $ralph

$ralph is a loop that repeats until completion evidence appears. $pipeline has a fixed stage order and passes through each stage once. If you need to check results between stages, $pipeline is a better fit.

  • $ralph — repeat loop until complete
  • $team — split stages into parallel lanes

On this page