From github
Evaluates open issues, prioritizes next actionable item, sets up git worktree, implements via TDD cycle, runs quality checks, creates PR, and handles cleanup.
npx claudepluginhub fradser/dotclaude --plugin githubresolve-issues/references/# 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: 1. **New worktree creation**: 2. **Branch naming convention**: - Bug fixes: `fix/ISSUE-short-description` (e.g., `fix/456-auth-redirect`) - Feat...
/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.
/create-issuesCreates GitHub issues from a description using TDD principles, Conventional Commits format, proper labels, and branch-aware strategy. Documents decisions and follow-ups.
/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.
/feature-flow-wOrchestrates git worktree workflow for features: creates isolated worktree/branch from staged changes or issue number, lints/tests/commits, creates MR. Supports --skip flags and modes.
Share bugs, ideas, or general feedback.
Evaluate open issues from context and prioritize the next actionable item:
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:
fix/ISSUE-short-description (e.g., fix/456-auth-redirect)feat/ISSUE-short-description (e.g., feat/123-oauth-login)refactor/ISSUE-short-descriptionExisting worktree reuse:
git worktree listFollow the red-green-refactor cycle with agent collaboration:
Plan implementation:
Red Phase: Write failing tests
Green Phase: Implement minimal fix
Refactor Phase:
Before creating PR, run project-specific quality checks:
npm run lint or pnpm lint (Node.js) / ruff check . (Python)npm test or pnpm test (Node.js) / pytest (Python)npm run build or pnpm build (Node.js)npm run type-check (Node.js) / mypy . (Python)git push -u origin <branch-name>gh pr create with auto-closing keywords (e.g., "Closes #456")git worktree remove ../worktree-fix-456
git branch -d fix/456-auth-redirect