Migrate Static to Wrapper Perform mechanical, codemod-style replacement of static dependency call sites with calls to injected wrapper interfaces or built-in abstractions. Operates on a bounded scope (single file, project, or namespace) so migrations can be done incrementally. When to Use - After wrappers have been generated (via ) or built-in abstractions identified - Migrating → across a project - Migrating → across a namespace - Adding constructor injection for the new abstraction to affected classes - Incremental migration: one project or namespace at a time When Not to Use - No wrapper o…