moadim 0.12.0

Moadim.io MCP/REST server for managing cron jobs
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 exec` headless with the composed prompt file passed as an argument
/// (`{prompt_file}`), mirroring the Codex default. 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 = ["exec", "{prompt_file}"]
"#;