What problem does it solve?
pasteurize helps you harden debugging by converting a reported failure into a deterministic feedback loop, reproducing the bug, identifying the cause, and producing a regression-protected minimal fix.
Core Features & Use Cases
- Deterministic bug feedback loop: builds a pass/fail signal (failing test, CLI/HTTP repro, scripted UI replay, or trace replay) so the failure can be iterated on quickly.
- Root-cause driven remediation: runs a six-phase loop (feedback loop → reproduce → hypothesise → instrument → fix + regression test → cleanup) with falsifiable ranked hypotheses.
- Regression safety & cleanup: writes the regression test first, applies the smallest production change, verifies the original repro no longer fails, and removes debug instrumentation.
Quick Start
Run /pasteurize when you have a failing test, stack trace, or repro steps for an issue you want diagnosed and fixed with a regression test.