frontend-typescript-rules

Installation
SKILL.md

TypeScript Development Rules (Frontend)

Frontend-Specific Anti-patterns

In addition to universal anti-patterns, watch for these Frontend-specific issues:

  • Prop drilling through 3+ levels - Should use Context API or state management
  • Massive components (300+ lines) - Split into smaller components

Type Safety in Frontend Implementation

Type Safety in Data Flow

  • Frontend -> Backend: Props/State (Type Guaranteed) -> API Request (Serialization)
  • Backend -> Frontend: API Response (unknown) -> Type Guard -> State (Type Guaranteed)
Related skills
Installs
4
GitHub Stars
205
First Seen
Mar 14, 2026