react-core

Installation
SKILL.md

React Core Best Practices

Comprehensive React development guidelines with Vercel optimization patterns.

Instructions

1. Component Structure

// ✅ Max 200 lines per component
// ✅ Single responsibility

interface Props {
  user: User;
  onUpdate: (user: User) => void;
}
Installs
11
First Seen
Feb 3, 2026
react-core — alicoder001/agent-skills