What problem does it solve? Picking up a GitHub issue and turning it into a merged pull request involves many error-prone steps: finding the right issue, checking for existing work, branching correctly, verifying changes, and linking the PR. This Skill orchestrates that entire workflow so nothing is skipped or duplicated. ## Core Features & Use Cases - Issue Discovery and Triage: Locates issues by number, URL, or description, reads acceptance criteria, and blocks on unanswered critical questions before writing code. - Resumption of In-Progress Work: Reconciles existing branches, PRs, and prior evidence so restarted work never repeats assignment, branching, or PR creation. - Scoped Implementation and Verification: Creates a branch from the configured base, follows repo patterns, runs the smallest relevant checks first, and opens a PR linked with Closes #<issue-number>. - Use Case: You tell the agent "take issue #142." It reads the issue, assigns it to you, implements the fix on a new branch, runs typecheck and lint, and opens a linked pull request with a test plan. ## Quick Start Take GitHub issue number 142, implement it, verify the changes, and open a pull request.