Content Type
Static (Markdown)
Trigger Keywords
current datecurrent timenowtodaycurrent datetimetimezoneutcclocktime nowdate now
Instructions Preview
# Current Date and Time Skill
Use this skill whenever a user asks about “right now”, “today”, or the current date/time.
The goal is to return a **precise, unambiguous representation of the current date and time**, including timezone information, and to make it safe to use for follow-up calculations or logging.
---
## 1. Choose a Single Source of Truth for “Now”
When determining the current date/time:
1. Prefer a concrete value provided by the **environment or tools**, for example:
- A dedicated time tool such as `get_current_time`
- A `current_datetime`, `current_time`, or `current_date` field in the prompt or metadata
- An explicit timestamp supplied by the user
2. Treat that value as the **single source of truth** for all relative calculations in the conversation.
3. Never fabricate the current time if a trusted source is available. If you cannot access any reliable current time, explain the limitation instead of guessing.
---
## 2. Using a Time Tool (e.g. `get_curre...