Token导航 LogoToken导航TokenDH.com
研究检索只读github未标认证来源可访问clear审计通过

timezone-tools时区工具

Agent Skill

timezone-tools 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

259

周安装

11

GitHub Stars

52

下载量

91
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:timezone-tools(时区工具)
来源仓库:https://github.com/henkisdabro/wookstar-claude-code-plugins
仓库路径:skills/timezone-tools
安装命令:
npx skills add https://github.com/henkisdabro/wookstar-claude-code-plugins --skill timezone-tools
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/henkisdabro/wookstar-claude-code-plugins --skill timezone-tools

简介

timezone-tools 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。

  • 适用于时区转换、全球时间协调和国际会议安排等研究检索任务。
  • 通过安装命令 npx skills add https://github.com/henkisdabro/wookstar-claude-code-plugins --skill timezone-tools 从 GitHub 仓库安装使用。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写操作。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Timezone Tools

Get current time in any timezone and convert times between different timezones using IANA timezone database.

Quick Start

Get current time in a timezone

python scripts/get_time.py" "America/New_York"

Convert time between timezones

python scripts/convert_time.py" "America/New_York" "14:30" "Australia/Perth"

Search for timezone names

python scripts/list_timezones.py" "perth"

Instructions

When the user asks about time or timezones:

  1. For current time queries (e.g., "What time is it in Tokyo?"):

- Use scripts/get_time.py with IANA timezone name - If unsure of timezone name, search first with list_timezones.py - Script outputs: timezone, datetime, day of week, DST status

  1. For time conversions (e.g., "What's 2pm EST in Perth time?"):

- Use scripts/convert_time.py with source timezone, time (HH:MM 24-hour), target timezone - Script shows source time, target time, and time difference - Automatically handles DST changes

  1. For timezone searches:

- Use scripts/list_timezones.py with city/country name - Returns matching IANA timezone names

Common Timezones Reference

For quick reference, see data/common_timezones.json which includes major cities worldwide, with Perth prominently featured.

User's local timezone: The scripts automatically detect your local timezone using tzlocal.

Examples

Example 1: Current time query

User: "What time is it in Perth?"

python scripts/list_timezones.py" "perth"
# Output: Australia/Perth

python scripts/get_time.py" "Australia/Perth"
# Output:
# Timezone: Australia/Perth
# Current time: 2025-11-07T15:30:45
# Day: Thursday
# DST: No

Example 2: Time conversion

User: "I have a meeting at 2pm New York time, what time is that in Perth?"

python scripts/convert_time.py" "America/New_York" "14:00" "Australia/Perth"
# Output:
# Source: America/New_York - 2025-11-07T14:00:00 (Thursday, DST: No)
# Target: Australia/Perth - 2025-11-08T03:00:00 (Friday, DST: No)
# Time difference: +13.0h

Example 3: Multiple timezone search

User: "What are the timezone codes for London, Tokyo, and Sydney?"

python scripts/list_timezones.py" "london"
python scripts/list_timezones.py" "tokyo"
python scripts/list_timezones.py" "sydney"
# Outputs:
# Europe/London
# Asia/Tokyo
# Australia/Sydney

Time Format

  • All times use 24-hour format (HH:MM): 14:30 not 2:30 PM
  • ISO 8601 datetime format for output: 2025-11-07T14:30:45
  • IANA timezone names (e.g., America/New_York, not EST)

Troubleshooting

"Invalid timezone" error

  • Use IANA timezone names: America/New_York not EST or Eastern
  • Search with list_timezones.py if unsure
  • Check data/common_timezones.json for reference

"Invalid time format" error

  • Use 24-hour format: 14:30 not 2:30 PM
  • Format must be HH:MM with colon separator

Missing dependencies

Install required Python packages:

pip install tzlocal

Dependencies

  • Python 3.9+
  • tzlocal>=5.0 - for local timezone detection
  • zoneinfo - built-in Python 3.9+ (IANA timezone database)

Notes

  • Scripts automatically handle Daylight Saving Time (DST)
  • Local timezone is auto-detected from system
  • All timezone data uses IANA Time Zone Database
  • Perth, Australia timezone: Australia/Perth (UTC+8, no DST)

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenCode

30.17%
按下载量换算27

Claude Code

23.8%
按下载量换算22

Codex

16.72%
按下载量换算15

Cursor

11.63%
按下载量换算11

mcpjam

8.02%
按下载量换算7

command-code

3.44%
按下载量换算3

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills