From devops-skills
Debugs failing CI pipelines and containers by analyzing logs, reproducing locally with Docker/npm commands, identifying root causes, and verifying fixes. Use when CI is red or containers fail.
How this skill is triggered — by the user, by Claude, or both
Slash command
/devops-skills:ci-debug-workflowThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Debug failing CI pipelines, containers, and reproduce bugs locally.
Debug failing CI pipelines, containers, and reproduce bugs locally.
Read CI logs first. Identify:
For bug reports, extract reproduction steps. See bug-thread-extraction.md.
Never fix blind. Reproduce failure before changing code:
# Run same commands CI runs
npm ci && npm test
# Or match CI environment
docker build -t debug-image .
docker run --rm debug-image npm test
Common CI failure patterns in ci-patterns.md:
Container issues in docker-debug.md.
Fix the actual issue, not symptoms:
Push fix and confirm CI passes. Do not mark done until green.
git push && gh run watch
|| true to mask failuresnpx claudepluginhub spences10/claude-code-toolkit --plugin devops-skillsDiagnoses and fixes CI/CD pipeline failures including build errors, test failures, and environment issues. Guides users through triage and repair workflows.
Diagnoses and fixes CI/CD pipeline failures including build errors, test failures, and pipeline issues. Uses git log analysis and structured debugging to identify root causes.
Guides root-cause analysis of failures in CI/CD, tests, runtime, deployment, and tooling. Outputs RCA, narrowest fix, verification, and prevention.