Install
openclaw skills install check-workday-cnDetermine whether today (or a given date) is a working day in mainland China by querying holiday-cn yearly JSON from jsDelivr and applying holiday/makeup-wor...
openclaw skills install check-workday-cnCheck whether today is a workday with official holiday override data from:
https://cdn.jsdelivr.net/gh/NateScarlet/holiday-cn@master/{year}.json
python3 scripts/check_today_workday.py.is_workday from output.days[], use isOffDay directly (false => workday, true => off day).days[], fall back to weekday rule (Mon-Fri workday, Sat-Sun off day).Use today in Asia/Shanghai:
python3 scripts/check_today_workday.py
Check specific date:
python3 scripts/check_today_workday.py --date 2026-02-15
Machine-readable output:
python3 scripts/check_today_workday.py --json
Always return:
is_workday booleanholiday override or weekday fallback)