From claude-code-settings
Fixes GitHub issues end-to-end with GitHub CLI: views issue, researches context, plans fix, creates branch, implements/tests changes, submits PR.
npx claudepluginhub feiskyer/claude-code-settings --plugin claude-code-settingsThis skill uses the workspace's default tool permissions.
A structured workflow for analyzing, fixing, and submitting a PR for a GitHub issue. This skill uses the GitHub CLI (`gh`) for all GitHub interactions.
Resolves GitHub issues via 8-phase workflow: fetch details, analyze requirements, implement solutions, verify correctness, code review, commit changes, create PRs. Activates on resolve, implement, fix requests or issue references.
Resolves GitHub issues through triage, root cause analysis, TDD, branch management, testing, and CI/CD-compliant pull requests. Ideal for team workflows on bugs and features.
Resolves GitHub issues via triage, root cause analysis, TDD implementation, branch management, testing, and CI/CD-compliant pull requests. Takes issue ID/URL.
Share bugs, ideas, or general feedback.
A structured workflow for analyzing, fixing, and submitting a PR for a GitHub issue. This skill uses the GitHub CLI (gh) for all GitHub interactions.
gh issue view <number> to get full issue details (title, body, labels, comments)Before jumping into code, gather context — understanding what's been tried or discussed prevents duplicate work and surfaces useful patterns:
gh pr list --search "<keywords>"Think through how to break the issue into small, manageable tasks. Document your plan in a scratchpad file:
fix/issue-123-description)Thorough testing prevents the fix from introducing new problems:
gh pr create# View issue details
gh issue view 123
# Create a branch
git checkout -b fix/issue-123-description
# Open a PR that closes the issue
gh pr create --title "Fix: description" --body "Fixes #123"
# Request review
gh pr edit 456 --add-reviewer username