원클릭으로
jenkins
Jenkins CI/CD integration for investigating builds, deployments, pipeline stages, and test results during RCA
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Jenkins CI/CD integration for investigating builds, deployments, pipeline stages, and test results during RCA
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
GitHub code repository integration for investigating code changes, deployments, commits, PRs, and suggesting fixes during RCA
CloudBees CI integration for investigating builds, deployments, pipeline stages, and test results during RCA
CloudBees Operations Center integration for cross-controller deployment visibility and feature flag correlation during RCA
Bitbucket code repository integration for managing repos, branches, PRs, issues, and CI/CD pipelines
On-prem Kubernetes cluster integration for running kubectl commands via Aurora agent relay or uploaded kubeconfig
Fly.io integration for application monitoring, machine lifecycle management, metrics, logs, and incident remediation
| name | jenkins |
| id | jenkins |
| description | Jenkins CI/CD integration for investigating builds, deployments, pipeline stages, and test results during RCA |
| category | cicd |
| connection_check | {"method":"get_token_data","provider_key":"jenkins","required_field":"base_url"} |
| tools | ["jenkins_rca"] |
| index | CI/CD -- investigate Jenkins builds, deployments, pipeline stages, logs, test results, OTel traces |
| rca_priority | 4 |
| allowed-tools | jenkins_rca |
| metadata | {"author":"aurora","version":"1.0"} |
Jenkins CI/CD integration for investigating builds and deployments during Root Cause Analysis. Uses three Jenkins APIs: Core REST API, Pipeline REST API (wfapi), and Blue Ocean REST API.
Unified Jenkins CI/CD investigation tool for Root Cause Analysis.
Actions:
recent_deployments -- Query stored deployment events; optional service filter and time_window_hoursbuild_detail -- Core API: SCM revision, changeSets, build causes, parameters. Requires job_path + build_numberpipeline_stages -- wfapi: stage-level breakdown with status and timing. Requires job_path + build_numberstage_log -- wfapi: per-stage log output for a specific node_id. Requires job_path + build_number + node_idbuild_logs -- Core API: console output, truncated to ~1MB. Requires job_path + build_numbertest_results -- Core API: test report with failure details. Requires job_path + build_numberblue_ocean_run -- Blue Ocean API: run data with changeSet and commit info. Requires pipeline_name + run_numberblue_ocean_steps -- Blue Ocean API: step-level detail for a pipeline node. Requires pipeline_name + run_numbertrace_context -- Extract OTel W3C Trace Context; params: deployment_event_id or job_path + build_numberRequired params vary by action: job_path + build_number for Core/wfapi, pipeline_name + run_number for Blue Ocean. service is optional for recent_deployments.
Recent deployments are a leading indicator of root cause. Always check if a deployment occurred shortly before the alert fired.
jenkins_rca(action='recent_deployments', service='SERVICE') -- Check for recent deploysjenkins_rca(action='build_detail', job_path='JOB', build_number=N) -- Build details + commitsjenkins_rca(action='pipeline_stages', job_path='JOB', build_number=N) -- Stage breakdownjenkins_rca(action='build_logs', job_path='JOB', build_number=N) -- Console outputjenkins_rca(action='test_results', job_path='JOB', build_number=N) -- Test failuresjenkins_rca(action='trace_context', deployment_event_id=ID) -- OTel trace correlationrecent_deployments to find deployments near the incident time.build_detail to get SCM changes and build causes before reading logs.pipeline_stages for stage-level breakdown to narrow which stage failed.trace_context to correlate deployment events with distributed traces.{jenkins_deploys_section}
jenkins_rca(action='recent_deployments', service='{service_name}') -- Recent deploysjenkins_rca(action='build_detail', job_path='JOB', build_number=N) -- Build details + commitsjenkins_rca(action='pipeline_stages', job_path='JOB', build_number=N) -- Stage breakdownjenkins_rca(action='stage_log', job_path='JOB', build_number=N, node_id='NODE') -- Stage logsjenkins_rca(action='build_logs', job_path='JOB', build_number=N) -- Console outputjenkins_rca(action='test_results', job_path='JOB', build_number=N) -- Test failuresjenkins_rca(action='blue_ocean_run', pipeline_name='PIPELINE', run_number=N) -- Blue Ocean datajenkins_rca(action='trace_context', deployment_event_id=ID) -- OTel trace correlationRecent deployments are a leading indicator of root cause.