reviewing-type-safety

Installation
SKILL.md

TypeScript Type Safety Review

Purpose: Comprehensive type safety review for TypeScript code, detecting violations that compromise compile-time safety and runtime reliability.

When to use: During code review process, invoked by review plugin to validate TypeScript type safety across the codebase.

Exported for: Cross-cutting review plugin that orchestrates multi-concern reviews.

Review Checklist

When reviewing TypeScript code, systematically check for these type safety violations:

1. any Type Abuse

Check for:

  • Generic defaults using any: <T = any>
  • Function parameters typed as any: function process(data: any)
  • Return types using any: ): any {
  • Array or object types with any: any[], Record<string, any>
Related skills
Installs
4
First Seen
Feb 4, 2026