ci-failure-analyzer

Community

Identify CI failures on the current branch.

Authormintiti
Version1.0.0
Installs0

System Documentation

What problem does it solve?

This Skill helps developers quickly diagnose GitHub Actions CI failures on the active branch, reducing the time spent sifting through logs and manual checks.

Core Features & Use Cases

  • Current-branch CI checks: List recent runs for the active branch and highlight failures.
  • Detailed failure logs: Retrieve and filter logs to show error messages and stack traces.
  • Root-cause insights: Parse logs to determine which step, test, or environment caused the failure.
  • Use Case: When a PR's CI fails after a merge, run this Skill to generate a concise failure report you can share with the team.

Quick Start

Run the following sequence in your repo to surface the latest CI failures on the current branch and view a structured report:

  • git rev-parse --abbrev-ref HEAD
  • gh run list --branch <branch-name> --limit 5
  • gh run view <run-id> --log-failed
  • gh run view <run-id> --log | grep -A 20 "FAILED|ERROR"
  • Present the findings in a summary report

Dependency Matrix

Required Modules

None required

Components

Standard package

💻 Claude Code Installation

Recommended: Let Claude install automatically. Simply copy and paste the text below to Claude Code.

Please help me install this Skill:
Name: ci-failure-analyzer
Download link: https://github.com/mintiti/pyrat-rust/archive/main.zip#ci-failure-analyzer

Please download this .zip file, extract it, and install it in the .claude/skills/ directory.
View Source Repository