Install
1
Install the plugin$
npx claudepluginhub fradser/dotclaude --plugin githubWant just this command?
Then install: npx claudepluginhub u/[userId]/[slug]
Description
Evaluate open issues from context and prioritize the next actionable item:
Namespace
resolve-issues/references/Command Content
Workflow Details
Issue Selection
Evaluate open issues from context and prioritize the next actionable item:
- Check issue labels for priority (priority:high, priority:medium, priority:low)
- Review issue description for complexity and dependencies
- Confirm issue is not blocked by other open issues
- Verify issue has clear acceptance criteria
Worktree Setup
Create or reuse an isolated worktree with a descriptive branch name:
-
New worktree creation:
git worktree add ../worktree-fix-456 -b fix/456-auth-redirect -
Branch naming convention:
- Bug fixes:
fix/ISSUE-short-description(e.g.,fix/456-auth-redirect) - Features:
feat/ISSUE-short-description(e.g.,feat/123-oauth-login) - Refactoring:
refactor/ISSUE-short-description
- Bug fixes:
-
Existing worktree reuse:
- Check existing worktrees using
git worktree list - Navigate to existing worktree if already created for the issue
- Check existing worktrees using
TDD Implementation Cycle
Follow the red-green-refactor cycle with agent collaboration:
-
Plan with @tech-lead-reviewer:
- Assess architectural impact of the change
- Identify potential design issues or anti-patterns
- Plan the implementation approach
-
Red Phase: Write failing tests
- Create test cases that verify issue is fixed
- Run tests to confirm they fail as expected
-
Green Phase: Implement minimal fix
- Write code to make tests pass
- Focus on solving the problem, not optimization
-
Refactor Phase with @code-simplifier:
- Request code simplification and optimization
- Remove duplication and improve readability
- Ensure tests still pass after refactoring
Quality Validation
Before creating PR, run project-specific quality checks:
- Lint:
npm run lintorpnpm lint(Node.js) /ruff check .(Python) - Test:
npm testorpnpm test(Node.js) /pytest(Python) - Build:
npm run buildorpnpm build(Node.js) - Type Check:
npm run type-check(Node.js) /mypy .(Python)
PR Creation and Cleanup
- Push branch:
git push -u origin <branch-name> - Create PR: Use
gh pr createwith auto-closing keywords (e.g., "Closes #456") - After merge: Clean up worktree
git worktree remove ../worktree-fix-456 git branch -d fix/456-auth-redirect
Stats
Stars432
Forks30
Last CommitFeb 1, 2026