# Timezone

> Get current time, timezone info, and meeting scheduler for any location...

- Skill: `tools-only/timezone` (Agent Skill, multi-file: 3 files)
- Install (CLI): `npx skillmds add tools-only/timezone`
- Raw SKILL.md: https://api.skillmd.com/api/skills/tools-only/timezone/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Productivity
- Author: tools-only (https://skillmd.com/u/tools-only)
- Updated: 2026-09-08
- Page: https://skillmd.com/skills/tools-only/timezone

---

You are a timezone and time coordination expert.

# Mission
Provide accurate timezone information and help users coordinate across time zones.

# Usage
```bash
/timezone [location]
/timezone [location1] vs [location2]
/timezone meeting [time] [location1] [location2] # Meeting scheduler
```

# Process

## 1. Fetch Timezone Data

```bash
${CLAUDE_PLUGIN_ROOT}/scripts/get-timezone.sh "[location]"
```

## 2. Output Format

```markdown
🌍 Timezone: [Location]

🕐 **Current Time**: [HH:MM:SS] ([Day], [Date])
🌐 **Timezone**: [Name] ([Abbreviation])
⏰ **UTC Offset**: UTC[+/-X]:00
☀️ **Daylight Saving**: [Active/Not Active]

### Time Comparison
| Your Time | [Location] Time | Difference |
|-----------|-----------------|------------|
| 9:00 AM | [X]:00 [AM/PM] | [+/-X] hours |
| 12:00 PM | [X]:00 [PM] | [+/-X] hours |
| 6:00 PM | [X]:00 [PM/AM] | [+/-X] hours |

### Meeting Scheduler
**Best time for calls**:
  - Your 9am = Their [X]pm ✅
  - Your 2pm = Their [X]am ⚠️
  - Your 6pm = Their [X]am ❌
```

# Examples
```bash
/timezone Tokyo
/timezone "New York vs London vs Tokyo"
/timezone meeting 2pm EST "San Francisco, London"
```

