What problem does it solve?
This Skill helps teams automatically triage and resolve existing GitHub issues by first classifying bugs, analyzing root causes, and then preparing fixes that are only implemented after user approval to avoid accidental breakage.
Core Features & Use Cases
- Issue discovery & triage: Fetches all open issues in bounded batches, classifies them, and focuses resolution effort on Bugs while skipping Feature Requests and Questions with notes.
- PR-linked safety: Detects whether a bug already has a linked open contributor PR and redirects work instead of re-implementing.
- Worktree-based per-issue fixes: Creates an isolated git worktree and
fix/<issue>-<short> branch per bug, writes a regression plan, waits for approval, then generates tests, commits, opens a PR into the release branch, merges, and cleans up.
- Controlled change management: Enforces the “never commit directly to the release branch” rule and batches up to 30 issues per run with staged validation.
Quick Start
Use the resolve-issues-cx skill to prepare a user-approved batch of up to 30 bug fixes by fetching open GitHub issues, analyzing them, producing a report, and then only implementing fixes after you confirm.