Scaffold a complete aggregate root inside a bounded context. Parse as (both kebab-case). The context must already exist under . Steps 1. Validate : Confirm exists. If not, suggest running first. 2. Pre-task hook : 3. Create aggregate root entity : - File: - Include: unique ID field, constructor with invariant validation, domain methods that enforce business rules, based on identity - Export a TypeScript class extending or implementing a base interface 4. Create value objects : - File: - Include: immutable ID value object with factory method and validation - Add additional value objects as pro…