theway-daemon 0.1.15

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
//! 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 gated behind the `local`
//! feature: a `sandbox`-only build must not pull the OS-touching environment.

#[cfg(feature = "local")]
pub mod native;