moadim 3.2.5

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
13
14
15
//! Built-in default agent config for Hermes.

/// Registry key for this agent; also the config filename stem (`hermes.toml`).
pub const NAME: &str = "hermes";

/// Default `hermes.toml` contents, written on startup when the file is absent.
///
/// Runs Hermes headless in one-shot mode with the composed prompt passed as an argument
/// (`{prompt}`). Safe mode prevents interactive customizations and MCP startup from blocking an
/// unattended routine while leaving Hermes's configured model and provider unchanged. Users can
/// override the file under `~/.config/moadim/agents/hermes.toml` if their Hermes CLI expects a
/// different invocation.
pub const CONFIG: &str = r#"command = "hermes"
args = ["-z", "{prompt}", "--ignore-rules", "--safe-mode"]
"#;