bugfix

Diagnose software bugs and apply minimal test-verified patches automatically.

Updated Aug 27, 2026
One-click install
npx skills add https://github.com/acedergren/oci-self-service-portal --skill bugfix-acedergren
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: bugfix
Source: https://github.com/acedergren/oci-self-service-portal/tree/main/.agents/skills/bugfix
Command: npx skills add https://github.com/acedergren/oci-self-service-portal --skill bugfix-acedergren

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Autonomous bug fixing in software projects: given a bug report, failing test, error log, or broken CI, this workflow diagnoses the root cause and fixes it without hand-holding.

Core Features & Use Cases

  • End-to-end bug diagnosis from evidence: collects context, tests, and logs.
  • Minimal, safe fixes with verification: applies smallest change and validates with tests.
  • Commit-ready changes and traceable history: records the fix with proper messaging.

Quick Start

Run the bugfix workflow with the provided description to automatically diagnose, implement a minimal fix, verify with tests, and commit.

Frequently Asked Questions about bugfix

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

FAQPage Schema
How do I automatically diagnose and fix failing tests or broken CI pipelines?

To automatically diagnose and fix failing tests or broken CI pipelines, this Skill analyzes evidence like error logs and applies minimal patches verified by test execution. It handles the entire process from root-cause analysis to commit-ready changes.

Can I autonomously fix runtime errors in both frontend and backend codebases?

Yes, you can autonomously fix runtime errors in both frontend and backend codebases. This workflow collects contextual evidence, performs root-cause analysis, and applies the smallest safe patch to resolve the error across your stack.

What is the best way to generate commit-ready changes for a software bugfix?

The best way to generate commit-ready changes for a software bugfix is to apply a minimal patch validated by tests. This workflow records the fix with proper messaging and traceable history after verifying the root cause.

Does this automated bugfix workflow require test execution to verify the applied patch?

Yes, this automated bugfix workflow requires test execution to verify the applied patch. It applies the smallest possible change and validates the fix by running tests before generating the commit-ready output.

How does autonomous root-cause analysis work when diagnosing a bug from an error log?

Autonomous root-cause analysis works by collecting context, tests, and logs from the provided error log. It systematically diagnoses the underlying issue and applies a minimal patch to fix the software bug end-to-end.

Are there limitations when applying minimal patches to complex software bugs?

A limitation when applying minimal patches to complex software bugs is that the approach focuses on the smallest safe change validated by tests. If the root cause spans multiple interconnected systems, a minimal patch may not fully resolve the issue.