Time and timezone utilities for getting current time and converting between timezones. Use when: (1) Getting current time in any timezone, (2) Converting time between different timezones, (3) Working with IANA timezone names, (4) Scheduling across timezones, (5) Time-sensitive operations. Triggers: "what time is it", "current time", "convert time", "timezone", "time in [city]".
Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.
Claude CodeNot declared
CursorNot declared
CodexNot declared
GitHub CopilotNot declared
WindsurfNot declared
Gemini CLINot declared
ClineNot declared
OpenCodeNot declared
Package contents
Files included with this skill beyond the listing page.
skill mdSKILL.md3,083 B
docsSUMMARY.md392 B
History
First seen on skills.sh
First recorded snapshot · 3 installs
SKILL.md
Time
Time and timezone conversion utilities. Standalone CLI only (no MCP dependency).
Execution Methods
Run scripts/time_cli.py via Bash:
# Prerequisites: pip install pytz (or use Python 3.9+ with zoneinfo)
# Get current time in a timezone
python scripts/time_cli.py get --timezone "Asia/Shanghai"
python scripts/time_cli.py get --timezone "America/New_York"
python scripts/time_cli.py get # Uses system timezone
# Convert time between timezones
python scripts/time_cli.py convert \
--time "16:30" \
--from "America/New_York" \
--to "Asia/Tokyo"
# List available timezones
python scripts/time_cli.py list [--filter "Asia"]
Tool Capability Matrix
Tool
Parameters
Output
getcurrenttime
timezone (required, IANA name)
{timezone, datetime, is_dst}
convert_time
sourcetimezone, time (HH:MM), targettimezone
{source, target, time_difference}
Common IANA Timezone Names
Region
Timezone
China
Asia/Shanghai
Japan
Asia/Tokyo
Korea
Asia/Seoul
US East
America/New_York
US West
America/Los_Angeles
UK
Europe/London
Germany
Europe/Berlin
France
Europe/Paris
Australia
Australia/Sydney
UTC
UTC
Workflow
Getting Current Time
Identify target timezone (use IANA name)
Call getcurrenttime with timezone parameter
Response includes ISO 8601 datetime and DST status
Converting Time
Identify source timezone and time (24-hour format HH:MM)