Install
openclaw skills install chinese-holiday查询中国法定节假日、周末及调休安排,判断某日是否节假日或工作日,获取节假日日期及放假安排信息。
openclaw skills install chinese-holiday通过 Python 脚本从网络请求节假日数据,支持多 API 源自动切换。
# 查询单天
python3 scripts/holiday_check.py 2026-05-01
# 查询多天
python3 scripts/holiday_check.py 2026-01-01 2026-10-01
# JSON 格式输出
python3 scripts/holiday_check.py 2026-05-01 --json
| 类型 | 含义 |
|---|---|
| 工作日 | 需要上班(含调休补班) |
| 节假日 | 休息(含周末、法定节假日、调休放假) |
使用 timor.tech API 按年查询。所有 API 失败时,回退到基于星期几的判断。
⚠️ 不缓存本地数据,每次调用均从网络获取。