From github
Run a convergence loop for GitHub PRs by resolving base-branch merge conflicts first with the j5ik2o-gh-pr-resolve-conflicts skill, addressing unresolved review feedback with the j5ik2o-gh-pr-review-follow-up skill, and fixing failing PR checks. Restart from mergeability after every push until no conflicts or actionable review threads remain and all required checks are green. Use when a pull request must be driven continuously to a merge-ready state.
How this skill is triggered — by the user, by Claude, or both
Slash command
/github:j5ik2o-gh-pr-converge-loopThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Need to finish a branch or pull request by clearing merge conflicts first, resolving actionable review feedback, and iterating on CI failures until mergeability, review threads, and required checks converge.
Need to finish a branch or pull request by clearing merge conflicts first, resolving actionable review feedback, and iterating on CI failures until mergeability, review threads, and required checks converge.
Use gh pr checks as the source of truth. It includes all PR-attached checks, while gh run list only covers GitHub Actions.
mergeable is UNKNOWN, wait for GitHub to compute it and query again.mergeable: CONFLICTING or mergeStateStatus: DIRTY as a blocking conflict.j5ik2o-gh-pr-resolve-conflicts skill ($j5ik2o-gh-pr-resolve-conflicts in Codex or /j5ik2o-gh-pr-resolve-conflicts in Claude Code).j5ik2o-gh-pr-review-follow-up skill to inspect unresolved review threads, implement all unambiguous actionable fixes, and obtain any approval that skill requires before replying to or resolving threads.gh pr checks --watch --fail-fast.# Resolve the active PR and inspect mergeability
gh pr view --json number,url,headRefName,baseRefName,mergeable,mergeStateStatus
# Materialize base-branch conflicts locally
git fetch origin <base-branch>
git merge origin/<base-branch>
# Inspect all attached checks
gh pr checks --json name,bucket,state,workflow,link
# Watch pending checks and fail fast
gh pr checks --watch --fail-fast
# GitHub Actions logs, when the failing check links to a GHA run
gh run view <run-id> --log-failed
j5ik2o-gh-pr-review-follow-up skill as the source of truth for review-thread actionability and resolution state; do not infer thread state from flat comments.j5ik2o-gh-pr-resolve-conflicts skill as the conflict-resolution and validation workflow. Keep its no-commit, no-push, and no-tag guardrail intact.--no-verify) to force progress.gh pr checks --json name,bucket,state,workflow,link after every push; the check set can change.npx claudepluginhub j5ik2o/ai-tools --plugin githubCreates structured, bite-sized implementation plans from specs or requirements before writing code. Useful for breaking down multi-step tasks into testable steps with file structure and task boundaries.