1---2name: react-performance3description: What I do4---5## What I do67Je fournis des règles de performance pragmatiques :8- memoization sur besoin9- virtualisation pour grandes listes10- stabilité des props1112## Decision checklist13Memoize seulement si au moins un de ces points est vrai :14- rendu coûteux15- liste volumineuse16- composant memoïsable (pur)17- callbacks stables nécessaires1819## Examples2021```ts22const derived = useMemo(() => heavy(users), [users]);23const onSelect = useCallback((id: string) => setId(id), []);24```2526## Don’t27- "optimiser" avant d'avoir un problème mesurable.
Run npx skillmds@latest add oalkabouss/react-performance in your terminal (requires Node.js), paste this page's agent-chat prompt into Claude, Cursor, or any MCP-connected agent, or download the SKILL.md file and copy it into your agent's skills directory.
What I do It is listed under Web & Frontend on SkillMD.
This skill has not completed SkillMD's automated safety review yet. SkillMD never runs a skill's scripts for you; review the SKILL.md before installing.
This skill is tagged as working with Claude Code, Claude.ai, OpenAI Codex. SKILL.md is an open format, so most agents that read a skills directory can load it too.
Yes. Installing skills from SkillMD is free, and the skill stays under its author's original license.
oalkabouss (@oalkabouss) published this skill. Their other Agent Skills are listed on their SkillMD profile.