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

  1. Identify the unsafe operation type (member access, assignment, return, call, argument)
  2. Trace the any or unknown type to its source
  3. Apply the appropriate fix pattern from the workflows below
  4. Verify with npx tsc --noEmit

Priority

P1 - Fix this week. Unsafe type operations bypass TypeScript's guarantees and can cause runtime crashes.

Workflows

Unsafe Member Access (#2 - 316 occurrences)

Related skills
Installs
1
GitHub Stars
4
First Seen
Mar 29, 2026