CTCL gives heterogeneous agents, simulators and persistent AI a verified common reference instant — without sharing a clock, calendar, or epoch. Same instant, different representations.
A verified instant many parties can point at, with source and uncertainty — not a metaphysical absolute time, a protocol-level shared reference.
Precision-preserving conversion across Unix, UTC, timezones and custom world clocks. Different clocks, explicit transforms, no hidden semantics.
The edge clock is millisecond-grade, so we say so. The ns fields are format-padding; precision is not accuracy.
An agent reads /ai/ctcl.json to discover the API, then calls the endpoints. Get a verified instant:
curl -s https://commoninstant.org/v1/now
Register a shared instant so another agent (or your next session) can align on the exact same point:
curl -s https://commoninstant.org/v1/instants -H 'content-type: application/json' -d '{"label":"handoff"}'
# -> { "id": "ctcl:instant:…" } then any agent:
curl -s https://commoninstant.org/v1/instant/ctcl:instant:…
Convert a Unix nanosecond value into Taipei time (precision preserved):
curl -s https://commoninstant.org/v1/convert -H 'content-type: application/json' -d '{
"input": {"value":"1783420000.123456789","encoding":"unix_s"},
"output": {"encoding":"rfc3339","timezone":"Asia/Taipei"}
}'
Or skip REST entirely and connect an MCP client to https://commoninstant.org/mcp (stateless Streamable HTTP) — the same 10 tools, reachable directly.
Convert a Unix-seconds value into an RFC3339 timestamp for a timezone.
…
CTCL's core demonstration: the same common instant, projected into several temporal systems at once — timezones, timescales, and (soon) any custom world clock you register.
…
Proactively check whether a local time is safe — DST gap (nonexistent), fold (ambiguous), or normal. Unlike /v1/convert, this never errors — it always returns a status. The default below is 2026's US Eastern spring-forward gap (02:30 doesn't exist).
…
Does "CST" mean US Central Time or China Standard Time? CTCL never silently decides for you — it returns candidates with confidence, not a guess.
…
Solve for the best shared instant in the next 7 days that satisfies "Taipei work hours, avoid a maintenance window, at least an hour of lead time" — not a full meeting-scheduler, a demonstration of CTCL-native constraint solving.
…