Agent Skills: TypeScript Refactor Best Practices

TypeScript refactoring and modernization guidelines from a principal specialist perspective. This skill should be used when refactoring, reviewing, or modernizing TypeScript code to ensure type safety, compiler performance, and idiomatic patterns. Triggers on tasks involving TypeScript type architecture, narrowing, generics, error handling, or migration to modern TypeScript features.

UncategorizedID: pproenca/dot-skills/typescript-refactor

Install this agent skill to your local

pnpm dlx add-skill https://github.com/pproenca/dot-skills/tree/HEAD/skills/.experimental/typescript-refactor

Skill Files

Browse the full folder contents for typescript-refactor.

Download Skill

Loading file tree…

skills/.experimental/typescript-refactor/SKILL.md

Skill Metadata

Name
typescript-refactor
Description
TypeScript and TSX refactoring and modernization guidelines from a principal specialist perspective, current to TypeScript 6.0 and React 19. This skill should be used when refactoring, reviewing, or modernizing TypeScript or React/TSX code for type safety, compiler performance, and idiomatic patterns. Triggers on tasks involving type architecture, narrowing, generics, discriminated unions, error handling, React component and hook typing, or migration to modern TypeScript features (satisfies, using, const type parameters, inferred type predicates, isolatedDeclarations, erasable syntax, import attributes).

TypeScript Refactor Best Practices

Comprehensive TypeScript and TSX refactoring and modernization guide designed for AI agents and LLMs. Contains 47 rules across 9 categories, prioritized by impact to guide automated refactoring, code review, and code generation. Current to TypeScript 6.0 and React 19.

When to Apply

Reference these guidelines when:

  • Refactoring TypeScript or React/TSX code for type safety and maintainability
  • Designing type architectures (discriminated unions, branded types, generics)
  • Narrowing types to eliminate unsafe as casts
  • Typing React components and hooks (props, refs, events, state) in .tsx files
  • Adopting modern TypeScript 5.x–6.0 features (satisfies, using, const type parameters, inferred type predicates, erasable syntax, with import attributes)
  • Optimizing compiler performance in large codebases (isolatedDeclarations, project references)
  • Implementing type-safe error handling patterns
  • Reviewing code for TypeScript quirks and pitfalls

Rule Categories by Priority

| Priority | Category | Impact | Prefix | |----------|----------|--------|--------| | 1 | Type Architecture | CRITICAL | arch- | | 2 | Type Narrowing & Guards | CRITICAL | narrow- | | 3 | Modern TypeScript | HIGH | modern- | | 4 | React & TSX | HIGH | tsx- | | 5 | Generic Patterns | HIGH | generic- | | 6 | Compiler Performance | MEDIUM-HIGH | compile- | | 7 | Error Safety | MEDIUM | error- | | 8 | Runtime Patterns | MEDIUM | perf- | | 9 | Quirks & Pitfalls | LOW-MEDIUM | quirk- |

Quick Reference

1. Type Architecture (CRITICAL)

2. Type Narrowing & Guards (CRITICAL)

3. Modern TypeScript (HIGH)

4. React & TSX (HIGH)

5. Generic Patterns (HIGH)

6. Compiler Performance (MEDIUM-HIGH)

7. Error Safety (MEDIUM)

8. Runtime Patterns (MEDIUM)

9. Quirks & Pitfalls (LOW-MEDIUM)

How to Use

Read individual reference files for detailed explanations and code examples:

Reference Files

| File | Description | |------|-------------| | references/_sections.md | Category definitions and ordering | | assets/templates/_template.md | Template for new rules | | metadata.json | Version and reference information |