Skip to content
AI Primer

gh-fix-ci

openaiby openai16 days ago18.6k

Use when a user asks to debug or fix failing GitHub PR checks that run in GitHub Actions; use `gh` to inspect checks and logs, summarize failure context, draft a fix plan, and implement only after explicit approval. Treat external providers (for example Buildkite) as out of scope and report only the details URL.

Install

npx skills add https://github.com/openai/skills --skill gh-fix-ci
Show step-by-step
  1. 1

    Open your terminal

    • Mac: Press ⌘ Space, type "Terminal", press Enter
    • Windows: Press Win R, type "cmd", press Enter
  2. 2

    Paste the command above and press Enter

    Use the Copy command button, then paste in your terminal (Mac: ⌘V, Windows: Ctrl V).

  3. 3

    Restart Claude Code

    Close and reopen Claude Code, or start a new session, so it picks up the new skill.

Where it lives
~/.claude/skills/openai--skills--skills--curated--gh-fix-ci/
├── SKILL.md
└── ... (skill resource files)
View on GitHub

Always review skill code before installing. Third-party skills may contain scripts that run on your machine.

First 2 tasks to try

  1. 1python "<path-to-skill>/scripts/inspectprchecks.py" --repo "." --pr "<number-
    `python "<path-to-skill>/scripts/inspect_pr_checks.py" --repo "." --pr "<number-or-url>"`
  2. 2Add --json if you want machine-friendly output for summarization.
    Add `--json` if you want machine-friendly output for summarization.

Related skills