typescript-excellence

Installation
SKILL.md

TypeScript Excellence

Type-safe, maintainable TypeScript with modern toolchain.

Type Safety

Never use any. Alternatives:

// Unknown for external data
function parse(input: unknown): User { ... }

// Union for specific options
type Status = 'loading' | 'success' | 'error';

// Generics for reusable code
function first<T>(arr: T[]): T | undefined { ... }
Installs
24
GitHub Stars
10
First Seen
Jan 27, 2026
typescript-excellence — phrazzld/claude-config