Frontend TypeScript Types Skill Purpose : Guidance for creating TypeScript type definitions following existing patterns from . Overview All TypeScript types are defined in . Types match backend API response structure and provide type safety across the frontend application. Type Patterns from 1. User Types Pattern : - Use for object types - Mark optional fields with - Use for type inheritance - Use camelCase for frontend types (even if backend uses snake case) 2. Task Types Pattern : - Use for union types (string literals) - Use for object types - Match backend field names (snake case for API…