react-code-implementer

Installation
SKILL.md

React Code Implementation

Component Implementation

Default Approach

  • Start with Server Components by default
  • Add 'use client' only when needed
  • Use TypeScript for all components
  • Define prop types with interfaces
  • Export component as named export

Server Components

// components/UserProfile.tsx
interface UserProfileProps {
  userId: string;
}
Related skills

More from masanao-ohba/claude-manifests

Installs
10
GitHub Stars
2
First Seen
Jan 29, 2026