Claude skill to verify dates, calculate days between dates, and look up holidays accurately.
SaferSkills independently audited calendar-accuracy (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Verify all date-related claims before including them in responses. Never guess dates or days of week—calendar calculations are error-prone for LLMs.
python scripts/date_calc.py weekday 2025-01-29python scripts/date_calc.py add today 30 dayspython scripts/date_calc.py diff today 2025-12-25python scripts/date_calc.py holidayspython scripts/date_calc.py holidays 2025 --country USpython scripts/date_calc.py range 2025-02-03 2025-02-09scripts/date_calc.py before responding# Full date information
python scripts/date_calc.py info 2025-01-29
# Add/subtract time
python scripts/date_calc.py add 2025-01-29 30 days
python scripts/date_calc.py add 2025-01-29 -2 weeks
python scripts/date_calc.py add 2025-01-29 3 months
# Difference between dates
python scripts/date_calc.py diff 2025-01-01 2025-12-31
# Date range listing
python scripts/date_calc.py range 2025-01-01 2025-01-07
# Holidays (defaults to current year, TW)
python scripts/date_calc.py holidays
python scripts/date_calc.py holidays 2025
python scripts/date_calc.py holidays --country US
python scripts/date_calc.py holidays 2025 --country JP
python scripts/date_calc.py holidays --country list # Show all supported countries
# Day of week only
python scripts/date_calc.py weekday "March 15, 2025"references/calendar_rules.md for leap year rules, holiday calculations, and verification methods~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.