typescript-type-safety

Installation
SKILL.md

TypeScript Type Safety

CRITICAL: Never use any type - it defeats TypeScript's purpose.

Rules

  1. Use proper types for all data structures
  2. Use unknown for truly unknown data, then narrow with type guards
  3. Use type assertions sparingly and only when verified
  4. Enable strict mode in tsconfig.json

Error Handling

Installs
Repository
smithery/ai
First Seen
typescript-type-safety — smithery/ai