What problem does it solve? Writing comprehensive tests is time-consuming and often skipped, leaving codebases with poor coverage and undetected bugs. This Skill automates test strategy design and test suite generation so teams can reach meaningful coverage without starting from scratch. ## Core Features & Use Cases - Framework Detection: Automatically identifies the project's test framework (Jest, Vitest, pytest, Go test) and follows existing conventions. - Layered Test Strategy: Designs unit, integration, and e2e tests with coverage targets based on code criticality. - Test Generation & Verification: Writes test files following project naming conventions, then runs them and reports pass/fail results. - Use Case: You just built a new API endpoint with no tests. Ask for a test suite and get unit tests with mocked dependencies, integration tests against the endpoint, and a coverage report. ## Quick Start Generate a test suite with unit and integration tests for the authentication module and run them to verify they pass.