What problem does it solve? When a task is scoped to "today", computing the correct date range by hand is error-prone across timezones and daylight-saving boundaries. This Skill resolves "today" into exact civil dates and UTC instants so timestamp-based queries use a single source of truth. ## Core Features & Use Cases - Date Resolution: Runs a bundled Node.js resolver that returns inclusive local dates (start/end) plus a half-open UTC range (startUtc/endExclusiveUtc). - Temporal Context: Also reports the span in days, your timezone, and the resolution timestamp (asOf). - Read-Only Safety: Performs no writes and no network access, making it safe to run before any query. - Use Case: Before pulling today's application logs or metrics, run the resolver and use its UTC bounds as the time filter for your query instead of guessing dates. ## Quick Start Ask the assistant to resolve today's date range and use the returned UTC bounds to filter today's logs or metrics.