From github
Resolves GitHub issues via isolated git worktrees, TDD implementation, and PR creation with auto-close keywords. Use for 'fix issue' requests or /resolve-issues invocation.
How this skill is triggered — by the user, by Claude, or both
Slash command
/github:resolve-issuesThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Execute issue resolution workflow using isolated worktrees, TDD methodology, and agent collaboration.
Execute issue resolution workflow using isolated worktrees, TDD methodology, and agent collaboration.
git statusgit branch --show-currentgit worktree listgh issue list --state open --limit 10gh auth statusUse isolated worktrees to avoid disrupting main development. Follow TDD cycle (red → green → refactor) with agent support. Reference issues in commits using auto-closing keywords. See references/requirements.md for protected PR workflow and commit standards.
Goal: Select target issue and prepare isolated development environment.
Actions:
$ARGUMENTSreferences/workflow-details.md for naming)Goal: Implement fix using test-driven development with agent collaboration.
Actions:
references/workflow-details.md for project-specific checks)Goal: Create pull request, link issue, and clean up worktree after merge.
Actions:
git push -u origin <branch-name>gh pr create with auto-closing keywords (e.g., "Closes #456")references/requirements.md - Worktree setup, TDD, and commit standardsreferences/workflow-details.md - Issue selection, TDD cycle, agent collaborationreferences/examples.md - Commit message examplesnpx claudepluginhub fradser/dotclaude --plugin githubProcesses GitHub issues via TDD workflow on main branch: interactive selection, auto-prioritization, label filtering, conflict detection, and parallel task execution.
Starts GitHub issue work: fetches details via gh CLI, creates worktree/branch, detects bug/feature, explores codebase, proposes design before implementing.
Fixes GitHub issues end-to-end with GitHub CLI: views issue, researches context, plans fix, creates branch, implements/tests changes, submits PR.