Help us improve
Share bugs, ideas, or general feedback.
From github
Resolves GitHub issue via isolated worktree, TDD workflow, and auto-closing PR creation.
npx claudepluginhub fradser/dotclaude --plugin githubHow this command is triggered — by the user, by Claude, or both
Slash command
/github:SKILL issue number or descriptionresolve-issues/This command is limited to the following tools:
The summary Claude sees in its command listing — used to decide when to auto-load this command
# Resolve GitHub Issues Execute issue resolution workflow using isolated worktrees, TDD methodology, and agent collaboration. ## Context - Current git status: !`git status` - Current branch: !`git branch --show-current` - Existing worktrees: !`git worktree list` - Open issues: !`gh issue list --state open --limit 10` - GitHub authentication: !`gh auth status` ## Requirements Summary Use 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/requiremen...
/start-issueFetches GitHub issue details, auto-detects bug or feature, sets up git branch or worktree, runs TDD workflow with coverage and security checks, commits changes, and creates PR.
/do-issueImplements GitHub/GitLab/Bitbucket issues using progressive analyze-specify-plan-implement-validate-complete workflow with optional step skipping, scope detection, dry-run, and multi-issue support.
/github-issue-fixAnalyzes GitHub issue via gh CLI, identifies sub-issues/dependencies, breaks into tasks, and documents structured fix plan in scratchpad.
/start-issueCreates git worktree for GitHub issue URL with conventional branch name (e.g., feature/123-slug) from labels or title, switches to it, runs init.sh, and adds 'progress' label.
/do-issueTriages and resolves a GitHub issue autonomously: analyzes, implements fixes via /autotask, tests, creates merge-ready PR, or closes with explanation.
/SKILLCreates conventional git commit from conversation intent using git-agent and pushes to remote. Accepts optional Claude model name for co-author.
Share bugs, ideas, or general feedback.
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 examples