What problem does it solve? When a small helper (a style map, predicate, or formatting function) lives inside a component directory and is imported through that component's barrel, Stryker's jest runner with findRelatedTests pulls the component's entire suite set into every mutant run for consuming files, making mutation shards slow. ## Core Features & Use Cases - Fan-out measurement: Uses jest --listTests --findRelatedTests to count related suites and identify candidate files with roughly thirty or more reverse-dependency suites. - Guided extraction procedure: Moves qualifying leaf helpers (no hooks, no component state, no MUI imports) into a shared utils/ module under the source root, re-exports them from the barrel, and repoints consumers via path aliases. - Verification gates: Confirms type-check, dependency-cruiser, and Storybook build targets stay clean while the related-test count and shard timing drop. - Use Case: A mutation shard runs long because a srOnlySx style helper exported from a component barrel is imported across directories; this Skill moves it to utils/, cutting the per-mutant suite reload count. ## Quick Start Ask the assistant to measure the findRelatedTests fan-out for a helper imported through a component barrel and extract it into the shared utils directory if it qualifies as a leaf.