skills/smithery.ai/typescript-strict

typescript-strict

Installation
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
15
First Seen
Mar 6, 2026
typescript-strict from smithery.ai