walrus-daemon 0.0.10

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

pub mod config;
pub mod daemon;
pub mod ext;
pub mod hook;
pub mod service;

pub use config::DaemonConfig;
pub use daemon::event::{DaemonEvent, DaemonEventSender};
pub use daemon::{Daemon, DaemonHandle, bridge_shutdown, setup_socket, setup_tcp};
pub use hook::DaemonHook;