From github-ops
Produces a clean, GitHub-native readout of failing PR checks before any code is edited. Summarizes breakage and proposes a local fix plan.
How this skill is triggered — by the user, by Claude, or both
Slash command
/github-ops:github-ci-failure-triageThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Produce a clean, GitHub-native readout of failing PR checks before any code is edited. Triage first: summarize the breakage and propose a local fix plan; implement only after approval when the task is framed as triage-first.
Produce a clean, GitHub-native readout of failing PR checks before any code is edited. Triage first: summarize the breakage and propose a local fix plan; implement only after approval when the task is framed as triage-first.
gh CLI authenticated for the repository, or a GitHub connectorgh or a GitHub connector) over screenshots or copied snippetsResolve the PR:
gh pr view <number-or-url> --json number,title,headRefName,url
gh pr view --json number,title,headRefName,url # from the current branch
Inspect failing checks. List checks, isolate failing GitHub Actions jobs, and pull only the failing logs:
gh pr checks <number>
gh run list --branch <head-branch> --limit 10
gh run view <run-id> --json jobs # job-level status
gh run view <run-id> --log-failed # logs from failing steps only
If a check is external (not GitHub Actions), report its URL and keep it out of local log parsing.
Summarize the failure:
Propose the fix plan:
Implement only when the user wants the fix. Keep changes traceable to the failing signal; rerun the narrowest meaningful local validation first.
scripts/inspect_pr_checks.py — use it when you want a structured check summary instead of raw gh output.--log-failed output for the failing step.npx claudepluginhub yeaight7/agent-powerups --plugin github-opsCreates, edits, and verifies skills using a test-driven development approach with pressure scenarios and subagents.