rawgentic:fix-bug

Automate bug fixing with a 14-step workflow including root cause analysis and TDD.

2|Updated Mar 3, 2026
One-click install
npx skills add https://github.com/3D-Stories/rawgentic --skill rawgentic-fix-bug
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: rawgentic:fix-bug
Source: https://github.com/3D-Stories/rawgentic/tree/main/skills/fix-bug
Command: npx skills add https://github.com/3D-Stories/rawgentic --skill rawgentic-fix-bug

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve?

This Skill automates the process of fixing bugs in software projects, ensuring quality through a structured workflow that includes root cause analysis and test-driven development.

Core Features & Use Cases

  • Reproduce-First TDD: Enforces writing a failing test before any code fix is implemented.
  • Root Cause Analysis: Guides through identifying the underlying cause of the bug.
  • Quality Gates: Integrates code review and CI verification to ensure the fix is robust.
  • Use Case: When a user reports a bug, this Skill can be invoked with the issue number to automatically create a fix branch, write a reproduction test, implement the fix, and submit a pull request.

Quick Start

Use the rawgentic:fix-bug skill to fix the bug reported in GitHub issue number 42.

Frequently Asked Questions about rawgentic:fix-bug

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

FAQPage Schema
How do I fix a bug using TDD and root cause analysis?

To fix a bug using TDD and root cause analysis, you follow a structured 14-step workflow that enforces writing a failing reproduction test before implementing the code fix. Root cause analysis is used to identify the underlying issue.

Can I automate GitHub issue bug fixes with a pull request workflow?

Yes, you can automate GitHub issue bug fixes by invoking the workflow with an issue number to automatically create a fix branch, write a reproduction test, implement the fix, and submit a pull request.

What is the best way to ensure a bug fix passes code review and CI verification?

The best way to ensure a bug fix passes code review and CI verification is to use quality gates integrated into the workflow, which validate the fix through automated checks and pull request reviews.

Does the bug fix workflow support conventional commits and GitHub Actions?

Yes, the bug fix workflow supports conventional commits for structuring commit messages and integrates with GitHub Actions to verify continuous integration during deployment.

When do I need to write a failing test before implementing a bug fix?

You need to write a failing test before implementing a bug fix when using reproduce-first TDD, which ensures the bug is accurately replicated and the subsequent code fix resolves the exact issue.