aidaemon 0.11.5

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
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
//! Session-scoped browser tab state.
//!
//! Before this module, every browser action grabbed the FIRST page in the
//! shared `Browser` (`pages().into_iter().next()`), so all sessions (different
//! users/chats) implicitly shared one tab — session A's navigation moved the
//! page out from under session B's next action.
//!
//! [`BrowserSessionRegistry`] gives each trusted internal `_session_id` its own
//! set of [`PageHandle`]s (tabs) plus a per-session action lock. The action lock
//! serializes a single session's own actions (so its calls don't race each
//! other) while letting DIFFERENT sessions run concurrently — the registry never
//! holds the global `Mutex<Option<Browser>>` for the duration of an action.
//!
//! ## Tab model
//!
//! A session owns one or more [`TabEntry`] tabs and tracks one ACTIVE tab. The
//! session's "current page" — the page existing single-tab actions operate on —
//! is always the active tab's page. `tab_id` is the chromiumoxide target-id
//! string, used as an OPAQUE, stable identifier: callers never see or rely on
//! positional ordering, only on this id. (Choosing the target id as the public
//! id keeps a single source of truth — it is already unique and stable for the
//! tab's lifetime — and lets the backend resolve it directly without a
//! translation table.)

use std::collections::HashMap;
use std::sync::Arc;
use std::time::Duration;

use tokio::sync::Mutex;
use tokio::time::Instant;

use super::backend::{BrowserBackend, PageHandle};

/// One tab owned by a session.
///
/// `tab_id` and `target_id` are the same chromiumoxide target-id string today
/// (the opaque public id IS the target id), kept as separate fields so the
/// public/opaque identity and the backend-facing identity can diverge later
/// without touching call sites. `last_url` caches the URL last observed for the
/// tab (used to render a redacted origin in `list_tabs` without a round-trip).
#[derive(Clone)]
pub struct TabEntry {
    pub tab_id: String,
    pub target_id: String,
    pub page: Arc<dyn PageHandle>,
    pub last_url: Option<String>,
    pub title: Option<String>,
    /// The CDP browser-context id this tab's page was created in, when the
    /// backend is in `browser_context` isolation mode; `None` in `page` mode (the
    /// shared default context, which is never disposed). Stored so eviction/close
    /// can dispose the per-session context via the backend.
    pub context_id: Option<String>,
}

/// Per-session browser state: the tabs the session owns, which one is active,
/// plus the lock that serializes that session's own actions.
pub struct BrowserSessionState {
    pub tabs: Vec<TabEntry>,
    /// The `target_id` of the active tab. Always references one of `tabs` while
    /// the session has at least one tab.
    pub active_target_id: String,
    pub last_used_at: Instant,
    pub action_lock: Arc<Mutex<()>>,
}

impl BrowserSessionState {
    /// The active tab, if any. A session always has at least one tab while it
    /// exists, but `close_tab` on the last tab can leave it empty.
    fn active_tab(&self) -> Option<&TabEntry> {
        self.tabs
            .iter()
            .find(|t| t.target_id == self.active_target_id)
    }
}

/// A registry of per-session browser tabs, keyed by the trusted internal
/// `_session_id`. The map is guarded by a `tokio::sync::Mutex` that is held only
/// briefly to read or insert a session entry — never across the running action.
#[derive(Default)]
pub struct BrowserSessionRegistry {
    sessions: Mutex<HashMap<String, BrowserSessionState>>,
    /// Per-session approval flag. `true` once the user granted session-level
    /// approval (AllowSession/AllowAlways) for ordinary navigation/mutation, so
    /// later ordinary actions in that session skip the prompt. Point-of-action
    /// approvals (execute_js, consequential click/fill) NEVER set this — they
    /// are re-prompted every call. Kept in its own map so it survives even when a
    /// session's last tab is closed.
    approvals: Mutex<HashMap<String, bool>>,
}

/// A tab as surfaced to the tool/LLM: opaque id, title, raw URL (the tool
/// redacts the URL to an origin before display), and whether it is active.
#[derive(Debug, Clone)]
pub struct TabView {
    pub tab_id: String,
    pub title: Option<String>,
    pub url: Option<String>,
    pub active: bool,
}

/// The browser-side resources of a session that idle-eviction removed, returned
/// so the caller can dispose them via the backend (close the tab targets, then
/// dispose the per-session browser context(s)). Deduplicated: each context id
/// appears once even if the session had several tabs sharing it.
#[derive(Debug, Clone, Default, PartialEq, Eq)]
pub struct EvictedSession {
    /// The internal `_session_id` that was evicted (for logging).
    pub session_id: String,
    /// Backend target ids of every tab the session held — to `close_target`.
    pub tab_target_ids: Vec<String>,
    /// Distinct CDP browser-context ids the session held — to dispose.
    pub context_ids: Vec<String>,
}

/// Default idle threshold after which a session's tabs + browser context are
/// evicted. Used for opportunistic eviction (and any future periodic task). 30
/// minutes balances reclaiming resources on a quiet 24/7 daemon against not
/// tearing a session down mid-workflow.
pub const DEFAULT_SESSION_IDLE_TIMEOUT: Duration = Duration::from_secs(30 * 60);

impl BrowserSessionRegistry {
    pub fn new() -> Self {
        Self {
            sessions: Mutex::new(HashMap::new()),
            approvals: Mutex::new(HashMap::new()),
        }
    }

    /// Whether this session has been granted session-level approval for ordinary
    /// navigation/mutation. Point-of-action actions ignore this and always
    /// prompt.
    pub async fn is_session_approved(&self, session_id: &str) -> bool {
        *self
            .approvals
            .lock()
            .await
            .get(session_id)
            .unwrap_or(&false)
    }

    /// Mark this session approved for ordinary navigation/mutation, so later
    /// ordinary actions in this session don't re-prompt.
    pub async fn mark_session_approved(&self, session_id: &str) {
        self.approvals
            .lock()
            .await
            .insert(session_id.to_string(), true);
    }

    /// Resolve the ACTIVE tab's page + the session action lock, creating a fresh
    /// first tab on the backend the first time a session is seen.
    ///
    /// Rejects an empty `session_id` BEFORE touching the backend, so a missing
    /// session id never launches a browser. Returns owned `Arc`s so the caller
    /// runs the action without holding the registry lock (or any global browser
    /// lock) for the action's duration.
    pub async fn get_or_create_page(
        &self,
        session_id: &str,
        backend: &dyn BrowserBackend,
    ) -> Result<(Arc<dyn PageHandle>, Arc<Mutex<()>>), String> {
        if session_id.is_empty() {
            return Err("browser actions require a session id".to_string());
        }

        // Fast path: existing session — refresh recency and hand back its active
        // tab's page.
        {
            let mut sessions = self.sessions.lock().await;
            if let Some(state) = sessions.get_mut(session_id) {
                state.last_used_at = Instant::now();
                if let Some(tab) = state.active_tab() {
                    return Ok((Arc::clone(&tab.page), Arc::clone(&state.action_lock)));
                }
                // Session exists but has no tabs (last tab was closed). Fall
                // through to create a fresh one below.
            }
        }

        // Opportunistic idle eviction: before minting a brand-new session, sweep
        // idle siblings so a daemon with session churn can't grow the registry
        // (and leak CDP browser contexts) without bound. `Instant::now()` is
        // captured HERE and passed into the deterministic `evict_idle`, so the
        // sweep itself stays clock-injectable for tests. Disposal of the evicted
        // resources runs WITHOUT holding the registry lock.
        let evicted = self
            .evict_idle(Instant::now(), DEFAULT_SESSION_IDLE_TIMEOUT)
            .await;
        for ev in &evicted {
            backend
                .dispose_session(&ev.tab_target_ids, &ev.context_ids)
                .await;
        }

        // Slow path: create a new page on the backend WITHOUT holding the
        // registry lock (page creation may launch/await the browser).
        let (page_id, context_id, page) = backend.create_page().await?;

        // Re-lock to insert. A concurrent caller for the same session could have
        // raced us; if so, prefer the already-stored active tab and drop ours.
        let mut sessions = self.sessions.lock().await;
        if let Some(state) = sessions.get_mut(session_id) {
            state.last_used_at = Instant::now();
            if let Some(tab) = state.active_tab() {
                return Ok((Arc::clone(&tab.page), Arc::clone(&state.action_lock)));
            }
            // Session existed but had no active tab: adopt the one we just made.
            let tab = TabEntry {
                tab_id: page_id.clone(),
                target_id: page_id.clone(),
                page: Arc::clone(&page),
                last_url: None,
                title: None,
                context_id,
            };
            state.active_target_id = page_id;
            state.tabs.push(tab);
            return Ok((page, Arc::clone(&state.action_lock)));
        }

        let action_lock = Arc::new(Mutex::new(()));
        let tab = TabEntry {
            tab_id: page_id.clone(),
            target_id: page_id.clone(),
            page: Arc::clone(&page),
            last_url: None,
            title: None,
            context_id,
        };
        let state = BrowserSessionState {
            tabs: vec![tab],
            active_target_id: page_id,
            last_used_at: Instant::now(),
            action_lock: Arc::clone(&action_lock),
        };
        sessions.insert(session_id.to_string(), state);

        Ok((page, action_lock))
    }

    /// Add a tab to a session (e.g. a popup discovered after a click, or an
    /// explicit `new_tab`). When `make_active` is true the new tab becomes the
    /// session's active tab. Returns the opaque `tab_id`.
    ///
    /// If the session is unknown, this is a no-op returning `None` — callers
    /// only register tabs for sessions that already exist (a page must have been
    /// created for the click/new_tab to run).
    #[allow(clippy::too_many_arguments)]
    pub async fn add_tab(
        &self,
        session_id: &str,
        target_id: &str,
        page: Arc<dyn PageHandle>,
        url: Option<String>,
        title: Option<String>,
        context_id: Option<String>,
        make_active: bool,
    ) -> Option<String> {
        let mut sessions = self.sessions.lock().await;
        let state = sessions.get_mut(session_id)?;
        // Idempotent: don't double-register a target.
        if let Some(existing) = state.tabs.iter().find(|t| t.target_id == target_id) {
            let id = existing.tab_id.clone();
            if make_active {
                state.active_target_id = target_id.to_string();
            }
            return Some(id);
        }
        let tab = TabEntry {
            tab_id: target_id.to_string(),
            target_id: target_id.to_string(),
            page,
            last_url: url,
            title,
            context_id,
        };
        let id = tab.tab_id.clone();
        state.tabs.push(tab);
        if make_active {
            state.active_target_id = target_id.to_string();
        }
        Some(id)
    }

    /// Switch the session's active tab to `tab_id`. Validates that the tab
    /// belongs to THIS session (cross-session safety): a `tab_id` minted for a
    /// different session is rejected, never silently honored. Returns the new
    /// active tab as a [`TabView`].
    pub async fn switch_tab(&self, session_id: &str, tab_id: &str) -> Result<TabView, String> {
        let mut sessions = self.sessions.lock().await;
        let state = sessions
            .get_mut(session_id)
            .ok_or_else(|| "no browser tabs for this session".to_string())?;
        let owned = state.tabs.iter().any(|t| t.tab_id == tab_id);
        if !owned {
            return Err(format!(
                "Unknown tab '{}'. It does not belong to this session. Use list_tabs to see open tabs.",
                tab_id
            ));
        }
        state.active_target_id = tab_id.to_string();
        let tab = state
            .tabs
            .iter()
            .find(|t| t.tab_id == tab_id)
            .expect("ownership just validated");
        Ok(TabView {
            tab_id: tab.tab_id.clone(),
            title: tab.title.clone(),
            url: tab.last_url.clone(),
            active: true,
        })
    }

    /// Close `tab_id` for `session_id`. Validates session ownership first
    /// (cross-session safety). Returns the `target_id` to close at the backend
    /// plus the new active `tab_id` (if any remains). If the closed tab was
    /// active, the most-recently-added remaining tab becomes active.
    pub async fn close_tab(
        &self,
        session_id: &str,
        tab_id: &str,
    ) -> Result<(String, Option<String>), String> {
        let mut sessions = self.sessions.lock().await;
        let state = sessions
            .get_mut(session_id)
            .ok_or_else(|| "no browser tabs for this session".to_string())?;
        let pos = state.tabs.iter().position(|t| t.tab_id == tab_id);
        let Some(pos) = pos else {
            return Err(format!(
                "Unknown tab '{}'. It does not belong to this session. Use list_tabs to see open tabs.",
                tab_id
            ));
        };
        let removed = state.tabs.remove(pos);
        let was_active = state.active_target_id == removed.target_id;
        let new_active = if was_active {
            // Pick the last remaining tab as the new active one.
            if let Some(last) = state.tabs.last() {
                state.active_target_id = last.target_id.clone();
                Some(last.tab_id.clone())
            } else {
                state.active_target_id.clear();
                None
            }
        } else {
            state
                .tabs
                .iter()
                .find(|t| t.target_id == state.active_target_id)
                .map(|t| t.tab_id.clone())
        };
        Ok((removed.target_id, new_active))
    }

    /// The `target_id` of this session's ACTIVE tab, if the session exists and
    /// currently has an active tab. Used by popup detection to attribute a
    /// net-new target only when its CDP `openerId` matches the clicking
    /// session's active page (cross-session safety).
    pub async fn active_target_id(&self, session_id: &str) -> Option<String> {
        let sessions = self.sessions.lock().await;
        let state = sessions.get(session_id)?;
        let active = &state.active_target_id;
        if active.is_empty() {
            return None;
        }
        // Only report it when it actually references one of the session's tabs.
        state
            .tabs
            .iter()
            .find(|t| &t.target_id == active)
            .map(|t| t.target_id.clone())
    }

    /// Drop ALL cached tabs for EVERY session. Called after a browser-level
    /// reconnect: a dead browser kills every session's pages at once (they are
    /// handles into a CDP connection that no longer exists), so per-session
    /// invalidation would be wrong — a sibling session reusing its stale handle
    /// would hit the dead connection. Clearing all sessions forces
    /// `get_or_create_page` to mint fresh pages against the new connection on the
    /// next action. Per-session approval flags are preserved (they are not tied
    /// to the connection), so a recovered session does not re-prompt.
    ///
    /// The session entries themselves are kept (so `last_used_at`/`action_lock`
    /// survive) but emptied of tabs; the next `get_or_create_page` adopts a fresh
    /// first tab into the existing entry.
    pub async fn invalidate_all_pages(&self) {
        let mut sessions = self.sessions.lock().await;
        for state in sessions.values_mut() {
            state.tabs.clear();
            state.active_target_id.clear();
        }
    }

    /// Remove every session whose `last_used_at` is older than `max_idle`
    /// relative to `now`, returning each removed session's backend resources so
    /// the caller can dispose them (close tab targets, then dispose the
    /// per-session browser context(s)).
    ///
    /// `now` is INJECTED (never read from the clock inside) so eviction is fully
    /// deterministic and testable with a synthetic clock.
    ///
    /// An evicted session's per-session APPROVAL flag is also dropped: an idle
    /// session that later returns is a fresh start and re-approves on its next
    /// consequential action — the safe default (we never silently carry a stale
    /// approval across a teardown the user never saw). The session entry itself
    /// is removed entirely (unlike `invalidate_all_pages`, which keeps the entry
    /// after a reconnect), since idle eviction reclaims the session wholesale.
    ///
    /// INVARIANT: a session with a HELD action lock is never evicted. A session
    /// whose action runs longer than `max_idle` (unreachable today — the 30-min
    /// threshold dwarfs any single action — but enforced structurally) is in
    /// active use: its page handle is live under that action, so disposing its
    /// tab targets / browser context would be a use-after-dispose. Before
    /// evicting an idle session we `try_lock()` its per-session `action_lock`; if
    /// that would block (lock held), the session is mid-action and we SKIP it,
    /// leaving it for the next sweep. The `try_lock` is non-blocking, so holding
    /// the registry `sessions` mutex across it cannot deadlock (we never `.await`
    /// on the per-session lock here); the temporary guard is dropped immediately.
    pub async fn evict_idle(&self, now: Instant, max_idle: Duration) -> Vec<EvictedSession> {
        let mut sessions = self.sessions.lock().await;
        let idle_ids: Vec<String> = sessions
            .iter()
            .filter(|(_, state)| now.duration_since(state.last_used_at) >= max_idle)
            // Skip any idle session whose action lock is currently held: it is
            // mid-action and must NOT be torn down under the running action.
            // `try_lock` is non-blocking (no `.await`), so this is safe to do
            // while holding the `sessions` mutex — no deadlock with the
            // per-session lock. The temporary guard drops at the end of the
            // closure.
            .filter(|(_, state)| state.action_lock.try_lock().is_ok())
            .map(|(id, _)| id.clone())
            .collect();

        let mut evicted = Vec::with_capacity(idle_ids.len());
        for id in idle_ids {
            let Some(state) = sessions.remove(&id) else {
                continue;
            };
            let tab_target_ids: Vec<String> =
                state.tabs.iter().map(|t| t.target_id.clone()).collect();
            // Distinct context ids (several tabs can share one context).
            let mut context_ids: Vec<String> = Vec::new();
            for ctx in state.tabs.iter().filter_map(|t| t.context_id.clone()) {
                if !context_ids.contains(&ctx) {
                    context_ids.push(ctx);
                }
            }
            evicted.push(EvictedSession {
                session_id: id,
                tab_target_ids,
                context_ids,
            });
        }
        drop(sessions);

        // Drop approval state for every evicted session (safe-default re-approve).
        if !evicted.is_empty() {
            let mut approvals = self.approvals.lock().await;
            for ev in &evicted {
                approvals.remove(&ev.session_id);
            }
        }

        evicted
    }

    /// Test-only: directly seed a session with a controlled `last_used_at` and a
    /// fixed set of `(target_id, context_id)` tabs (all sharing `page` as their
    /// handle), optionally pre-approved. Lets eviction tests drive a synthetic
    /// clock without touching the backend or `Instant::now()`.
    #[cfg(test)]
    pub async fn seed_session_for_test(
        &self,
        session_id: &str,
        last_used_at: Instant,
        tabs: Vec<(String, Option<String>)>,
        page: Arc<dyn PageHandle>,
        approved: bool,
    ) {
        let tab_entries: Vec<TabEntry> = tabs
            .into_iter()
            .map(|(target_id, context_id)| TabEntry {
                tab_id: target_id.clone(),
                target_id,
                page: Arc::clone(&page),
                last_url: None,
                title: None,
                context_id,
            })
            .collect();
        let active_target_id = tab_entries
            .first()
            .map(|t| t.target_id.clone())
            .unwrap_or_default();
        let state = BrowserSessionState {
            tabs: tab_entries,
            active_target_id,
            last_used_at,
            action_lock: Arc::new(Mutex::new(())),
        };
        self.sessions
            .lock()
            .await
            .insert(session_id.to_string(), state);
        if approved {
            self.approvals
                .lock()
                .await
                .insert(session_id.to_string(), true);
        }
    }

    /// Test-only: whether a session entry currently exists in the registry.
    #[cfg(test)]
    pub async fn has_session_for_test(&self, session_id: &str) -> bool {
        self.sessions.lock().await.contains_key(session_id)
    }

    /// Test-only: clone the per-session `action_lock` `Arc`, so a test can
    /// acquire an OWNED guard on it and model a session that is mid-action while
    /// `evict_idle` runs. Returns `None` if the session does not exist.
    #[cfg(test)]
    pub async fn action_lock_for_test(&self, session_id: &str) -> Option<Arc<Mutex<()>>> {
        self.sessions
            .lock()
            .await
            .get(session_id)
            .map(|state| Arc::clone(&state.action_lock))
    }

    /// Snapshot of this session's tabs for `list_tabs`. Empty if the session is
    /// unknown or has no tabs.
    pub async fn list_tabs(&self, session_id: &str) -> Vec<TabView> {
        let sessions = self.sessions.lock().await;
        let Some(state) = sessions.get(session_id) else {
            return Vec::new();
        };
        state
            .tabs
            .iter()
            .map(|t| TabView {
                tab_id: t.tab_id.clone(),
                title: t.title.clone(),
                url: t.last_url.clone(),
                active: t.target_id == state.active_target_id,
            })
            .collect()
    }
}