Validate domain boundary integrity across all bounded contexts. Steps 1. Discover contexts : Scan to find all bounded contexts. 2. Check cross-boundary violations : - For each context, scan all files for import statements - Flag any import that reaches into another context's directory directly - Allowed: importing from another context's public (application layer) - Violation: importing from directly 3. Check aggregate invariant enforcement : - Scan aggregate root entities for public setters that bypass validation - Flag mutable public properties without invariant checks - Verify that child en…