moadim 3.2.3

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
//! 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}`). 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"]
"#;