auto-fix-github

Automate GitHub issue fixes with tests, review, and pull request creation.

Updated Apr 24, 2026
One-click install
npx skills add https://github.com/dainamite-technologies/dainamite-core --skill auto-fix-github
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: auto-fix-github
Source: https://github.com/dainamite-technologies/dainamite-core/tree/main/.ai/skills/auto-fix-github
Command: npx skills add https://github.com/dainamite-technologies/dainamite-core --skill auto-fix-github

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires git, gh, yarn, and includes scripts (resource) and references (resource) components.

What problem does it solve?

This Skill automates the process of fixing GitHub issues by implementing minimal fixes, adding tests, running code review, and creating pull requests that link back to the original issue.

Core Features & Use Cases

  • Automated Issue Fixing: Detects and fixes GitHub issues using an isolated git worktree.
  • Validation Loop: Runs unit tests, typecheck, i18n checks, and other required checks before pushing a fix.
  • Code Review and BC Checks: Ensures the fix adheres to project rules and backward compatibility standards.
  • PR Creation: Opens a pull request against the develop branch with a full description linked to the original issue.
  • Use Case: For a developer who wants to quickly and efficiently address open issues in their GitHub repository.

Quick Start

Run the auto-fix-github skill with the issue number, like: auto-fix-github 1234

Frequently Asked Questions about auto-fix-github

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

FAQPage Schema
How do I automate fixing GitHub issues and creating pull requests?

Automating GitHub issue fixes involves running a command with the issue number to trigger an isolated git worktree that implements the fix, runs validation checks, and creates a linked pull request.

What validation checks are required before pushing an automated issue fix?

Before pushing an automated issue fix, the validation loop runs unit tests, typecheck, i18n checks, and other required project checks to ensure the fix adheres to code review and backward compatibility standards.

Do I need GitHub CLI and yarn installed to automate pull request creation?

Yes, you need git, GitHub CLI, and yarn installed as dependencies, along with various language-specific tools, to automate the end-to-end process of issue resolution and pull request creation.

Can I use automated issue fixing to open pull requests against the develop branch?

Yes, automated issue fixing opens a pull request against the develop branch with a full description linked to the original issue after passing strict validation and code review checks in an isolated worktree.

Why does automated code review require an isolated git worktree for issue resolution?

Automated code review requires an isolated git worktree to safely implement minimal fixes and run validation loops without affecting the main repository, ensuring backward compatibility before opening a pull request.