What problem does it solve? Writing unit tests that match a monorepo's established conventions is repetitive and error-prone. This Skill generates Vitest test files that follow the project's exact structure, mocking patterns, and coverage requirements, so tests are consistent across all repos. ## Core Features & Use Cases - Convention-Aligned Test Generation: Produces co-located test files (foo.ts → foo.test.ts) using backtick describe/it strings, "should" naming, and vi.clearAllMocks() setup. - Mock Pattern Templates: Provides ready-made patterns for module mocking, Express req/res API mocking, and frontend fetch mocking. - Coverage Enforcement: Ensures happy paths, error handling (401/403/404/500), edge cases, and auth checks are covered. - Use Case: Ask for tests for a backend controller, and the Skill reads the source file, checks repo-specific patterns, references existing tests, generates the test file with correct path aliases (e.g., @TBE/*), and runs pnpm --filter <package> test to verify. ## Quick Start Generate Vitest tests for the source file src/controllers/userController.ts following the project conventions.