Claude-skill-registry ci-failure-analyzer
Analyze GitHub Actions CI failures for the current branch. Use when the user asks about CI status, test failures, build errors, GitHub Actions problems, or mentions checking CI, workflow failures, or pipeline status.
install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/ci-failure-analyzer" ~/.claude/skills/majiayu000-claude-skill-registry-ci-failure-analyzer && rm -rf "$T"
manifest:
skills/data/ci-failure-analyzer/SKILL.mdsource content
CI Failure Analyzer
Analyzes GitHub Actions CI failures for the current git branch and provides detailed failure reports.
Instructions
When the user asks about CI status, failures, or test errors, follow these steps:
1. Get the current branch name
git rev-parse --abbrev-ref HEAD
2. List recent CI runs for the current branch
gh run list --branch <branch-name> --limit 5
This shows the most recent workflow runs with their status (completed/success/failure).
3. Identify the most recent failed run
Look for runs with
failure status in the output. Get the run ID (first column).
4. Get detailed failure logs
gh run view <run-id> --log-failed
This shows only the failed job logs, filtering out successful steps.
5. Extract key failure information
Parse the logs to find:
- Which test(s) failed
- The actual error messages and stack traces
- Which Python version or environment had the failure
- The root cause of the failure
Use grep to find error patterns:
gh run view <run-id> --log | grep -A 20 "FAILED" gh run view <run-id> --log | grep -B 5 -A 30 "ERRORS\|FAILURES" gh run view <run-id> --log | grep -A 100 "ModuleNotFoundError\|ImportError\|AssertionError"
6. Present a clear failure report
Format the report as:
## CI Status for branch: <branch-name> **Most recent run:** <status> (run ID: <run-id>) ### Failure Summary - **Failed tests:** List of failed test names - **Total results:** X failed, Y passed, Z skipped - **Error type:** ModuleNotFoundError / AssertionError / etc. ### Root Cause Clear explanation of what went wrong ### Failed Test Details For each failed test: - Test file and function name - Error message - Relevant stack trace excerpt
Tips
- Always start with
to get the current branch statusgh run list --branch - Use
first for concise output--log-failed - If more context is needed, use full
with grep--log - Look for patterns like "FAILED", "ERROR", "ModuleNotFoundError", "AssertionError"
- CI logs can be very long - focus on the actual failure messages
- Check multiple test environments (different Python versions) if failures occur
Example Usage
User asks: "Check the CI status"
You should:
- Get current branch:
git rev-parse --abbrev-ref HEAD - List runs:
gh run list --branch <branch> --limit 5 - If failed, analyze:
gh run view <run-id> --log-failed - Present failure report with root cause and failed tests
User asks: "Why did the tests fail?"
You should:
- Follow same process as above
- Deep dive into error messages with grep
- Explain the root cause clearly
- Suggest potential fixes if obvious from the error