Install
openclaw skills install china-holiday-calendar-syncDiscover and parse China's official holiday notices from gov.cn, normalize holiday and adjusted-workday rows, and apply low-frequency probing rules for future years. Use when Codex needs to build or explain a China business calendar, sync official holiday schedules into storage, determine the first workday of a week, or implement holiday-aware weekly sending logic.
openclaw skills install china-holiday-calendar-syncUse only official gov.cn holiday notices as the source of truth for China holiday and adjusted-workday schedules.
Keep the workflow conservative:
notice_urls first.Load configured notice URLs.
Discover missing future-year notices carefully.
国务院办公厅关于<year>年部分节假日安排的通知.https://www.gov.cn/zhengce/content/... candidate pages.Throttle discovery.
Parse official notice content.
1月1日至3日.1月4日(周日)上班.date, is_holiday, is_workday, holiday_name, and source_url.Persist two layers separately.
notice_urlsdiscovery_cacheNormalize notice parsing results into a shape close to:
{
"date": "2026-10-08",
"is_holiday": false,
"is_workday": true,
"holiday_name": "国庆节调休上班",
"source_url": "https://www.gov.cn/zhengce/content/202511/content_7047090.htm"
}