gh-issue-fix-flow

Automate GitHub issue fixes with gh, rg, sed, and XcodeBuildMCP builds.

3.9k|203|Updated Dec 30, 2025
One-click install
npx skills add https://github.com/Dimillian/Skills --skill gh-issue-fix-flow-dimillian
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: gh-issue-fix-flow
Source: https://github.com/Dimillian/Skills/tree/main/gh-issue-fix-flow
Command: npx skills add https://github.com/Dimillian/Skills --skill gh-issue-fix-flow-dimillian

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

End-to-end workflow for fixing GitHub issues: intake context, locate and implement minimal changes, validate with builds/tests using XcodeBuildMCP, and push a closing commit.

Core Features & Use Cases

  • Intake and issue context gathering via gh issue view to capture reproduction steps and discussion.
  • Code path discovery with rg and safe, minimal edits aligned to project conventions.
  • Build and test validation using XcodeBuildMCP to ensure changes are correct before pushing.
  • Closing commit generation and push to finalize issue resolution.

Quick Start

Run the gh-issue-fix-flow workflow on an issue number to capture context, implement a fix, validate with builds/tests, and push a closing commit.

Frequently Asked Questions about gh-issue-fix-flow

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

FAQPage Schema
How do I automate fixing a GitHub issue from start to finish?

To automate a GitHub issue fix, the workflow pulls issue context via gh, uses rg to locate code paths, applies minimal edits with sed, runs XcodeBuildMCP build and test validation, then pushes a closing commit to the remote branch.

How does the issue fix workflow gather reproduction steps and discussion context?

The issue fix workflow uses the gh issue view command to capture reproduction steps and discussion context directly from the GitHub issue, ensuring local code edits align with the reported problem before running validation.

Can I use XcodeBuildMCP to validate local code edits before pushing a fix?

Yes, you can use XcodeBuildMCP to run builds and tests that validate local code edits before pushing a closing commit, ensuring automated validation within the GitHub issue fix workflow.

Do I need the gh CLI and ripgrep installed to run the GitHub issue fix workflow?

Yes, the workflow requires the gh CLI to pull issue details and push commits, rg for code path discovery, sed for local edits, and XcodeBuildMCP for automated build and test validation to resolve issues end-to-end.

What is the best way to ensure minimal code changes when resolving GitHub issues?

The best way to ensure minimal changes is using rg for precise code path discovery and sed for safe, minimal edits aligned to project conventions, followed by XcodeBuildMCP validation before pushing the closing commit.