theway-daemon 0.1.21

theway daemon — the single agent-runtime kernel (bin `thewayd`): harness assembly, local/sandbox tool policy, triggers/cron/session/DAG runtime, skills, MCP/LSP wiring, serving the gRPC/HTTP/MCP transports from theway-transport. Terminal UI lives in the theway-tui crate.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Application orchestration for daemon process and session-scoped runtimes.
//!
//! This layer owns construction order and service lifetimes. Reusable runtime policy
//! remains in `theway-core`; host effects remain in daemon adapters.

mod services;
pub mod session;
mod startup;

pub use services::DaemonServices;
pub use session::{
    SessionExecutionContext, SessionHookResources, SessionMcpResources, SessionRuntime,
    SessionRuntimeBuilder,
};
pub use startup::{DaemonOptions, DaemonTransport, SessionSelection, run};