Skills for building Pipelex workflows with Claude Code.
- Python 3.10+
- Pipelex CLI installed
Option A: Global install
pip install pipelexOption B: Project dependency with uv
uv add pipelexVerify: pipelex --version or uv run pipelex --version
This is a plugin repository containing Pipelex skills. To use it:
Option A: Clone and reference locally
git clone https://github.com/Pipelex/skills.git
claude --plugin-dir /path/to/skillsOption B: Manual skill access
The skills are documented in skills/*/SKILL.md and can be referenced directly.
| Skill | Command | Description |
|---|---|---|
| Build | /pipelex:build |
Create new Pipelex workflow bundles (.plx files) |
| Edit | /pipelex:edit |
Modify existing workflow bundles |
| Check | /pipelex:check |
Validate and report issues (read-only) |
| Fix | /pipelex:fix |
Automatically fix validation errors |
/pipelex:build
Creates a new .plx file with guided requirements gathering or direct creation.
/pipelex:edit
Modify pipes, concepts, or structure in an existing .plx file.
/pipelex:check
Validate a workflow and report errors, warnings, and suggestions without making changes.
/pipelex:fix
Automatically fix common validation errors and re-validate until the workflow passes.
Pipelex is an open-source language for building composable AI workflows. It uses .plx files to define typed concepts and pipes that transform data through focused, sequential steps.
Learn more at docs.pipelex.com