Epoch Time Converter
/install epoch-time-converter
Epoch Time Converter
Overview
Two-way conversion between Unix epoch timestamps and human-readable datetimes, with explicit timezone handling. Backed by a single self-contained Python script that uses only the standard library (datetime, zoneinfo).
Quick start
# Epoch seconds -> human time in a given timezone
python3 scripts/epoch.py to-date 1700000000 --tz Asia/Shanghai
# -> 2023-11-15 06:13:20 +08:00 (Asia/Shanghai)
# Epoch milliseconds -> human time
python3 scripts/epoch.py to-date 1700000000000 --unit ms --tz UTC
# Human time -> epoch seconds (input timezone is required)
python3 scripts/epoch.py to-epoch "2023-11-15 06:13:20" --tz Asia/Shanghai
# -> 1700000000
# Human time -> epoch milliseconds
python3 scripts/epoch.py to-epoch "2023-11-15T06:13:20" --tz Asia/Shanghai --unit ms
Decision tree
- Input is purely numeric → use
to-date.- 10 digits →
--unit s(default). - 13 digits →
--unit ms.
- 10 digits →
- Input looks like a date/time string → use
to-epochand require--tz. - If the user did not specify a timezone for
to-date, default to UTC and explicitly tell them which timezone you used.
Output format
Both subcommands print one line: \x3Cvalue> (\x3Ccontext>). Always echo this raw output back to the user, then add a one-line plain-language summary.
Edge cases to watch
- Bare numbers without a unit hint: prefer length-based detection (10 vs 13 digits) over guessing.
- Strings without timezone offsets (e.g.
2024-01-01 09:00) are interpreted in the--tzvalue; do not silently fall back to system local time. - Negative epoch values (pre-1970) are supported.
Resources
scripts/
epoch.py— CLI implementingto-dateandto-epoch. Pure stdlib; runs on any Python 3.9+.
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install epoch-time-converter - After installation, invoke the skill by name or use
/epoch-time-converter - Provide required inputs per the skill's parameter spec and get structured output
What is Epoch Time Converter?
Convert between Unix epoch timestamps (seconds or milliseconds) and human-readable date strings in any IANA timezone. Use when the user provides a number tha... It is an AI Agent Skill for Claude Code / OpenClaw, with 44 downloads so far.
How do I install Epoch Time Converter?
Run "/install epoch-time-converter" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is Epoch Time Converter free?
Yes, Epoch Time Converter is completely free, licensed under MIT-0. You can download, install and use it at no cost.
Which platforms does Epoch Time Converter support?
Epoch Time Converter is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created Epoch Time Converter?
It is built and maintained by terrycarter1985 (@terrycarter1985); the current version is v0.1.0.