Use when the user wants regression hunting after a change. Identify nearby flows, shared code paths, error states, and configuration edges that may have broken even if the main fix works. Good triggers include "check for regressions", "what else might this have broken", and "test the surrounding area".
96
94%
Does it follow best practices?
Impact
98%
2.72xAverage score across 8 eval scenarios
Passed
No known issues
Your team's payment service recently had its database connection pool size increased from 5 to 20 after experiencing connection timeouts under load. A colleague wants to know if this config change might have broken anything elsewhere. You have been asked to produce a regression scout report saved as report.md.
=============== FILE: inputs/payment-service-overview.md ===============
src/db/pool.js — DB connection pool (CHANGED: maxConnections 5→20)src/services/payment.js — payment processing, uses pool directlysrc/services/refund.js — refund processing, uses pool directlysrc/services/reporting.js — reporting queries, uses pool directlysrc/services/audit.js — audit log writes, uses pool directlytests/services/payment.test.js — payment service teststests/services/refund.test.js — refund service teststests/services/reporting.test.js — reporting service teststests/services/audit.test.js — audit service testsThe database connection pool in src/db/pool.js had its maxConnections setting increased from 5 to 20. This was done to prevent connection timeouts during peak payment processing load.
evals
scenario-1
scenario-2
scenario-3
scenario-4
scenario-5
scenario-6
scenario-7
scenario-8
skills
regression-scout