What problem does it solve? Inconsistent date handling in TypeScript projects leads to fragile custom helpers, manual calculations, and subtle bugs around formatting, arithmetic, and timezones. This Skill enforces a single, well-tested approach for all date operations. ## Core Features & Use Cases - Standardized Library Usage: Directs all date operations to date-fns instead of ad-hoc helpers or manual calculations. - Documentation Guidance: Points to the official date-fns documentation when behavior is unclear, reducing guesswork. - Use Case: When adding a feature that computes a subscription renewal date or formats timestamps in a TanStack Start app, use date-fns functions like addDays or format rather than writing custom date math. ## Quick Start Ask the AI to implement or refactor date logic in your TypeScript code using date-fns instead of custom helpers.