skills/datetime/SKILL.md
Date and time utilities for getting current time, converting timezones, calculating durations, and formatting dates. Useful for scheduling and time-based operations.
npx skillsauth add sahiixx/moltworker datetimeInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Date and time operations for scheduling, timezone conversion, and duration calculations.
node /path/to/skills/datetime/scripts/now.js
node /path/to/skills/datetime/scripts/convert.js "2024-01-15 10:00" --from UTC --to "America/New_York"
node /path/to/skills/datetime/scripts/duration.js "2024-01-01" "2024-12-31"
Get current date and time information.
Usage:
node now.js [OPTIONS]
Options:
--timezone <tz> - Show time in specific timezone (default: local)--format <fmt> - Output format: iso, unix, human (default: human)--json - Output as JSON with all formatsConvert time between timezones.
Usage:
node convert.js <datetime> --from <tz> --to <tz>
Arguments:
<datetime> - Date/time to convert (ISO format or "YYYY-MM-DD HH:mm")--from <tz> - Source timezone (default: local)--to <tz> - Target timezone (required)Calculate duration between two dates.
Usage:
node duration.js <start> <end>
Options:
--unit <unit> - Output unit: auto, days, hours, minutes, secondsnode now.js --json
Output:
{
"local": "2024-01-15T10:30:00-05:00",
"utc": "2024-01-15T15:30:00Z",
"unix": 1705332600
}
node convert.js "2024-01-20 14:00" --from "America/Los_Angeles" --to "Europe/London"
Output: 2024-01-20 22:00 GMT
node duration.js "$(date +%Y-%m-%d)" "2024-12-31"
| Code | Name | |------|------| | UTC | Coordinated Universal Time | | America/New_York | Eastern Time | | America/Los_Angeles | Pacific Time | | Europe/London | GMT/BST | | Europe/Paris | Central European | | Asia/Tokyo | Japan Standard Time | | Asia/Shanghai | China Standard Time | | Australia/Sydney | Australian Eastern |
All outputs support ISO 8601 format:
2024-01-152024-01-15T10:30:002024-01-15T10:30:00-05:002024-01-15T15:30:00Zdevelopment
Modern web scraping with structured data extraction. Fetch web pages, extract content using CSS selectors, parse structured data (JSON-LD, Open Graph, meta tags), and handle pagination.
development
System monitoring and diagnostics. Get CPU, memory, disk, network stats, process information, environment details, and health checks for services and endpoints.
development
Persistent key-value storage for notes, reminders, and user preferences. Store and retrieve information across conversations using a simple JSON-based storage system.
tools
Make HTTP requests to external APIs. Supports GET, POST, PUT, DELETE with JSON and form data. Use for fetching data, calling APIs, and webhooks.