Pipelex CLI Documentation
The pipelex CLI is the runtime and project-configuration CLI for Pipelex. Use it to initialize config, validate methods, run pipes, inspect the runtime state, and generate supporting files.
Overview
The Pipelex CLI is organized into several command groups:
| Command | Description |
|---|---|
| init | Initialize Pipelex configuration |
| validate | Validate configuration and pipelines |
| show | Inspect configuration, pipes, and AI models |
| run | Execute pipelines |
| build | Generate pipelines, runners, and structures |
Related CLI Surface
Package manifest management currently lives in the mthds CLI:
- package —
mthds package init,mthds package list, andmthds package validate
Usage Tips
-
Initial Setup
- Run
pipelex initto create configuration files and select your backends - Configure your AI providers in
.pipelex/inference/backends.toml
- Run
-
Development Workflow
- Write or generate pipelines in
.mthdsfiles - Validate with
pipelex validate pipe your_pipe_codeorpipelex validate bundle your_bundle.mthdsduring development - Run
pipelex validate pipe --allbefore committing changes
- Write or generate pipelines in
-
Running Pipelines
- Use
pipelex show pipe --allto see available pipes - Use
pipelex show pipe pipe_codeto inspect pipe details - Run with
pipelex run pipe pipe_code, add the required inputs using--inputs
- Use
-
Configuration Management
- Use
pipelex show configto verify current settings - Use
pipelex show backendsto check inference backend setup - Use
pipelex show models backend_nameto see available models
- Use
Related Documentation
- Configure AI Providers - Set up LLM backends
- Design and Run Pipelines - Pipeline development guide
- Packages -
METHODS.tomlmanifests and exports