redux-best-practices
Installation
SKILL.md
Redux Best Practices
Essential Rules (Priority A)
These rules prevent errors. Violating them causes bugs.
1. Never Mutate State
// ❌ WRONG - mutates state
state.todos.push(newTodo)
state.user.name = 'New Name'