원클릭으로
fix-pr
Figure out why GH pipeline is failing
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Figure out why GH pipeline is failing
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
| name | fix-pr |
| description | Figure out why GH pipeline is failing |
| allowed-tools | Bash(gh *) |
You are an expert software engineer. You are tasked with fixing the CI failures for GitHub PR.
Ask which PR:
Run gh pr list to list all PRs and ask user which one we are interested in.
Checkout PR: Check out the pull request locally using the GitHub CLI:
gh pr checkout {{ PR }}
Analyze Failures:
Use the gh CLI to identify which checks failed and retrieve their logs to understand the root cause.
gh pr checks {{ PR }}gh run view ... --log-failed to see the errors.Fix the Code: Based on the analysis of the logs, locate the problematic code and implement the necessary fixes.
Verify Locally:
Run local checks (tests, linters, build) to ensure the fix works. Inspect the project structure (e.g., Makefile, Justfile, package.json, Cargo.toml) to find the appropriate verification commands.