This is a solid set of React opinions codified into patterns you can actually follow. It pushes you toward minimal state, derived values over useState, and proper memoization for anything O(n). The Loader/Inner pattern for type narrowing before useMemo is clever. Strong stance on discriminated unions for complex state and Zustand when you outgrow simple patterns. The conditional logic guidance is opinionated but sensible: affirmative logic, explicit conditionals, ternaries instead of the dreaded `&&` operator. If you're tired of overusing state and rendering components into oblivion, this will give you a framework that actually scales.
npx skills add https://github.com/casper-studios/casper-marketplace --skill react-patterns