aidaemon 0.11.9

A personal AI agent that runs as a background daemon, accessible via Telegram, Slack, or Discord, with tool use, MCP integration, and persistent memory
Documentation
1
2
3
4
5
6
7
8
9
10
11
mod common;

#[test]
fn help_flag_exits_successfully() {
    common::aidaemon_bin().arg("--help").assert().success();
}

#[test]
fn version_flag_exits_successfully() {
    common::aidaemon_bin().arg("--version").assert().success();
}