What problem does it solve? Quarter-to-date reporting requires computing the current quarter's start date and today's date correctly, which is error-prone when done by hand across timezones and quarter boundaries. This Skill resolves "thisQuarter" into concrete, ready-to-use date bounds. ## Core Features & Use Cases - Quarter-to-Date Resolution: Returns the current quarter's start date through today as inclusive civil dates (YYYY-MM-DD) in your local timezone. - UTC Instant Output: Provides the same window as a half-open [start, end) range of exact UTC instants for timestamp-based database queries. - Read-Only Operation: Performs no writes and no network calls, making it safe to run before any QTD metrics task. - Use Case: Before pulling "this quarter's" sales figures from a database, run the resolver to get exact start and end timestamps for your SQL WHERE clause instead of computing dates manually. ## Quick Start Ask the AI to resolve this quarter's date range using the thisQuarter skill before running a quarter-to-date metrics query.