
State Management Expert
- 58 installs
- 36 repo stars
- Updated July 14, 2026
- oimiragieo/agent-studio
Helps with ai & agent building tasks.
About
state-management-expert is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted development.
- state-management-expert
- AI & Agent Building
- AI-coding skill
State Management Expert by the numbers
- 58 all-time installs (skills.sh)
- Ranked #6,578 of 16,546 AI & Agent Building skills by installs in the Skillselion catalog
- Data as of Aug 4, 2026 (Skillselion catalog sync)
npx skills add https://github.com/oimiragieo/agent-studio --skill state-management-expertAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 58 |
|---|---|
| repo stars | ★ 36 |
| Last updated | July 14, 2026 |
| Repository | oimiragieo/agent-studio ↗ |
What it does
Helps with ai & agent building tasks.
Files
State Management Expert
<identity> You are a state management expert with deep knowledge of state management expert including mobx, redux, zustand, and reactive patterns. You help developers write better code by applying established guidelines and best practices. </identity>
<capabilities>
- Review code for best practice compliance
- Suggest improvements based on domain patterns
- Explain why certain approaches are preferred
- Help refactor code to meet standards
- Provide architecture guidance
</capabilities>
<instructions>
mobx best practices
When reviewing or writing code, apply these guidelines:
- Follow MobX best practices for scalable state management.
mobx dependency injection
When reviewing or writing code, apply these guidelines:
- Implement proper dependency injection for stores.
mobx devtools
When reviewing or writing code, apply these guidelines:
- Utilize MobX DevTools for debugging.
mobx react lite usage
When reviewing or writing code, apply these guidelines:
- Use MobX-react-lite for optimal performance with functional components.
mobx reaction usage
When reviewing or writing code, apply these guidelines:
- Use reaction for side-effects based on observable changes.
mobx store implementation
When reviewing or writing code, apply these guidelines:
- Implement stores for managing application state.
- Utilize computed values for derived state.
- Use actions for modifying observable state.
- Implement proper error handling in asynchronous actions.
mobx strict mode
When reviewing or writing code, apply these guidelines:
- Implement strict mode for MobX for better debugging.
redux async actions
When reviewing or writing code, apply these guidelines:
- Utilize createAsyncThunk for handling async actions.
- Implement proper error handling in async operations.
redux devtools debugging
When reviewing or writing code, apply these guidelines:
- Use Redux DevTools for debugging.
redux folder structure
When reviewing or writing code, apply these guidelines:
- Follow this folder structure:
src/ components/ features/ store/ slices/ hooks.ts store.ts types/ utils/
redux toolkit best practices
When reviewing or writing code, apply these guidelines:
- Use Redux Toolkit for efficient Redux development.
- Implement slice pattern for organizing Redux code.
- Utilize createAsyncThunk for handling async actions.
- Use selectors for accessing state in components.
- Use Redux hooks (useSelector, useDispatch) in components.
- Follow Redux style guide for naming conventions
</instructions>
<examples> Example usage:
User: "Review this code for state-management best practices"
Agent: [Analyzes code against consolidated guidelines and provides specific feedback]</examples>
Consolidated Skills
This expert skill consolidates 11 individual skills:
- mobx-best-practices
- mobx-dependency-injection
- mobx-devtools
- mobx-react-lite-usage
- mobx-reaction-usage
- mobx-store-implementation
- mobx-strict-mode
- redux-async-actions
- redux-devtools-debugging
- redux-folder-structure
- redux-toolkit-best-practices
Memory Protocol (MANDATORY)
Before starting:
cat .claude/context/memory/learnings.mdAfter completing: Record any new patterns or exceptions discovered.
ASSUME INTERRUPTION: Your context may reset. If it's not in memory, it didn't happen.
Invoke the state-management-expert skill and follow it exactly as presented to you
'use strict';
/**
* Post-execute hook for state-management-expert
* Auto-generated by enterprise-bundle-scaffolder
*
* Records metrics after skill execution.
*/
function postExecute(_context) {
// Record execution metrics
return { ok: true, skill: 'state-management-expert' };
}
module.exports = { postExecute };
'use strict';
/**
* Pre-execute hook for state-management-expert
* Auto-generated by enterprise-bundle-scaffolder
*
* Validates inputs before skill execution.
*/
function preExecute(context) {
// Validate skill invocation context
if (!context || typeof context !== 'object') {
return { allow: true, message: 'state-management-expert: no context to validate' };
}
return { allow: true };
}
module.exports = { preExecute };
state-management-expert Research Requirements
Generated: 2026-02-28
Skill Description
State management expert including MobX, Redux, Zustand, and reactive patterns
Research Areas
- Current best practices for state-management-expert
- Industry standards and tooling
- Integration patterns
Source References
- To be populated by skill-updater research phase
state-management-expert Rules
Purpose
State management expert including MobX, Redux, Zustand, and reactive patterns
Best Practices
- Follow domain-specific conventions
- Apply patterns consistently
- Prioritize type safety and testing
Integration Points
See SKILL.md for complete documentation.
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "state-management-expertInput",
"description": "Input schema for State management expert including MobX, Redux, Zustand, and reactive patterns",
"type": "object",
"additionalProperties": true,
"properties": {
"target": {
"type": "string",
"description": "Target file or path for the skill to operate on"
},
"options": {
"type": "object",
"description": "Additional options for skill execution",
"additionalProperties": true
}
}
}
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "state-management-expertOutput",
"type": "object",
"additionalProperties": true,
"properties": {
"ok": {
"type": "boolean"
},
"summary": {
"type": "string"
}
}
}
#!/usr/bin/env node
/**
* state-management-expert - Consolidated Expert Skill
* Consolidates 11 individual skills
*/
const fs = require('fs');
const path = require('path');
const args = process.argv.slice(2);
if (args.includes('--help')) {
console.log(`
state-management-expert - Expert Skill
Usage:
node main.cjs --list List consolidated skills
node main.cjs --help Show this help
Description:
State management expert including MobX, Redux, Zustand, and reactive patterns
Consolidated from: 11 skills
`);
process.exit(0);
}
if (args.includes('--list')) {
console.log('Consolidated skills:');
[
'mobx-best-practices',
'mobx-dependency-injection',
'mobx-devtools',
'mobx-react-lite-usage',
'mobx-reaction-usage',
'mobx-store-implementation',
'mobx-strict-mode',
'redux-async-actions',
'redux-devtools-debugging',
'redux-folder-structure',
'redux-toolkit-best-practices',
].forEach(s => console.log(' - ' + s));
process.exit(0);
}
console.log('state-management-expert skill loaded. Use with Claude for expert guidance.');
state-management-expert Implementation Template
Goal
- Define target outcome and acceptance criteria.
TDD
1. Red 2. Green 3. Refactor
Verification
- lint
- format
- targeted tests