/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
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install gh-pipelinegate - After installation, invoke the skill by name or use
/gh-pipelinegate - Provide required inputs per the skill's parameter spec and get structured output
What is 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... It is an AI Agent Skill for Claude Code / OpenClaw, with 80 downloads so far.
How do I install Pipelinegate?
Run "/install gh-pipelinegate" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is Pipelinegate free?
Yes, Pipelinegate is completely free, licensed under MIT-0. You can download, install and use it at no cost.
Which platforms does Pipelinegate support?
Pipelinegate is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created Pipelinegate?
It is built and maintained by mirni (@mirni); the current version is v1.0.0.