What problem does it solve? Changing a shared type, constant, or interface often breaks many dependent files, causing inconsistent states, dangling imports, and failed builds. This Skill provides a disciplined workflow for planning, sequencing, and verifying multi-file changes so they land as one atomic commit. ## Core Features & Use Cases - Dependency Mapping: Traces import/export chains to identify every file affected by a change before editing begins. - Ordered Change Sequence: Enforces a safe update order: types and interfaces first, then utils, services, and finally UI components. - Atomic Verification & Commit: Runs build, lint, and integration tests at each step and merges everything in a single Conventional Commit. - Use Case: When renaming a shared API constant used across services and components, map all importers, update core types first, propagate changes layer by layer, and submit one verified commit. ## Quick Start Use the sync_core skill to plan and apply a synchronized multi-file change for renaming the API_URL constant across all dependent files.