What problem does it solve? Resolving a GitHub issue involves many manual steps: reading the issue, locating the relevant code, implementing a fix, building and testing, and committing with the right closing message. This Skill standardizes that entire end-to-end workflow so nothing is skipped and every fix is validated before it is pushed. ## Core Features & Use Cases - Issue Intake: Pulls full issue context with gh issue view <id> --comments, capturing reproduction steps, expected behavior, and maintainer notes. - Guided Fix Workflow: Locates the code path with ripgrep, implements minimal changes aligned with repo conventions, and runs builds and tests (including Swift/Xcode commands). - Clean Commit and Push: Stages only relevant files, commits with a Closes #<id> message, pushes, and optionally opens a PR with gh pr create --fill. - Use Case: A maintainer assigns you issue #123 reporting a crash. Use this Skill to read the issue, find the failing code path, implement and test the fix, then commit with "Closes #123" and push — all following a consistent checklist. ## Quick Start Take GitHub issue number 123, implement a fix for it, run the build and tests, then commit with a closing message and push the changes.