What problem does it solve? Writing consistent, isolated unit tests for backend handlers and validators is repetitive and error-prone, especially when mocking repositories, unit-of-work patterns, and building test fixtures for domain entities with private setters. ## Core Features & Use Cases - Handler Test Generation: Creates xUnit test classes for command and query handlers with Moq-based IUnitOfWork and IRepository<T> mocks, following the project's mirrored test layout. - Validator Test Generation: Produces validator tests covering valid input, broken fields, and async business-rule violations (e.g., uniqueness checks) with error-code assertions. - Fixture Builders: Uses per-entity builders and NBuilder for DTO fabrication, handling positional records and entities with private setters. - Use Case: After adding a new CreateOrder handler, ask the Skill to generate its handler and validator tests, then run bun run test:api to verify everything passes. ## Quick Start Generate unit tests for the CreateOrder handler and its validator in the Orders module.