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 refactored a TypeScript CLI tool's argument parser to use the yargs library instead of a hand-rolled parser. All existing tests pass. They want a quick regression scout to document any risk areas they might have missed. Write the report to report.md.
=============== FILE: inputs/cli-tool.md ===============
src/cli/parser.ts — argument parsing (CHANGED: replaced custom parser with yargs)tool init <name> — initialize a new projecttool build [--watch] [--output <dir>] — build the projecttool deploy --env <env> [--dry-run] — deploy to environmenttool config get <key> — get config valuetool config set <key> <value> — set config valueevals
scenario-1
scenario-2
scenario-3
scenario-4
scenario-5
scenario-6
scenario-7
scenario-8
skills
regression-scout