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'
Installs
12
First Seen
Jan 28, 2026