state-management
Installation
SKILL.md
State Management
When to use this skill
- Global State Required: Multiple components share the same data
- Props Drilling Problem: Passing props through 5+ levels
- Complex State Logic: Authentication, shopping cart, themes, etc.
- State Synchronization: Sync server data with client state
Instructions
Step 1: Determine State Scope
Distinguish between local and global state.