skills/smithery.ai/typescript-strict

typescript-strict

SKILL.md

TypeScript Strict Mode

Core Rules

  1. No any - ever. Use unknown if type is truly unknown
  2. No type assertions (as Type) without justification
  3. Prefer type over interface for data structures
  4. Reserve interface for behavior contracts only

Type vs Interface

type — for data structures

Installs
11
First Seen
Mar 6, 2026