Pipelex CLI Documentation
The Pipelex CLI provides a command-line interface for managing and interacting with your Pipelex projects. This document outlines all available commands and their usage.
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 |
| kit | Manage agent rules and migration instructions |
Usage Tips
-
Initial Setup
- Run
pipelex initto create configuration files and select your backends - Configure your AI providers in
.pipelex/inference/backends.toml - Install agent rules with
pipelex kit rulesif using AI assistants
- Run
-
Development Workflow
- Write or generate pipelines in
.plxfiles - Validate with
pipelex validate your_pipe_codeorpipelex validate your_bundle.plxduring development - Run
pipelex validate allbefore committing changes
- Write or generate pipelines in
-
Running Pipelines
- Use
pipelex show pipesto see available pipes - Use
pipelex show pipe pipe_codeto inspect pipe details - Run with
pipelex run 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
- Build Pipe - Generate pipelines from natural language
- Kit Commands - Agent rules and migration management
- Configure AI Providers - Set up LLM backends
- Design and Run Pipelines - Pipeline development guide