issue-fix

Automate GitHub Issue resolution workflows for Go projects with PR generation.

Updated Oct 23, 2025
One-click install
npx skills add https://github.com/kis9a/claude-skills-demo --skill issue-fix
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: issue-fix
Source: https://github.com/kis9a/claude-skills-demo/tree/main/.claude/skills/issue-fix
Command: npx skills add https://github.com/kis9a/claude-skills-demo --skill issue-fix

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill executes a complete workflow to fix a GitHub Issue: analyze issue content, add or update tests, implement a minimal fix, update docs, and create a PR.

Core Features & Use Cases

  • Issue analysis: extracts reproduction steps and impacted files
  • Test-first approach: updates or adds regression tests
  • Minimal fix implementation: applies smallest possible changes to pass tests
  • Documentation updates: updates CHANGELOG
  • PR creation: creates a pull request with a standard template

Quick Start

Describe the issue to fix; the Skill will analyze, implement a fix, and open a PR.

Frequently Asked Questions about issue-fix

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I automate fixing GitHub Issues end-to-end?

Automate issue resolution by analyzing issue content and reproduction steps, writing or updating tests first, implementing minimal code fixes, updating CHANGELOG.md, and generating a pull request automatically. This workflow ensures fixes are tested and documented before review.

Can I use test-first development to fix bugs in Go projects?

Yes, test-first development extracts reproduction steps from issue descriptions, adds regression tests, then implements the smallest possible fix to pass those tests. This approach works especially well for Go repositories and ensures fixes are validated before deployment.

What's the fastest way to create a PR from a GitHub Issue?

Describe the issue and let automation handle analysis, test updates, code implementation, and PR generation with a standard template. This eliminates manual steps between issue identification and pull request submission.

Does this work with existing test suites?

Yes, the workflow updates or adds tests depending on what exists. It integrates with your current test infrastructure, adds regression tests when needed, and ensures all tests pass before the PR is created.

Can I track what changed in a fix?

CHANGELOG.md is automatically updated as part of the workflow, and the generated PR includes your changes with a standard template. This provides clear documentation of what was fixed and why.