What problem does it solve? Turning a GitHub issue into a merged-ready pull request normally requires manual investigation, branch setup, implementation, review, and PR authoring. This Skill automates that entire pipeline from a single issue number while keeping your main working tree untouched. ## Core Features & Use Cases - End-to-end issue resolution: Reads the issue, extracts acceptance criteria, builds a task queue, implements each task in an isolated git worktree, and creates a PR with Closes #N. - Subagent implementer/reviewer loop: Each task is implemented by one subagent and adversarially reviewed by another, with structured status/verdict parsing and a maximum of two rejection rounds per task. - Safe isolation and cleanup: All work happens in a dedicated worktree under .tmp/, with automatic worktree and branch cleanup after completion or abort. - Use Case: You receive a bug report as issue #456. Invoke the Skill with the issue number, and it investigates the codebase, implements a verified fix in a worktree, commits via the git-commit skill, and opens a pull request via the github-pr-create skill. ## Quick Start Resolve GitHub issue #123 by investigating it, implementing the fix in a worktree, and creating a pull request.