datetime
Installation
SKILL.md
DateTime Natural Language Parser
Parse natural language date and time expressions using GNU date command (native Linux utility).
IMPORTANT: For Claude Code
DO NOT invoke slash commands (/datetime:parse, /datetime:now, /datetime:calc) - those are for users only.
Instead, use the date command directly via the Bash tool:
# Get current date/time
date '+%Y-%m-%d %H:%M:%S (%A)'
# Parse natural language
date -d "tomorrow" '+%Y-%m-%d %H:%M:%S (%A)'
date -d "next monday at 9am" '+%Y-%m-%d %H:%M:%S (%A)'
date -d "3 days" '+%Y-%m-%d %H:%M:%S (%A)'