← Back to list

react-state-management
by ngxtm
⭐ 0🍴 0📅 Jan 23, 2026
SKILL.md
name: React State Management description: Standards for managing local, global, and server state. metadata: labels: [react, state, redux, zustand, context] triggers: files: ['/*.tsx', '/*.jsx'] keywords: [state, useReducer, context, store, props]
React State Management
Priority: P0 (CRITICAL)
Choosing the right tool for state scope.
Implementation Guidelines
- Local:
useState.useReducerif complex (state machine). - Derived:
const fullName = first + last. No state sync. - Context: DI, Theming, Auth. Not for high-freq data.
- Global: Zustand/Redux for app-wide complex flow.
- Server Cache: Use
React.cache(RSC) to dedupe requests per render. - Server State: React Query / SWR / Apollo. Cache != UI State.
- URL: Store filter/sort params in URL (Source of Truth).
- Immutability: Never mutate. Use spread or Immer.
Anti-Patterns
- No Prop Drilling > 2: Use Context/Composition.
- No Mirroring Refs: Don't copy props to state.
- No Multi-Source: Single Source of Truth.
- No Context Abuse: Context causes full-tree re-render.
Code
// Derived State (Efficient)
function List({ items, filter }) {
// Correct: Calculated on fly
const visible = items.filter((i) => i.includes(filter));
return (
<ul>
{visible.map((i) => (
<li key={i}>{i}</li>
))}
</ul>
);
}
// Zustand (Global)
const useStore = create((set) => ({
count: 0,
inc: () => set((s) => ({ count: s.count + 1 })),
}));
Score
Total Score
50/100
Based on repository quality metrics
✓SKILL.md
SKILL.mdファイルが含まれている
+20
○LICENSE
ライセンスが設定されている
0/10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
Reviews
💬
Reviews coming soon