aidaemon 0.11.12

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
use assert_cmd::Command;

pub fn aidaemon_bin() -> Command {
    #[allow(deprecated)]
    {
        Command::cargo_bin("aidaemon").expect("aidaemon test binary should build")
    }
}