./core-policy/SKILL.md | Redux ownership, side-effect boundaries, serializability, and utility reuse rules. |
./state-integrity/SKILL.md | Preventing derived/duplicated Redux state and duplicate action/selector/saga ownership. |
./store-pruning/SKILL.md | Explicit-only pruning of unused Redux selectors, actions, handlers, sagas, and orphaned store logic when the user asks for pruning. |
./import-boundaries/SKILL.md | Public package imports, saga import boundaries, and Store-first public subpackages. |
./file-structure/SKILL.md | Slice file layout, type modules, sagas, and Store registration patterns. |
./state-serialization/SKILL.md | Structured-clone-safe Redux state values. |
./actions/SKILL.md | createAction and createAsyncAction action creators. |
./reducers/SKILL.md | Immutable chained reducers and no-op reference equality behavior. |
./sagas/SKILL.md | typed-redux-saga flows, watchers, debounce, retry/timeout, and side-effect orchestration. |
./saga-manager/SKILL.md | Package-owned saga crash tracking, lifecycle, restart, and backoff mechanics. |
./channel-effects/SKILL.md | Generic EventChannel consumers for IPC, websocket, or DOM channels. |
./selector-channels/SKILL.md | Saga reactions to selector value changes. |
./wait-for/SKILL.md | One-shot saga waits for selector predicates. |
./local-storage/SKILL.md | Safe app-local localStorage persistence from sagas. |
./collections/SKILL.md | Normalized Collection<T, K> entity state. |
./domain-scoped-state/SKILL.md | State keyed by workspace, project, tenant, or domain id. |
./boolean-preference/SKILL.md | Boolean set/toggle preference helper registration. |
./testing/SKILL.md | Reducer/saga testing, typed-redux-saga mocks, and reference equality assertions. |
./debugging/SKILL.md | Runtime inspection and reducer reference-equality diagnostics. |
./verifier/SKILL.md | Review quality gates for instruction drift, duplicate owners, and evidence. |
./redux-saga/SKILL.md | Generic upstream redux-saga API reference. |