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

export type User = {
  readonly id: string;
  readonly email: string;
Related skills
Installs
10
GitHub Stars
648
First Seen
Jan 20, 2026