Why It Exists
Real coordination requires a better time model.
One of the core arguments behind Rheba is that most scheduling software still models time for machines better than for people. That critique matters because coordination software is only as strong as the time model underneath it.
With Rheba Core and the full suite now live, we did not want to stop at the argument. So we built part of the alternative.
The Rheba date-time library is a developer-facing infrastructure layer shaped by the same thinking behind Rheba's broader availability thesis. It exists because real coordination requires a better way to preserve human intent across time, place, recurrence, and shared commitments.
How It Works
Time stored as human intent, not epoch seconds.
import { combineRDateAndRTime, dateToRDate, militaryToRTime } from '@rheba/time';
// Store human intent directly
const rDate = dateToRDate(new Date('2026-04-25')); // April 25, 2026
const rTime = militaryToRTime(1400); // 2:00 PM
const rnqh = combineRDateAndRTime(rDate, rTime); // April 25 at 2:00 PM
// Intent is preserved first.
// Conversion happens later, when explicitly needed.What this preserves
- calendar intent
- local meaning before conversion
- repeatable recurrence behavior
- cleaner coordination across systems
Why developers should care
This is not a cosmetic date helper. It is one layer of the time model behind Rheba's broader availability and coordination architecture.
Connection To Core
Not a random utility release. Proof of architecture.
The Rheba date-time library is not an isolated side project. It is one of the infrastructure layers behind Rheba Core. For developers, this is a direct entry point into the architecture behind the broader availability network.
For everyone else, it is proof that the company is not just publishing ideas about broken coordination systems. It is building the infrastructure needed to replace them.
Proof of Architecture
The library comes from the same architecture behind Rheba's broader availability network.
Proof of Seriousness
Working infrastructure, not a whitepaper. The system is live and the library is real.
Proof of Direction
If you want to understand where Rheba is going, look at the time model.
Get Started
Explore how this connects to Rheba Core.
The suite shows applied value. The library shows underlying infrastructure. Together they express the same logic: real coordination requires a system that preserves human intent more truthfully.