From fix-github-issue
Analyzes a GitHub issue, implements a fix on a new branch, and creates a pull request that references and auto-closes the issue.
How this command is triggered — by the user, by Claude, or both
Slash command
/fix-github-issue:fix-issueThe summary Claude sees in its command listing — used to decide when to auto-load this command
Automatically fix a GitHub issue by analyzing its description and implementing a solution. ## Steps 1. Fetch the issue details using `gh issue view <number>`. 2. Analyze the issue: 3. Locate the relevant code: 4. Create a feature branch: `git checkout -b fix/<issue-number>-<short-desc>`. 5. Implement the fix: 6. Create a PR linking the issue: 7. Use `gh pr create` with the issue reference. ## Format ## Rules - Always create a branch; never commit directly to main. - Reference the issue number in the PR with "fixes #N" for auto-closing. - Keep the fix minimal; do not refactor unrel...
Automatically fix a GitHub issue by analyzing its description and implementing a solution.
gh issue view <number>.git checkout -b fix/<issue-number>-<short-desc>.gh pr create with the issue reference.Issue: #<number> - <title>
Root Cause: <explanation>
Fix: <what was changed>
Files Modified: <list>
6plugins reuse this command
First indexed Mar 30, 2026
npx claudepluginhub twzrd-sol/awesome-claude-code-toolkit --plugin fix-github-issue/fix-issueAnalyzes a GitHub issue, implements a fix on a new branch, and creates a pull request that references and auto-closes the issue.
/fix-issueFetches a GitHub issue by number, creates a branch, implements the fix, and opens a pull request.
/github-issue-fixAnalyzes a GitHub issue and its sub-issues, then produces a structured plan with actionable tasks and dependencies.
/fix-issueTakes a GitHub issue number, analyzes relevant context, implements a solution, and validates the fix to ensure proper integration.
/do-issueTriages and resolves a GitHub issue autonomously: analyzes, implements fixes via /autotask, tests, creates merge-ready PR, or closes with explanation.
/fix-github-issueAnalyzes a GitHub issue by fetching details with the GitHub CLI, finds relevant code, implements a fix, writes and runs tests, verifies linting/type checks, and creates a descriptive commit.