What problem does it solve? When one CoherenceSync prefab is nested inside another at edit time, each client instantiates its own copy of the nested child as a separate network entity, breaking identity and lifetime synchronization across clients. This Skill detects that asset-level nesting and fixes it with PrefabSyncGroup. ## Core Features & Use Cases - Asset-level detection: Scans prefab YAML for PrefabInstance blocks referencing other CoherenceSync prefabs, keyed off the actual CoherenceSync script GUID, to find unsynchronized nesting before runtime symptoms appear. - PrefabSyncGroup fix: Guides adding Coherence.Toolkit.PrefabSyncGroup to the parent prefab root, baking the synced ids field, and collapsing per-client child copies onto one host-authoritative entity via NoDuplicates uniqueness. - Use Case: You author a gate prefab containing a harvestable prefab, both with CoherenceSync. Use this Skill to detect the nesting, add PrefabSyncGroup to the gate root, bake, and verify the nested entity syncs correctly on remote clients. ## Quick Start Check my coherence prefabs for nested CoherenceSync prefabs and fix any unsynchronized nesting with PrefabSyncGroup.