skills$openclaw/jenkins
mrgoodb7.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

namejenkins
descriptionManage Jenkins jobs, builds, and pipelines via API. Trigger builds and monitor status. OpenClaw Skills integration.
ownermrgoodb
repositorymrgoodb/jenkins
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @mrgoodb/jenkins
last updatedFeb 7, 2026

Maintainer

mrgoodb

mrgoodb

Maintains jenkins in the OpenClaw Skills directory.

View GitHub profile
File Explorer
2 files
.
_meta.json
267 B
SKILL.md
815 B
SKILL.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"
curl -u "$JENKINS_USER:$JENKINS_TOKEN" "$JENKINS_URL/job/{jobName}/lastBuild/api/json"
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.