install
source · Clone the upstream repo
git clone https://github.com/benchflow-ai/skillsbench
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/benchflow-ai/skillsbench "$T" && mkdir -p ~/.claude/skills && cp -r "$T/tasks/fix-build-agentops/environment/skills/analyze-ci" ~/.claude/skills/benchflow-ai-skillsbench-analyze-ci && rm -rf "$T"
manifest:
tasks/fix-build-agentops/environment/skills/analyze-ci/SKILL.mdsource content
Analyze CI Failures
This skill analyzes logs from failed GitHub Action jobs using Claude.
Prerequisites
- GitHub Token: Auto-detected via
, or setgh auth token
env varGITHUB_TOKEN
Usage
# Analyze all failed jobs in a PR uv run skills analyze-ci <pr_url> # Analyze specific job URLs directly uv run skills analyze-ci <job_url> [job_url ...] # Show debug info (tokens and costs) uv run skills analyze-ci <pr_url> --debug
Output: A concise failure summary with root cause, error messages, test names, and relevant log snippets.
Examples
# Analyze CI failures for a PR uv run skills analyze-ci https://github.com/mlflow/mlflow/pull/19601 # Analyze specific job URLs directly uv run skills analyze-ci https://github.com/mlflow/mlflow/actions/runs/12345/job/67890