/install gh-pipelinegate
PipelineGate
Chain multiple tools into a single pipeline call.
Start the server
uvicorn pipelinegate.app:app --port 8011
Run a security pipeline
curl -s -X POST http://localhost:8011/v1/run \
-H "Content-Type: application/json" \
-d '{
"steps": [
{"tool": "scan-text", "input": {"text": "Check this text"}},
{"tool": "scan-skill", "input": {"skill_content": "---\
name: test\
---\
Hello"}},
{"tool": "check-scope", "input": {"skill_content": "---\
name: test\
---\
Hello"}}
]
}' | jq
Returns success (all steps passed), total_steps, completed_steps, and results (output per step).
Available tools
curl -s http://localhost:8011/v1/tools | jq '.tools[] | "\(.name): \(.description)"' -r
Tools: scan-text, scan-skill, check-scope, validate, diff, check-env, convert.
Error handling
By default, the pipeline stops on the first error. Set "stop_on_error": false to continue:
curl -s -X POST http://localhost:8011/v1/run \
-H "Content-Type: application/json" \
-d '{"steps": [{"tool": "scan-text", "input": {"text": "hi"}}], "stop_on_error": false}' | jq
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install gh-pipelinegate - 安装完成后,直接呼叫该 Skill 的名称或使用
/gh-pipelinegate触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
Pipelinegate 是什么?
Chain Green Helix tools into multi-step pipelines. Define a sequence of steps (scan-text, scan-skill, check-scope, validate, diff, check-env, convert) and Pi... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 80 次。
如何安装 Pipelinegate?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install gh-pipelinegate」即可一键安装,无需额外配置。
Pipelinegate 是免费的吗?
是的,Pipelinegate 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
Pipelinegate 支持哪些平台?
Pipelinegate 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Pipelinegate?
由 mirni(@mirni)开发并维护,当前版本 v1.0.0。