What problem does it solve? Writing EF Core entity configurations by hand is repetitive and error-prone, especially when a project enforces strict conventions like TypedId conversions, value object mappings, decimal precision, and required string lengths. This Skill scaffolds a complete IEntityTypeConfiguration<T> class that follows those conventions exactly. ## Core Features & Use Cases - Convention-Compliant Scaffolding: Generates an internal sealed configuration class placed in the correct Infrastructure module path with proper table naming. - Conversion Pattern Library: Covers TypedId (int and string based), single-value value objects, Price/Money with HasPrecision(18, 4), enums stored as strings, and owned types in the same or separate tables. - Use Case: After adding a new Product entity to the Catalog bounded context, ask the assistant to create its EF configuration and receive a ready-to-use class with key conversion, unique indexes, and owned type mappings matching project rules. ## Quick Start Ask the assistant to create an EF configuration for your entity, for example: create an EF configuration for the Product entity in Catalog/Products.