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
A developer added a new DELETE /api/v2/users/:id endpoint to a REST API. The endpoint soft-deletes users by setting deleted_at timestamp rather than removing the row. The developer wants to make sure this change didn't introduce any regressions in the broader user management system. Write a regression scout report to report.md.
=============== FILE: inputs/user-service.md ===============
DELETE /api/v2/users/:id — soft delete (sets deleted_at, does not remove row)src/routes/users.jssrc/models/user.js (added softDelete() method)src/routes/users.js — user CRUD routes (CHANGED: new DELETE handler added)src/models/user.js — User model (CHANGED: softDelete() method added)src/middleware/auth.js — JWT auth, checks user exists before authorizingsrc/routes/orders.js — order routes, joins with users tablesrc/routes/posts.js — posts routes, filters by author user_idsrc/services/emailService.js — sends emails to userssrc/services/search.js — user search, may return soft-deleted usersevals
scenario-1
scenario-2
scenario-3
scenario-4
scenario-5
scenario-6
scenario-7
scenario-8
skills
regression-scout