state-management-expert — community state-management-expert, authorsinfo, community, ide skills

v1.0.0

About this Skill

Ideal for Frontend Agents specializing in React development, needing expertise in state management patterns and libraries like Redux, Zustand, Jotai, Recoil, and @tanstack/react-query. Expert in React state management including Redux Toolkit, Zustand, Jotai, React Query/TanStack Query, and Context API. Use for state architecture decisions, performance issues, or complex state logic.

ripgraphics ripgraphics
[0]
[0]
Updated: 3/12/2026

Killer-Skills Review

Decision support comes first. Repository text comes second.

Reference-Only Page Review Score: 7/11

This page remains useful for operators, but Killer-Skills treats it as reference material instead of a primary organic landing page.

Original recommendation layer Concrete use-case guidance Explicit limitations and caution Locale and body language aligned
Review Score
7/11
Quality Score
39
Canonical Locale
en
Detected Body Locale
en

Ideal for Frontend Agents specializing in React development, needing expertise in state management patterns and libraries like Redux, Zustand, Jotai, Recoil, and @tanstack/react-query. Expert in React state management including Redux Toolkit, Zustand, Jotai, React Query/TanStack Query, and Context API. Use for state architecture decisions, performance issues, or complex state logic.

Core Value

Empowers agents to optimize React component performance and resolve complex state-related issues using libraries such as Redux, Zustand, and Recoil, while also providing expertise in API data fetching with @tanstack/react-query.

Ideal Agent Persona

Ideal for Frontend Agents specializing in React development, needing expertise in state management patterns and libraries like Redux, Zustand, Jotai, Recoil, and @tanstack/react-query.

Capabilities Granted for state-management-expert

Debugging React component issues related to state management
Optimizing performance in React applications using state management libraries
Implementing efficient data fetching and caching with @tanstack/react-query

! Prerequisites & Limits

  • Requires React project setup
  • Limited to React state management libraries and patterns
  • Needs access to package.json and project files for environment detection

Why this page is reference-only

  • - The underlying skill quality score is below the review floor.

Source Boundary

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

After The Review

Decide The Next Action Before You Keep Reading Repository Material

Killer-Skills should not stop at opening repository instructions. It should help you decide whether to install this skill, when to cross-check against trusted collections, and when to move into workflow rollout.

Labs Demo

Browser Sandbox Environment

⚡️ Ready to unleash?

Experience this Agent in a zero-setup browser environment powered by WebContainers. No installation required.

Boot Container Sandbox

FAQ & Installation Steps

These questions and steps mirror the structured data on this page for better search understanding.

? Frequently Asked Questions

What is state-management-expert?

Ideal for Frontend Agents specializing in React development, needing expertise in state management patterns and libraries like Redux, Zustand, Jotai, Recoil, and @tanstack/react-query. Expert in React state management including Redux Toolkit, Zustand, Jotai, React Query/TanStack Query, and Context API. Use for state architecture decisions, performance issues, or complex state logic.

How do I install state-management-expert?

Run the command: npx killer-skills add ripgraphics/authorsinfo. It works with Cursor, Windsurf, VS Code, Claude Code, and 19+ other IDEs.

What are the use cases for state-management-expert?

Key use cases include: Debugging React component issues related to state management, Optimizing performance in React applications using state management libraries, Implementing efficient data fetching and caching with @tanstack/react-query.

Which IDEs are compatible with state-management-expert?

This skill is compatible with Cursor, Windsurf, VS Code, Trae, Claude Code, OpenClaw, Aider, Codex, OpenCode, Goose, Cline, Roo Code, Kiro, Augment Code, Continue, GitHub Copilot, Sourcegraph Cody, and Amazon Q Developer. Use the Killer-Skills CLI for universal one-command installation.

Are there any limitations for state-management-expert?

Requires React project setup. Limited to React state management libraries and patterns. Needs access to package.json and project files for environment detection.

How To Install

  1. 1. Open your terminal

    Open the terminal or command line in your project directory.

  2. 2. Run the install command

    Run: npx killer-skills add ripgraphics/authorsinfo. The CLI will automatically detect your IDE or AI agent and configure the skill.

  3. 3. Start using the skill

    The skill is now active. Your AI agent can use state-management-expert immediately in the current project.

! Reference-Only Mode

This page remains useful for installation and reference, but Killer-Skills no longer treats it as a primary indexable landing page. Read the review above before relying on the upstream repository instructions.

Upstream Repository Material

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

Upstream Source

state-management-expert

Install state-management-expert, an AI agent skill for AI agent workflows and automation. Review the use cases, limitations, and setup path before rollout.

SKILL.md
Readonly
Upstream Repository Material
The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.
Supporting Evidence

State Management Expert

Expert in React state management patterns and libraries.

When Invoked

Recommend Specialist

  • React component issues: recommend react-expert
  • Performance profiling: recommend react-performance-expert
  • API data fetching only: recommend rest-api-expert

Environment Detection

bash
1grep -E "redux|zustand|jotai|recoil|@tanstack/react-query" package.json 2>/dev/null 2find . -name "store*" -o -name "*slice*" | head -5

State Management Decision Tree

State Type?
├─ Server State (API data) → TanStack Query / SWR
├─ Global UI State → Zustand / Redux Toolkit
├─ Form State → React Hook Form / Formik
├─ URL State → nuqs / useSearchParams
└─ Local State → useState / useReducer

Problem Playbooks

typescript
1import { create } from 'zustand'; 2import { devtools, persist } from 'zustand/middleware'; 3 4interface UserStore { 5 user: User | null; 6 setUser: (user: User | null) => void; 7 logout: () => void; 8} 9 10export const useUserStore = create<UserStore>()( 11 devtools( 12 persist( 13 (set) => ({ 14 user: null, 15 setUser: (user) => set({ user }), 16 logout: () => set({ user: null }), 17 }), 18 { name: 'user-store' } 19 ) 20 ) 21); 22 23// Usage 24function Component() { 25 const user = useUserStore((state) => state.user); 26 const setUser = useUserStore((state) => state.setUser); 27}

Redux Toolkit

typescript
1import { createSlice, configureStore } from '@reduxjs/toolkit'; 2 3const counterSlice = createSlice({ 4 name: 'counter', 5 initialState: { value: 0 }, 6 reducers: { 7 increment: (state) => { state.value += 1; }, 8 decrement: (state) => { state.value -= 1; }, 9 }, 10}); 11 12export const store = configureStore({ 13 reducer: { counter: counterSlice.reducer }, 14}); 15 16export const { increment, decrement } = counterSlice.actions;

TanStack Query (Server State)

typescript
1import { useQuery, useMutation, useQueryClient } from '@tanstack/react-query'; 2 3function usePosts() { 4 return useQuery({ 5 queryKey: ['posts'], 6 queryFn: () => fetch('/api/posts').then(r => r.json()), 7 staleTime: 5 * 60 * 1000, // 5 minutes 8 }); 9} 10 11function useCreatePost() { 12 const queryClient = useQueryClient(); 13 14 return useMutation({ 15 mutationFn: (data: CreatePostDto) => 16 fetch('/api/posts', { 17 method: 'POST', 18 body: JSON.stringify(data), 19 }), 20 onSuccess: () => { 21 queryClient.invalidateQueries({ queryKey: ['posts'] }); 22 }, 23 }); 24}

Context API (Simple cases)

typescript
1const ThemeContext = createContext<ThemeContextValue | null>(null); 2 3export function ThemeProvider({ children }: { children: ReactNode }) { 4 const [theme, setTheme] = useState<'light' | 'dark'>('light'); 5 6 const value = useMemo(() => ({ theme, setTheme }), [theme]); 7 8 return ( 9 <ThemeContext.Provider value={value}> 10 {children} 11 </ThemeContext.Provider> 12 ); 13} 14 15export function useTheme() { 16 const context = useContext(ThemeContext); 17 if (!context) throw new Error('useTheme must be within ThemeProvider'); 18 return context; 19}

Code Review Checklist

  • Server state uses TanStack Query or SWR
  • No prop drilling >2 levels
  • Selectors used for derived state
  • State normalized (no duplicates)
  • Optimistic updates for mutations
  • Loading/error states handled

Anti-Patterns

  1. Storing server data in Redux - Use React Query
  2. Global state for local concerns - Use useState
  3. Over-fetching with Context - Split contexts
  4. Missing selectors - Causes unnecessary re-renders
  5. Duplicate state - Single source of truth

Related Skills

Looking for an alternative to state-management-expert or another community skill for your workflow? Explore these related open-source skills.

View All

openclaw-release-maintainer

Logo of openclaw
openclaw

Your own personal AI assistant. Any OS. Any Platform. The lobster way. 🦞

333.8k
0
AI

widget-generator

Logo of f
f

Generate customizable widget plugins for the prompts.chat feed system

149.6k
0
AI

flags

Logo of vercel
vercel

The React Framework

138.4k
0
Browser

pr-review

Logo of pytorch
pytorch

Tensors and Dynamic neural networks in Python with strong GPU acceleration

98.6k
0
Developer