Agent Skills: gh-fix-ci

Debug and fix failing GitHub PR checks with GitHub CLI. Use when GitHub Actions checks fail, when a PR has broken status checks, or when you need local reproduction commands for CI failures.

UncategorizedID: bahayonghang/my-claude-code-settings/gh-fix-ci

Install this agent skill to your local

pnpm dlx add-skill https://github.com/bahayonghang/my-claude-code-settings/tree/HEAD/content/skills/git-github-collaboration/gh-fix-ci

Skill Files

Browse the full folder contents for gh-fix-ci.

Download Skill

Loading file tree…

content/skills/git-github-collaboration/gh-fix-ci/SKILL.md

Skill Metadata

Name
gh-fix-ci
Description
Debug and fix failing GitHub PR checks with GitHub CLI. Use when GitHub Actions checks fail, when a PR has broken status checks, or when you need local reproduction commands for CI failures.
  1. Verify gh auth status. If unauthenticated, ask user to run gh auth login.
  2. Identify PR using gh pr view --json number,url or $ARGUMENTS. If no PR is found on the current branch and no number was given, stop and ask the user to specify one.
  3. If rtk is available, prefer rtk gh ..., rtk read, and rtk grep for exploratory steps. Use raw gh or the bundled script when another command needs machine-friendly JSON or uncompressed logs.
  4. Run python "$SKILL_DIR/scripts/inspect_pr_checks.py" --repo "." [--pr "$ARGUMENTS"] --json to collect failing checks, log snippets, and local reproduction hints. If the script exits non-zero, fall back to the manual workflow in references/BACKGROUND.md.
  5. Branch on the result:
    • All checks pass → report "all checks green" and stop.
    • Checks still in progress → report running checks and suggest waiting, or offer to inspect already-failed ones.
    • Only external provider failures (e.g. Buildkite) → report URLs and mark out-of-scope unless the user explicitly asks.
    • GitHub Actions failures exist → continue to step 6.
  6. Summarize failures with: check name, the smallest useful log snippet (cap at 50 lines; if logs exceed this, extract only the error block), and the suggested local repro command.
  7. Propose a concise fix plan and request explicit approval before editing when the user asked only for diagnosis. Otherwise proceed to fix.
  8. Implement the approved fix and rerun the relevant local repro commands. If the local repro still fails, diagnose the new error and iterate (max 2 retries) before reporting back. After local success, re-run gh pr checks to confirm.

References