edit
1
总安装量
1
周安装量
#41243
全站排名
安装命令
npx skills add https://github.com/pipelex/skills --skill edit
Agent 安装分布
windsurf
1
opencode
1
cursor
1
continue
1
github-copilot
1
Skill 文档
Edit Pipelex Workflow
Modify existing Pipelex workflow bundles.
Workflow
Prerequisite: Check CLI availability:
- Try
pipelex --version - If not found, try
uv run pipelex --version - If neither works, guide install:
pip install pipelexoruv add pipelex
Use whichever method works. Always add --no-logo to commands.
-
Read the existing .plx file – Understand current structure before making changes
-
Understand requested changes:
- What pipes need to be added, removed, or modified?
- What concepts need to change?
- Does the workflow structure need refactoring?
-
Apply changes:
- Maintain proper pipe ordering (controllers before sub-pipes)
- Keep TOML formatting consistent
- Preserve cross-references between pipes
- Keep inputs on a single line
- Maintain POSIX standard (empty line at end, no trailing whitespace)
-
Validate after editing:
- Run
pipelex --no-logo validate <file>.plx - Fix any errors introduced by changes
- Run
-
Regenerate inputs if needed:
- If inputs changed, run
pipelex --no-logo build inputs <file>.plx - Update existing inputs.json if present
- If inputs changed, run
Native Concepts
These are built-in and do NOT need definitions:
Text, Image, PDF, Document, TextAndImages, Number, Page, JSON, ImgGenPrompt, Html
Common Edit Operations
- Add a pipe: Define concept if needed (unless using native concepts above), add pipe in correct order
- Modify a prompt: Update prompt text, check variable references
- Change inputs/outputs: Update type, regenerate inputs
- Add batch processing: Add
batch_overandbatch_asto step - Refactor to sequence: Wrap multiple pipes in PipeSequence
Reference
See Pipelex Language Reference for complete syntax documentation.