data-client-manager
Installation
SKILL.md
Guide: Using @data-client Managers for global side effects
Managers are singletons that handle global side-effects. Kind of like useEffect() for the central data store. They interface with the store using Controller, and redux middleware is run in response to actions.
Single Responsibility
One concern per Manager; compose many small managers (e.g. transport, subscriptions, logging, auth) rather than one large one.
References
For detailed API documentation, see the references directory:
- Manager - Manager interface and lifecycle
- Actions - Action types and payloads
- Controller - Imperative actions
- LogoutManager - Handling logout/cleanup
- getDefaultManagers - Default manager configuration
- managers - Managers concept guide