What problem does it solve? Manually computing the current week's date range is error-prone, especially across timezones and week boundaries. This Skill resolves "thisWeek" to a concrete Monday-to-today date range so week-to-date queries use correct, consistent bounds. ## Core Features & Use Cases - Deterministic Date Resolution: Runs a bundled Node.js resolver that returns inclusive civil dates (start/end) plus exact UTC instants (startUtc/endExclusiveUtc) as a half-open range. - Structured JSON Output: Returns days, timezone, and asOf fields alongside the date range for timestamp-based queries. - Read-Only Operation: Performs no writes and no network calls, making it safe to run before any week-to-date task. - Use Case: Before generating a weekly standup summary or querying this week's activity logs, run the resolver to get exact time bounds instead of deriving dates by hand. ## Quick Start Ask the assistant to resolve this week's date range using the thisWeek skill before running a week-to-date activity query.