tail-fin-daemon 0.7.8

Long-running browser-session daemon for tail-fin (tfd binary). Keeps Chrome tabs warm across invocations via a Unix-socket protocol; registers Site implementations through a runtime Arc<dyn Site> registry.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! tail-fin-daemon — agent-friendly browser session pool daemon.
//!
//! See `docs/superpowers/specs/2026-04-17-tail-fin-daemon-design.md` for the full design.

pub mod cli;
pub mod dispatch;
pub mod driver;
pub mod handlers;
pub mod handshake;
pub mod pool;
pub mod server;
pub mod spawn;

pub use crate::driver::{register_sites, SiteEntry};