aidaemon 0.11.13

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
12
13
14
//! Real-Chrome browser smoke tests live in `src/tools/browser/smoke.rs` (library
//! tests) because the browser tool is not part of the public crate API.
//!
//! Run:
//! ```bash
//! cargo test --features browser browser_smoke_real_chrome -- --ignored --nocapture
//! ```

#[test]
fn browser_smoke_entrypoint_documentation() {
    // Keeps this integration-test target present for CI discovery; the ignored
    // real-Chrome suite is `browser_smoke_real_chrome` in the library tests.
    assert!(true);
}