post-fix-reviewer

Verify bug fixes by reproducing steps and running full test suites.

Updated Apr 10, 2026
One-click install
npx skills add https://github.com/yuridefranca/ai-prompts --skill post-fix-reviewer
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: post-fix-reviewer
Source: https://github.com/yuridefranca/ai-prompts/tree/main/src/skills/post-fix-reviewer
Command: npx skills add https://github.com/yuridefranca/ai-prompts --skill post-fix-reviewer

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill provides a final validation step to ensure a code patch actually resolves the reported bug and does not introduce regressions, preventing broken releases and reducing post-merge incidents.

Core Features & Use Cases

  • Reproduction and Verification: Re-run original reproduction steps with the same inputs to confirm the issue is resolved and capture evidence.
  • Test Suite Execution: Run unit, integration, and E2E tests, verify new tests pass, and confirm overall coverage and stability.
  • Edge Case, Performance & Security Checks: Validate edge cases, benchmark critical paths, and exercise relevant security attack vectors.
  • Use Case: Verify a critical production hotfix by reproducing the failure, executing targeted and full test suites, and confirming no regressions in related features.

Quick Start

Use the post-fix-reviewer skill to verify the fix for issue #123 by reproducing the bug, running the full test suite, and validating edge cases, regressions, performance, and security.

Frequently Asked Questions about post-fix-reviewer

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

FAQPage Schema
How do I verify a bug fix and prevent regressions before merging code?

To verify a bug fix and prevent regressions, you must reproduce the original issue steps, execute the full test suite, and validate edge cases, performance benchmarks, and security attack vectors before code review or merging.

What steps are included in post-fix validation for a critical production hotfix?

Post-fix validation for a production hotfix involves reproducing the failure with the same inputs, running targeted and full test suites, checking edge cases, and confirming that no regressions occur in related features.

Can I use automated regression testing to validate edge cases and security attack vectors?

Yes, automated regression testing can validate edge cases and exercise relevant security attack vectors. It runs unit, integration, and E2E tests to verify overall coverage and confirm no new vulnerabilities are introduced.

When do I need to run performance benchmarks during bug fix verification?

You need to run performance benchmarks during bug fix verification when validating critical paths. This ensures the code patch resolves the reported bug without degrading application performance or causing post-merge incidents.

What is the best way to ensure a code patch actually resolves a reported issue?

The best way to ensure a code patch resolves a reported issue is to re-run the original reproduction steps with the same inputs, confirm the issue is resolved, and capture evidence by executing the full test suite for stability.