What problem does it solve? Adding a new feature to an ABP (ASP.NET Boilerplate) application requires touching many layers—Domain, Domain.Shared, EntityFrameworkCore, Application.Contracts, and Application—and missing a step causes build or runtime failures. This Skill provides a complete, ordered workflow so nothing is forgotten. ## Core Features & Use Cases - Full Entity Workflow: Step-by-step instructions covering entity creation, constants, repositories, EF Core configuration, migrations, DTOs, mappers, app services, localization, permissions, and tests. - Code Templates: Ready-to-adapt C# examples for aggregate roots, DTOs, Mapperly/AutoMapper mappers, repository implementations, and xUnit test classes. - Completion Checklist: A 13-item checklist verifying every layer of the feature is implemented. - Use Case: When asked to add a new "Product" entity to an ABP modular monolith, follow the flow to produce the domain entity, EF Core mapping, migration, CRUD app service with authorization, localization keys, and integration tests. ## Quick Start Add a new entity called Product with name and price fields to my ABP project following the full development workflow.