type-safety
Installation
SKILL.md
Type Safety Fixes
Fixes for TypeScript's strict type checking violations. These issues represent real runtime risks where the type system cannot guarantee correctness.
Quick Start
- Identify the unsafe operation type (member access, assignment, return, call, argument)
- Trace the
anyorunknowntype to its source - Apply the appropriate fix pattern from the workflows below
- Verify with
npx tsc --noEmit
Priority
P1 - Fix this week. Unsafe type operations bypass TypeScript's guarantees and can cause runtime crashes.