GitHub Fix Issue Workflow
An end-to-end workflow that turns a GitHub issue into a tested fix and a submitted pull request.
Dev & CodingIntermediate★ 1,640⑂ 244AI score 9/10Last updated: Aug 13, 2026
What it does
- Pulls full issue context with
gh issue view(title, body, labels, comments) and asks clarifying questions when details are missing. - Researches prior art: greps the codebase and searches existing PRs via
gh pr list --searchto avoid duplicate work. - Writes a scratchpad plan listing the changes, their order, risks and edge cases.
- Creates a
fix/issue-123-...branch and commits in small, reviewable steps. - Adds unit tests, runs the full suite for regressions, then opens a PR with
gh pr createreferencing "Fixes #123" and requests review. - Ships a built-in safety rule: issue text and comments are treated as untrusted data, never as instructions to the agent.
Who it's for
- Developers and open-source contributors who work issue-by-issue on GitHub.
- Team leads standardizing the issue → branch → PR flow.
- Anyone who wants consistent commit hygiene and PR descriptions without repeating instructions.
Examples
- Say "fix issue #123" — the skill reads the issue, plans, implements on a dedicated branch, and opens the PR.
- Paste an issue URL — it locates the relevant files and flags any similar open PRs before coding.
- For a UI bug, if browser automation (e.g. Puppeteer MCP) is available, it visually verifies the fix before submitting.
· · · Install guide · · ·
Try it now, no install
Paste this into Claude to use the skill without installing anything.
Read the instructions in this file and follow them to help me: https://raw.githubusercontent.com/feiskyer/claude-code-settings/HEAD/skills/github-fix-issue/SKILL.md What I want: (describe your task here)
If Claude can't open the link, open it yourself and paste the contents instead.
↓ If it works for you, download the ZIP below and install it. Then it runs on its own — no pasting each time.
Install in the Claude app (no terminal)
- Download the ZIP with the button below.
- In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
- Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Install in Claude Code
Let Claude do it — paste this into Claude Code
Install the skill I found on Claude Skill Mart. Copy the skills/github-fix-issue folder from the GitHub repo feiskyer/claude-code-settings into my ~/.claude/skills/github-fix-issue/. When it's done, tell me in one line what this skill can do.
Install with a command instead
git clone https://github.com/feiskyer/claude-code-settings.git && mkdir -p ~/.claude/skills && cp -r claude-code-settings/skills/github-fix-issue ~/.claude/skills/⚠ This is a third-party skill. Check the source repository before installing.
- Install the GitHub CLI and authenticate:
gh auth login(verify withgh --version). - Clone the repo:
git clone https://github.com/feiskyer/claude-code-settings.git - Create the skills directory:
mkdir -p ~/.claude/skills - Copy the skill in:
cp -r claude-code-settings/skills/github-fix-issue ~/.claude/skills/ - Launch Claude Code from inside the repository you want to fix.
- Mention an issue number or URL (e.g. "fix issue #123") and the skill triggers automatically.
- Because it creates real branches, commits and PRs, try it first on a fork or a scratch repository.
View source on GitHub ↗License: MIT