crabtalk-daemon 0.0.19

Crabtalk agent runtime with memory, tools, and local inference
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Crabtalk daemon — message central composing runtime, channels, and cron
//! scheduling. Personal agent, local-first.

pub mod config;
pub mod cron;
pub mod daemon;
pub mod event_bus;
pub mod hook;

pub use config::DaemonConfig;
#[cfg(unix)]
pub use daemon::setup_socket;
pub use daemon::{
    Daemon, DaemonHandle, bridge_shutdown,
    event::{DaemonEvent, DaemonEventSender},
    setup_tcp,
};
pub use hook::DaemonEnv;