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.
npx claudepluginhub spences10/claude-code-toolkit --plugin devops-skillsThis skill uses the workspace's default tool permissions.
Debug failing CI pipelines, containers, and reproduce bugs locally.
Troubleshoots CI/CD pipeline failures, build errors, and test issues by analyzing git logs, distinguishing test vs implementation problems, and applying fixes without skipping tests or disabling checks.
Monitors running CI builds on GitHub Actions and CircleCI via polling, reports completion status, and diagnoses failures by fetching logs, job summaries, and artifacts.
Enforces root cause investigation before fixes for bugs, test failures, errors, unexpected behavior, performance issues, builds, and integrations.
Share bugs, ideas, or general feedback.
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 failures