fix

Implement minimal code changes and add regression tests for GitHub issues.

Updated May 31, 2026
One-click install
npx skills add https://github.com/zizzfizzix/agentic-engineering-framework --skill fix-zizzfizzix
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: fix
Source: https://github.com/zizzfizzix/agentic-engineering-framework/tree/main/core/ai/skills/fix
Command: npx skills add https://github.com/zizzfizzix/agentic-engineering-framework --skill fix-zizzfizzix

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) components.

What problem does it solve?

This Skill automates the implementation of minimal code changes identified by the root-cause step, adds regression tests, and claims the GitHub issue to prevent concurrent automation.

Core Features & Use Cases

  • Automated Code Fix Implementation: Implements the minimal code change identified by the root-cause step.
  • Regression Test Addition: Adds regression tests to ensure the fix does not introduce new issues.
  • GitHub Issue Management: Claims the GitHub issue at the start to prevent concurrent automation and releases it in the open-pr step.
  • Validation Loop: Runs targeted unit tests, typecheck, i18n checks, and other project-specific validation steps.
  • Self-Review: Runs the change through code-review and backward-compatibility policy checks.
  • Output Contract: Provides a final summary with the status, files changed, summary, tests, and backward-compatibility information.

Quick Start

Use the fix skill to implement the change suggested by the root-cause step for the GitHub issue #123.

Frequently Asked Questions about fix

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

FAQPage Schema
How do I automate code fixes for GitHub issues without introducing regressions?

Automated code fixes for GitHub issues require implementing minimal changes identified by root-cause analysis and adding regression tests. This process ensures fixes do not introduce new issues by running targeted unit tests, typecheck, and i18n checks before finalizing changes.

What is root-cause analysis in automated GitHub issue management?

Root-cause analysis in GitHub issue management identifies the minimal code change needed to resolve a problem. It precedes the automated fix implementation step, providing the exact code modifications required to address the underlying issue.

Do I need write access to the repository to automate code fixes?

Automating code fixes requires write access to the repository. This permission is necessary for claiming GitHub issues to prevent concurrent automation, implementing code changes, and adding regression tests directly to the project.

How to prevent concurrent automation when fixing GitHub issues?

Preventing concurrent automation involves claiming the GitHub issue at the start of the fix process. This locks the issue so other automated systems do not duplicate work, and it is released later in the open-pr step.

What validation steps are needed after implementing automated code fixes?

Validation steps after implementing automated code fixes include running targeted unit tests, typecheck, i18n checks, and project-specific validation steps. The changes also undergo self-review through code-review and backward-compatibility policy checks.

Does automated code fixing work with projects that have specific validation rules?

Automated code fixing works with project-specific validation rules by running targeted unit tests, typecheck, i18n checks, and other validation steps defined in the project. It requires knowledge of the project's AGENTS.md rules to ensure compliance.