typescript-type-safety
Installation
SKILL.md
TypeScript Type Safety
Patterns for avoiding common TypeScript errors, proper type definitions, and early type checking workflows. Prevents 50-60% of compilation errors.
Overview
Problem: TypeScript errors discovered late, requiring 3-5 fix cycles
Solution: Early type checking, proper type definitions, and systematic error prevention
Impact: Reduce fix cycles from 3-5 to 1-2, save 30-60 seconds per task
Early Type Checking Workflow
Immediate Validation
Run type-check immediately after code changes: