What problem does it solve? Manually writing DI registration extension classes for each bounded context is repetitive and error-prone, especially when keeping Application and Infrastructure layers consistent with project conventions. This Skill scaffolds the correct extension classes following the project's internal static extension method pattern. ## Core Features & Use Cases - Application-layer scaffolding: Generates an extension class registering services, message handlers, and scheduled tasks for a bounded context. - Infrastructure-layer scaffolding: Generates an extension class registering the DbContext, migrator, repositories, and adapters with EF Core and SQL Server. - Wiring guidance: Provides manual steps to hook the new extensions into the central DependencyInjection.cs files and verify with a build. - Use Case: When adding a new Payments bounded context, run the skill with 'both' mode to generate PaymentsExtensions.cs and PaymentsInfraExtensions.cs, then wire them into AddApplication() and AddInfrastructure(). ## Quick Start Ask the AI to create DI extension classes for the Payments bounded context in both application and infrastructure modes.