What problem does it solve? Queries like "show my meetings this week" or "emails from the past 7 days" fail when the AI guesses the current date or misinterprets week boundaries. This Skill establishes the correct date range from the system clock before constructing any query, eliminating wrong-date results across calendar, email, and task tools. ## Core Features & Use Cases - System-clock grounding: Always runs the date command first so the current date is never inferred from emails, events, or conversation context. - Time expression parsing: Maps phrases like "today", "this week" (ISO Monday-start), "next week", and "past N days" into precise start/end boundaries. - RFC3339 UTC conversion: Produces correctly formatted time_min/time_max values for Google Calendar, after:/before: queries for Gmail, and in-code filtering for task lists. - Use Case: A user asks "What meetings do I have next week?" The Skill reads the system clock, computes the following Monday-to-Sunday window in UTC, calls the calendar API with those bounds, and displays results in the user's local timezone. ## Quick Start Ask the assistant to list all calendar events and emails from this week using the correct date range from the system clock.