Matt Pocock's personal .claude directory — opinionated TypeScript, testing, and workflow skills straight from a TS OG.
Matt Pocock (TypeScript educator, creator of Total TypeScript) published his personal Claude Code skills directory. Includes TS-specific patterns, testing philosophy, refactoring patterns, and workflow opinions. Not a generic bundle — it's one engineer's actual setup.
Use mattpocock/ts-review. Scan /src and list every any, every unsafe cast, every type hole. Group by file.✓ Copied
→ Itemized findings, not a summary
Fix with principles
Fix the top 20, narrowest fix per case. Respect Matt's "prefer inference" rule — don't explicit-annotate what TS can infer.✓ Copied
→ Minimal diffs, type-safety gained
Check
Run tsc --noEmit. Any regressions?✓ Copied
→ Clean compile or precisely-scoped remaining items
Outcome: A measurably more type-safe codebase following a principled methodology.
Pitfalls
Skill applies Matt's opinions where your team disagrees (e.g. interface vs type) — Override with "skip the interface-vs-type conversion, keep existing style"