moadim 0.19.1

Loop engine for AI agents — routines over REST, MCP, and a built-in web UI
1
2
3
4
5
6
7
8
9
10
11
12
/// Atomic file writes (write temp + rename) so readers never observe a torn file.
pub mod atomic;
/// Cron expression normalization and validation, shared by routine scheduling.
pub mod cron;
/// Poison-tolerant locking for the in-memory stores.
pub mod lock;
/// Spawn child processes and reap them so triggers don't leak zombie (`<defunct>`) entries.
pub mod process;
/// Startup print printed to stdout when the server begins listening.
pub mod startup_print;
/// Unix timestamp utilities.
pub mod time;