What problem does it solve? Teams using Redux with redux-saga often blur layer boundaries: components import saga files, services hide dispatch calls, and client bundles pull in saga middleware. This Skill defines and enforces clear import rules so each layer only touches the modules it is allowed to use. ## Core Features & Use Cases - Layer-specific import rules: Defines what components, services, and sagas may import, including actions, selectors, types, and the initialized Store instance. - Forbidden import detection: Flags components importing saga files, typed-redux-saga effects, reducer internals, or collection utilities directly. - Public package surface guidance: Maps approved subpackage and utility leaf subpaths such as @augmentcode/themis/svelte-store and /utils/store/create-action. - Use Case: While reviewing a Svelte component, you notice it imports a saga generator and steps it manually. Use this Skill to replace the saga import with a store.dispatch call of the triggering action. ## Quick Start Review this component file and tell me which imports violate the store import boundary rules and how to fix them.