← ClaudeAtlas

world_clocklisted

Get current time in any timezone and convert times between locations. Use when user asks about time in different cities, timezone conversions, or scheduling across timezones.
tanveerkhan2005/custom-agent-with-skills · ★ 2 · AI & Automation · score 68
Install: claude install-skill tanveerkhan2005/custom-agent-with-skills
# World Clock Skill Get the current time anywhere in the world and convert times between timezones. Useful for scheduling across timezones, checking times in other cities, and handling daylight saving time. ## When to Use - User asks "What time is it in [city]?" - User needs to convert time between timezones - User is scheduling a meeting across timezones - User asks about daylight saving time - User asks when business hours start/end in another timezone ## Available Operations 1. **Current Time**: Get the current time in any timezone 2. **Time Conversion**: Convert a specific time from one timezone to another 3. **DST Information**: Check if a location is currently in daylight saving time 4. **Multiple Timezones**: Show current time in several locations at once ## Instructions When a user asks about time or timezones: ### Step 1: Identify the Request Type - **Current time query**: "What time is it in Tokyo?" - **Conversion query**: "If it's 3pm in New York, what time is it in London?" - **Scheduling query**: "When should I schedule a call for 9am PST for someone in Berlin?" ### Step 2: Get Timezone Identifier Use the WorldTimeAPI with the appropriate timezone identifier. **API Endpoint:** ``` https://worldtimeapi.org/api/timezone/{Area}/{Location} ``` ### Step 3: Make the API Call **Example - Get Tokyo time:** ``` https://worldtimeapi.org/api/timezone/Asia/Tokyo ``` **Example - Get New York time:** ``` https://worldtimeapi.org/api/timezone/America/New_York ```