LaunchKit · 2026
Back to Skills

cst-time

Provides methods and tools for obtaining local host CST (China Standard Time)

0
624 downloads
by @xuanpass

Setup & Installation

openclaw skills install @xuanpass/cst-time

Or with the ClawHub CLI, for registry-managed skill folders outside a full OpenClaw workspace:

npx clawhub install cst-time

What This Skill Does

Covers methods for obtaining and working with China Standard Time (CST, UTC+8) across Windows, Linux, macOS, and multiple programming languages including Python, JavaScript, Java, Go, and C#. Includes time zone conversion formulas, formatting patterns, and scheduling examples. CST does not observe daylight saving time, which simplifies year-round handling.

Because CST does not observe daylight saving time, using the Asia/Shanghai IANA identifier works reliably year-round without the seasonal offset adjustments that cause bugs with many other timezone conversions.

When to use it

  • Scheduling a cron job to fire at 9 AM Beijing business hours
  • Logging distributed server events with consistent CST timestamps
  • Converting user-submitted timestamps from EST or PST to CST
  • Displaying a live CST clock in a web application for Chinese users
  • Syncing API calls with Chinese market operating hours

Example Workflow

Here's how your AI assistant might use this skill in practice.

INPUT

User asks: Get the current time in China Standard Time using Python

AGENT
  1. 1Import pytz and datetime libraries
  2. 2Create a timezone object using 'Asia/Shanghai'
  3. 3Call datetime.now() with the CST timezone applied
  4. 4Format the result as YYYY-MM-DD HH:mm:ss
  5. 5Print the formatted CST timestamp
OUTPUT

A Python snippet that prints the current CST time, e.g. '2026-03-19 14:30:00'

Requirements

Accounts, API keys, or tools you or your AI assistant may need to set up while using this skill.

TimezoneDB API key (required only for TimezoneDB online API method)Google Maps API key (required only for Google Maps Time Zone API method)