What problem does it solve? Running an unscoped full test suite in a large Bun monorepo can hang or time out, wasting developer time before commits and pull requests. This Skill maps changed files to the right focused verification commands so only relevant tests, typechecks, and smoke checks run. ## Core Features & Use Cases - Focused Test Selection: Groups changed files by package and runs only the matching test files or grep-scoped test cases with bun test. - Risk-Based Typechecking: Adds bunx tsc --noEmit when edits touch shared TypeScript contracts, route shapes, protocols, migrations, or provider abstractions. - Migration Coverage: Triggers migration tests when changes affect memory or workspace migration directories and database schema modules. - Use Case: After editing a gateway route handler and a shared contract type, the Skill directs running the gateway test file plus typechecks for each consumer package instead of the full suite. ## Quick Start Ask the assistant to choose which tests and typechecks to run for the files changed in your current branch before committing.