CClaude Code Catalog
All Skills

CI/CD Debugger

CodingIntermediate

Analyzes failure logs from GitHub Actions, GitLab CI, and other pipelines. Identifies the error cause and provides specific solutions including config file fixes and environment variable checks.

Trigger/cicd
FrequencyAs needed

DevOps engineer? Paste CI failure logs into /cicd to get root cause + fix code instantly

Developer new to GitHub Actions? Auto-detect and fix YAML config errors

CI/CDDevOpsGitHub ActionsPipelines

How It Works

Run /cicd [paste error log]
Phase 1: 3 analyses in parallel
log-parse
Parse error log
config-check
Audit config file
env-verify
Check environment variables
Generate fix + re-run guide
Root cause analysis + fixed config file

Skill Code

# CI/CD Debugger Skill ## Trigger: /cicd [paste error log] When the user shares CI/CD failure logs: 1. Identify the CI platform: - GitHub Actions, GitLab CI, CircleCI, Jenkins 2. Parse error: - Find the actual error (not just the first red line) - Check for common issues: - Missing secrets/env variables - Version mismatches (Node, Python, etc.) - Permission denied errors - Timeout issues - Cache invalidation problems 3. Read the pipeline config file: - .github/workflows/*.yml - .gitlab-ci.yml - Jenkinsfile 4. Output format: --- ## 🔧 CI/CD Debug Report **Platform**: [GitHub Actions] **Workflow**: [name] **Failed Step**: [step name] ### Root Cause [Explanation of what went wrong] ### Fix ```yaml # Before [broken config] # After [fixed config] ``` ### Prevention - [how to prevent this in the future] ---

Copy and paste into your CLAUDE.md to start using immediately.

How CI/CD Debugger Works

CI/CD Debugger reads your pipeline configuration and error logs, identifies the failing step, cross-references common failure patterns for your CI platform (GitHub Actions, GitLab CI, etc.), and provides step-by-step resolution.

When to Use CI/CD Debugger

Saves hours when a CI pipeline fails with an obscure error that works locally — it understands platform-specific quirks like runner environment differences, caching issues, and permission problems.

Key Strengths

  • Understands platform-specific CI/CD quirks and limitations
  • Cross-references error patterns from common failure databases
  • Provides fixes tailored to your exact pipeline configuration
  • Handles GitHub Actions, GitLab CI, and other major platforms

Same Category

Coding View All

Popular in Other Categories