What problem does it solve? Existing backend code often ships without tests, and writing coverage after the fact means manually detecting the test framework, matching project conventions, and wiring up mocks. This Skill automates that workflow so you get passing tests that mirror your project's existing patterns. ## Core Features & Use Cases - Framework Detection: Automatically detects Jest, Vitest, Mocha, or the Node built-in test runner and reads peer test files to match existing conventions. - Structured Test Generation: Produces happy-path, error-case, and edge-case tests, including supertest-based API integration tests, placed where the project already keeps tests. - Verification Loop: Runs the generated tests and fixes incorrect test assumptions while surfacing real bugs in the source instead of silently changing it. - Use Case: You have a legacy userService.ts with zero coverage. Ask for tests and receive a Vitest file with mocked dependencies that passes on the first run. ## Quick Start Write tests for src/services/userService.ts covering the happy path, error cases, and edge cases.