What problem does it solve? Inconsistent date, time, and number formatting across enterprise screens forces users to disambiguate ambiguous dates, do mental arithmetic on timestamps, and misread unaligned figures. This Skill supplies a single set of opinionated house rules so every temporal and numeric value is displayed consistently and unambiguously. ## Core Features & Use Cases - Disambiguated date formatting: Mandates the Jan 7, 2026 format, forbids numeric slash/hyphen dates outside focused inputs, and requires deriving values from Intl.DateTimeFormat rather than slicing toISOString() output. - Time zone and relative time rules: Defines when to state a time zone, when not to localize a time at all, and the one-week threshold for switching between relative (3 days ago) and absolute dates using Intl.RelativeTimeFormat. - Currency and numeric conventions: Right-alignment, fixed two-decimal precision, currency symbols in column headers, digit grouping via Intl.NumberFormat, accounting parentheses, and consistent precision down every column. - Use Case: While building a transactions table, an agent applies these rules to render Jun 24, 2026 dates, right-aligned $-in-header amounts with two decimals, and 5 minutes ago timestamps that switch to absolute dates after one week. ## Quick Start Apply the dates-and-currency house rules to format the dates, timestamps, and money columns in this transactions table.