From jenkins
Triggers a Jenkins build and watches it until completion, streaming status updates. Use this when you want to kick off a build and get notified when it's done.
How this skill is triggered — by the user, by Claude, or both
Slash command
/jenkins:build-watchThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
If the user provided a job name (e.g. `/build-watch my-service`), use it directly.
If the user provided a job name (e.g. /build-watch my-service), use it directly.
If the user provided parameters (e.g. /build-watch my-service BRANCH=main ENV=staging), parse them as key-value pairs.
If no job name was given, ask: "Which Jenkins job do you want to trigger?"
Call trigger_build with the job name and any provided parameters.
Confirm the build was queued and note the queue ID if returned.
Call get_job_status every 15 seconds to check whether the build has started and what its current state is.
Once the build number is known (it may take a few seconds to move from queue to running), switch to get_build_status with the specific build number.
Report status updates as they happen:
QUEUED → "Build is queued..."RUNNING → "Build #N is running (started )..."SUCCESS → "✅ Build #N passed"FAILURE → "❌ Build #N failed"ABORTED → "⚠️ Build #N was aborted"Stop polling after 30 minutes. If the build hasn't finished by then, say so and provide the build URL.
On completion, present:
### Build <job-name> #<N> — <STATUS>
**Duration**: <duration>
**Triggered by**: <cause>
**Branch**: <branch if available>
If the build failed, automatically run the ci-diagnose skill to explain the failure.
Offer to:
get_test_results if tests ranget_artifacts if the build produced artifactsreplay_build if it failed due to a transient issuenpx claudepluginhub kud/claude-plugins --plugin jenkinsTriggers and monitors Jenkins builds interactively with Git branch/tag inference and background progress tracking. Useful for ABC Jenkins project deployments on phrases like '发布 Jenkins' or '触发构建'.
Monitors running CI builds on GitHub Actions and CircleCI via polling, reports completion status, and diagnoses failures by fetching logs, job summaries, and artifacts.