> ## Documentation Index
> Fetch the complete documentation index at: https://docs.crewship.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Pipeline Commands

> Backwards-compatible alias for the routine CLI.

# crewship pipeline

`pipeline` is a backwards-compatible alias for `routine`. Every command and
flag documented on [the routine CLI page](/cli/routine) works with either
prefix:

```bash theme={null}
crewship pipeline list
crewship pipeline run summarize-text --inputs '{"text":"..."}'
crewship pipeline schedules list
```

The live Cobra command is named `routine` and declares `pipeline` as its alias;
there is no separate pipeline command tree. API paths and server resources keep
the historical `pipeline` name (for example,
`/api/v1/workspaces/{workspace}/pipelines/{slug}`).

See [Routine Commands](/cli/routine) for the complete subcommand, flag,
output, and API reference.

For run scripts, the important receipts are `COMPLETED`, `FAILED`,
`CANCELLED`, `WAITING`, `DEDUPED`, and `SCHEDULED`. `WAITING` is a healthy
approval pause; `SCHEDULED` is a `202` deferred receipt with a `pending_id`, not
a run id. Use `crewship pipeline pending list|cancel` and
`crewship pipeline budget get|set|summary` through the alias documented on the
routine page.
