Back to Discover

github-issue-fixer

plugin

tomas2387

View on GitHub
0 starsSynced Aug 2, 2026

Install to Claude Code

/plugin marketplace add tomas2387/github-issue-fixer

README

GitHub Issue Fixer

Claude Code plugin for autonomous GitHub issue fixing. Includes a single-issue TDD agent and a parallel multi-issue fixer with conflict-aware batching.

Skills

github-issue-fixer:fix

Autonomous loop: triage → claim → worktree → TDD (RED/GREEN) → browser verify → merge → close. Picks the top-priority open issue automatically; no confirmation needed.

github-issue-fixer:fix-all

Spawns up to 6 isolated subagents in a single message, each fixing one issue independently and opening a PR. Auto-selects the lowest-conflict batch — no user input required.

Requirements

  • gh CLI authenticated to your GitHub repo
  • Issues use status:in-progress label (created automatically on first use)
  • Repo issue titles follow Conventional Commits for best conflict detection: feat(scope): verb …

Installation

# From a local directory
claude plugin install /path/to/github-issue-fixer

# Test without installing
claude --plugin-dir /path/to/github-issue-fixer

Usage

/github-issue-fixer:fix              # Fix top-priority open issue
/github-issue-fixer:fix-all          # Fix up to 6 in parallel (auto-selected)
/github-issue-fixer:fix-all 42 57 103 # Fix specific issues in parallel

Conflict detection

fix-all derives a conflict zone from each issue title using the conventional-commit scope and first verb:

TitleZone
feat(mobile): owner screensmobile/owner
feat(mobile): tenant calendarmobile/tenant
fix(auth): token expiryauth/token
refactor: remove unused importrefactor/remove

Issues in the same zone are assumed to touch the same files and will not be batched together. Only one issue per zone is selected per run.

Plugin structure

github-issue-fixer/
├── .claude-plugin/
│   └── plugin.json
├── skills/
│   ├── fix/
│   │   └── SKILL.md
│   └── fix-all/
│       └── SKILL.md
└── README.md

Rendered live from tomas2387/github-issue-fixer's GitHub README — not stored, always reflects the source repo.

1 Plugin

NameDescriptionCategorySource
github-issue-fixerAutonomous GitHub issue fixing: single-issue TDD agent and parallel multi-issue fixer with conflict-aware batching./

0 Comments

Login required
Log in to post a comment or update on this repo.

No comments yet — be the first to share an update.