theway-daemon 0.1.25

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
//! Environment adapters — the `ExecutionEnv` implementations owned by the
//! daemon kernel (daemon-kernel-layers: the engine crate keeps the trait, the
//! kernel supplies the concrete implementations).
//!
//! [`native::NativeEnv`] (std::fs + tokio::process) is always compiled. The
//! execution environment is selected at runtime by `[executor] kind` in
//! config.toml (issue #123); sandbox mode gates registration of the
//! host-touching tool bodies instead of compiling the implementation out.

pub mod native;