check
2
总安装量
2
周安装量
#65263
全站排名
安装命令
npx skills add https://github.com/pipelex/skills --skill check
Agent 安装分布
cursor
2
codex
2
claude-code
2
windsurf
1
continue
1
Skill 文档
Check Pipelex Workflow
Validate and review Pipelex workflow bundles without making changes.
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 .plx file – Load and parse the workflow
-
Run CLI validation:
- Execute
pipelex --no-logo validate <file>.plx - Capture all validation errors
- Execute
-
Analyze for additional issues:
- Unused concepts (defined but never referenced)
- Unreachable pipes (not in main_pipe execution path)
- Missing descriptions on pipes or concepts
- Inconsistent naming conventions
- Potential prompt issues (missing variables, unclear instructions)
-
Report findings by severity:
- Errors: Validation failures that prevent execution
- Warnings: Issues that may cause problems
- Suggestions: Improvements for maintainability
-
Do NOT make changes – This skill is read-only
Native Concepts
These are built-in and should NOT be flagged as undefined:
Text, Image, PDF, Document, TextAndImages, Number, Page, JSON, ImgGenPrompt, Html
What Gets Checked
- TOML syntax validity
- Concept definitions and references (excluding native concepts above)
- Pipe type configurations
- Input/output type matching
- Variable references in prompts
- Cross-domain references
- Naming convention compliance
Reference
See Pipelex Language Reference for complete syntax documentation.