plugins/devops-skills/skills/ci-debug-workflow/SKILL.md
Debug failing CI pipelines, containers, and reproduce bugs locally. Use when CI is red, containers won't start, or need to reproduce bugs.
npx skillsauth add spences10/claude-code-toolkit ci-debug-workflowInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
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 failuresdevelopment
Design and create Claude Skills using progressive disclosure principles. Use when building new skills, planning skill architecture, or writing skill content.
testing
Verify sources before presenting findings. Use when asked to research links or documentation.
data-ai
Analyze session history for learnings and persist to skills. Solves "memory zero" - correct once, never again.
tools
Validate, test, and distribute Claude Code plugins and marketplaces. Use when developing plugins, debugging validation errors, or preparing for distribution.