moadim 1.7.4

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
//! Build-time code generation: embedded UI HTML.

/// React `client/` build (copies its already-self-contained `vite-plugin-singlefile` output).
mod client;
mod routine_schema;

/// Run all build-time code generation steps for `manifest_dir`.
pub fn run(manifest_dir: &str) {
    routine_schema::generate(manifest_dir);
    client::build(manifest_dir);
}