End-to-end flow for resolving a GitHub issue — fetch and understand the issue, create a feature branch off `beta`, implement and verify the fix, then hand off to the open-pr skill. Use when the user says "fix issue <n>", "work on issue <n>", or wants to take an issue from investigation through to a PR.
76
95%
Does it follow best practices?
Run evals on this skill
Adds up to 20 points to the overall score
View guide
Low
Low-risk findings worth noting
Drive a GitHub issue from investigation to a ready-to-review fix on a feature branch. This skill owns understanding, branching, and implementing. It hands the commit/push/PR step off to the open-pr skill.
Take the issue number/URL from the user. If none is given, ask for it.
gh issue view <n> --json title,body,state,labels,comments,author,createdAt to read it. (Plain gh issue view <n> may fail on Projects-classic GraphQL — prefer the --json form.)betabeta by default; honor a different base if the user names one). First sync the base with its remote so the new branch starts from the latest tip:
git checkout <base> && git pull --ff-only && git checkout -b <type>/<n>-<short-slug> <base>
— pick <type> from the change (fix, feat, chore, docs, refactor, test) and a short kebab slug referencing the issue, e.g. fix/2348-dts-in-source.git pull --ff-only fails (local diverged from remote), stop and surface it to the user — don't force or rebase silently.verify or code-review skills for behavior changes.open-pr skill to format, commit (with Closes #<n>), push, and open the PR against beta.305f9f0
If you maintain this skill, you can claim it as your own. Once claimed, you can manage eval scenarios, bundle related skills, attach documentation or rules, and ensure cross-agent compatibility.