fix

Triage failing checks and apply single-issue git commits until all pass.

26|8|Updated Mar 19, 2026
One-click install
npx skills add https://github.com/arbazkhan971/godmode --skill fix-arbazkhan971
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: fix
Source: https://github.com/arbazkhan971/godmode/tree/main/skills/fix
Command: npx skills add https://github.com/arbazkhan971/godmode --skill fix-arbazkhan971

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve?

Fix loop. One fix per commit, auto-revert on regression, until zero errors. Max 3 attempts per error. Triggers on: /godmode:fix, "fix this", "tests failing", "broken build", "lint errors".

Core Features & Use Cases

  • Iterative error triage and single-issue fixes
  • Auto-revert on regression to keep a green state
  • Enforce max attempts per error and one fix per iteration
  • CI-ready workflow with deterministic commits and logs

Quick Start

Kick off the autonomous fix loop by running /godmode:fix on your project.

Frequently Asked Questions about fix

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

FAQPage Schema
How do I automate fixing a broken build with failing tests and lint errors?

You can automate fixing a broken build by running an iterative error triage loop that applies single-issue commits and auto-reverts regressions until all checks pass. This enforces one fix per iteration, limits changes to five lines per patch, and allows up to three attempts per error.

What is the best way to auto-revert code regressions during local development?

The best way to auto-revert regressions is using a deterministic fix loop that commits code before verification and automatically reverts if checks fail. This keeps your repository in a green state while enforcing a maximum of three attempts per error.

Can I use autonomous error fixing workflows in CI environments?

Yes, you can use autonomous error fixing in CI environments. The process generates deterministic, revertable commits and automated logs under a specific directory, making it suitable for CI pipelines where reproducible builds and tracked changes are required.

Does the automated fix loop limit the size of code patches?

Yes, the automated fix loop strictly limits changes to five lines per patch. By enforcing one fix per iteration, it ensures granular, revertable commits while attempting to resolve build, lint, or test failures up to three times per error.

Why should I use single-issue commits for regression fixing?

Single-issue commits isolate failures during regression fixing, allowing automated systems to revert specific patches without losing unrelated progress. This approach maintains a green state by ensuring each commit addresses one error before moving to the next.