7.8k★by mrgoodb
jenkins – OpenClaw Skill
jenkins is an OpenClaw Skills integration for devops workflows. Manage Jenkins jobs, builds, and pipelines via API. Trigger builds and monitor status.
7.8k stars8.3k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026devops
Skill Snapshot
| name | jenkins |
| description | Manage Jenkins jobs, builds, and pipelines via API. Trigger builds and monitor status. OpenClaw Skills integration. |
| owner | mrgoodb |
| repository | mrgoodb/jenkins |
| language | Markdown |
| license | MIT |
| topics | |
| security | L1 |
| install | openclaw add @mrgoodb/jenkins |
| last updated | Feb 7, 2026 |
Maintainer

File Explorer
2 files
.
_meta.json
267 BSKILL.md
815 BSKILL.md
name: jenkins description: Manage Jenkins jobs, builds, and pipelines via API. Trigger builds and monitor status. metadata: {"clawdbot":{"emoji":"🔧","requires":{"env":["JENKINS_URL","JENKINS_USER","JENKINS_TOKEN"]}}}
Jenkins
CI/CD automation server.
Environment
export JENKINS_URL="https://jenkins.example.com"
export JENKINS_USER="admin"
export JENKINS_TOKEN="xxxxxxxxxx"
List Jobs
curl -u "$JENKINS_USER:$JENKINS_TOKEN" "$JENKINS_URL/api/json?tree=jobs[name,color]"
Trigger Build
curl -X POST -u "$JENKINS_USER:$JENKINS_TOKEN" "$JENKINS_URL/job/{jobName}/build"
Get Build Status
curl -u "$JENKINS_USER:$JENKINS_TOKEN" "$JENKINS_URL/job/{jobName}/lastBuild/api/json"
Links
README.md
No README available.
Permissions & Security
Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.
Requirements
- OpenClaw CLI installed and configured.
- Language: Markdown
- License: MIT
- Topics:
FAQ
How do I install jenkins?
Run openclaw add @mrgoodb/jenkins in your terminal. This installs jenkins into your OpenClaw Skills catalog.
Does this skill run locally or in the cloud?
OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.
Where can I verify the source code?
The source repository is available at https://github.com/openclaw/skills/tree/main/skills/mrgoodb/jenkins. Review commits and README documentation before installing.
