gh-issue-fix-flow

Automate GitHub issue fixes with gh CLI, xcodebuild, and git push.

Updated Aug 23, 2026
One-click install
npx skills add https://github.com/robinsalehjan/superlego --skill gh-issue-fix-flow-robinsalehjan
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: gh-issue-fix-flow
Source: https://github.com/robinsalehjan/superlego/tree/main/skills/gh-issue-fix-flow
Command: npx skills add https://github.com/robinsalehjan/superlego --skill gh-issue-fix-flow-robinsalehjan

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) and references (resource) components.

What problem does it solve?

This Skill streamlines the entire process of resolving a GitHub issue, from initial intake and code changes to testing, committing, and pushing the fix.

Core Features & Use Cases

  • Automated Issue Triage: Uses gh CLI to fetch issue details and context.
  • Code Navigation & Fix: Leverages rg for efficient code searching and implements fixes following project conventions.
  • Automated Build & Test: Integrates xcodebuild for robust validation on macOS and iOS simulators.
  • Streamlined Commits: Ensures proper commit messages that close issues and facilitates pushing changes.
  • Use Case: When assigned an issue like "Fix login button alignment on iOS", this skill will automatically fetch the issue, locate the relevant UI code, apply the fix, build and test the application, and commit the changes with a closing message like "Fixes #123".

Quick Start

Use the gh-issue-fix-flow skill to fix GitHub issue number 456 in the superlego repository.

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 GitHub issues and pushing code changes end-to-end?

You can automate the end-to-end GitHub issue resolution workflow by using gh CLI to fetch issue context, ripgrep to locate code, and git to commit and push fixes. This handles intake, modification, validation, and version control.

What is the best way to integrate xcodebuild validation into a GitHub issue fix workflow?

Integrating xcodebuild into a GitHub issue fix workflow automates build and test validation on macOS and iOS simulators. This ensures code modifications resolve the issue without breaking existing application functionality before pushing.

Do I need gh CLI and ripgrep installed to automate code fixes for GitHub issues?

Yes, you need gh CLI to fetch issue details and manage repository interactions, ripgrep for efficient code searching, Git for version control, and xcodebuild for automated application validation on macOS environments.

Can I use this automated issue fix workflow for non-iOS software development projects?

This workflow requires xcodebuild for build and test execution, making it specifically tailored for macOS and iOS development. Non-Xcode projects would need a different build validation tool to automate end-to-end issue resolution.

How does automated issue triage work with gh CLI for code fixes?

Automated issue triage with gh CLI fetches GitHub issue details and context programmatically. This allows the workflow to understand the problem, locate relevant code using ripgrep, apply modifications, and commit changes with closing messages like Fixes.

What are the limitations of automating GitHub issue resolution with xcodebuild?

The primary limitation is the strict dependency on xcodebuild for validation, restricting this workflow to Apple platform development. Additionally, complex issues requiring manual architectural decisions may not be fully resolvable through automated code navigation.