Back to skills
SkillHub ClubShip Full StackFull StackTesting

jenkins

Interacts with the Jenkins CI to get build and test job results

Packaged view

This page reorganizes the original catalog entry around fit, installability, and workflow context first. The original raw source lives below.

Stars
2,222
Hot score
99
Updated
March 20, 2026
Overall rating
C4.0
Composite score
4.0
Best-practice grade
B84.0

Install command

npx @skill-hub/cli install checkmk-checkmk-jenkins

Repository

Checkmk/checkmk

Skill path: .github/skills/jenkins

Interacts with the Jenkins CI to get build and test job results

Open repository

Best for

Primary workflow: Ship Full Stack.

Technical facets: Full Stack, Testing.

Target audience: everyone.

License: Unknown.

Original source

Catalog source: SkillHub Club.

Repository owner: Checkmk.

This is still a mirrored public skill entry. Review the repository before installing into production workflows.

What it helps with

  • Install jenkins into Claude Code, Codex CLI, Gemini CLI, or OpenCode workflows
  • Review https://github.com/Checkmk/checkmk before adding jenkins to shared team environments
  • Use jenkins for development workflows

Works across

Claude CodeCodex CLIGemini CLIOpenCode

Favorites: 0.

Sub-skills: 0.

Aggregator: No.

Original source / Raw SKILL.md

---
name: jenkins
description: Interacts with the Jenkins CI to get build and test job results
---

# Commands you can use to interact with Jenkins

```
# Fetch the Jenkins job results
jenkins_build_data.py <Jenkins job URL> --include=stages

# You can download test results and console output:
jenkins_build_data.py <Jenkins stage job URL> --include=console,tests

# In case the truncated console log does not provide enough information, download the full log
jenkins_build_data.py <Jenkins stage job URL> --include=full-console

# in case the jenkins job/build is still BUILDING, you can poll until it is finished (defaults 2 minutes):
jenkins_build_data.py <url> --poll [--poll-interval=SECONDS]

# Usage:
# jenkins_build_data.py [-h] [--include INCLUDE] [--download SPEC] [--download-dir DOWNLOAD_DIR] [--json] [-q] url
#
# INCLUDE can be: console,tests,artifacts,stages,full-console
```

# Downloading artifacts

Always use `/tmp/jenkins-artifacts` as the download directory:

```
jenkins_build_data.py <url> --download "<artifact>" --download-dir /tmp/jenkins-artifacts
```

# Parsing of the downloaded json

Prefer `jq` over `python3` commands.

# In case the commands jenkins_build_data.py is missing

Ask the user to clone the zeug_cmk git repository and add it to their PATH.
See also: https://wiki.lan.checkmk.net/x/4zBSCQ