From issue-resolver
Provides a systematic workflow for resolving GitHub Issues. Use this skill when assigned a GitHub Issue or when delegated by the Issue Auto-resolver.
How this skill is triggered — by the user, by Claude, or both
Slash command
/issue-resolver:resolve-issueThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Check if the Issue has a `type:*` label. If not, determine the type from the title and body:
Check if the Issue has a type:* label. If not, determine the type from the title and body:
| Label | Description |
|---|---|
type:bug | Fix bugs, errors, or defects |
type:feature | Add new features |
type:enhancement | Improve existing features |
type:refactoring | Code refactoring |
type:documentation | Update documentation |
type:investigation | Investigation or analysis tasks |
Default to type:feature if unclear.
Refer to the corresponding file at {plugin_base_path}/issue-types/<type>.md:
bug.md - Bug fixesfeature.md - New featuresenhancement.md - Feature improvementsrefactoring.md - Code refactoringdocumentation.md - Documentation updatesinvestigation.md - Investigation tasksThis skill works with the following dev-guidelines skills:
| Skill | When to Use |
|---|---|
dev-guidelines-git-workflow:git-repository-workflow | Git branch management and testing |
dev-guidelines-pr-format:pr-description-format | Creating PRs with gh pr create |
dev-guidelines-debugging:debugging-process | Investigating bugs and tracing errors |
dev-guidelines-design:design-alternatives | Evaluating implementation approaches |
{plugin_base_path} refers to the plugin installation directorynpx claudepluginhub kokuyouwind/claude-plugins --plugin issue-resolverInvestigates and resolves GitHub issues with systematic triage, root cause analysis, test-driven fixes, and pull request management. Use when given an issue ID or URL.
Resolves GitHub issues via 8-phase workflow: fetch details, analyze requirements, implement solutions, verify correctness, code review, commit changes, create PRs. Activates on resolve, implement, fix requests or issue references.
Guides on working with GitHub issues: read descriptions/comments/related PRs, define acceptance criteria with verifiable behaviors, and commit with proper references.