What problem does it solve? Pull requests often accumulate multiple blockers at once: merge conflicts, failing CI checks, and unresolved review comments. Fixing each one separately is slow and error-prone, especially when the fixes must be pushed to the correct PR head branch without disturbing your current working tree. ## Core Features & Use Cases - Automatic Problem Detection: Scans a PR for merge conflicts, failed or cancelled CI checks, and unresolved review threads, then only addresses the problems that actually exist. - Isolated Worktree Fixes: Performs all edits, commits, and pushes inside a dedicated git worktree per PR, so your original working directory stays untouched. - Orchestrated Sub-Skills: Invokes conflict resolution, CI fixing, and review comment handling in the correct order, then pushes results to the PR head branch with language-matched reports. - Use Case: A teammate asks you to get PR #142 merge-ready. You run this Skill, which detects a conflict and two failing checks, resolves both in a worktree, pushes to the head branch, and prints a summary in the PR's language. ## Quick Start Ask the AI to fix all problems on PR 142, or simply say "fix everything blocking the current branch's pull request" to let it detect and resolve conflicts, CI failures, and review comments automatically.