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
//! Thin entry point for the dynamic trigger e2e suite; the body lives in
//! `dynamic_trigger_e2e/`, split by test domain.

#[path = "dynamic_trigger_e2e/mod.rs"]
mod dynamic_trigger_e2e;

// The `#[path]`-included src modules reference `crate::auth`, `crate::config`, etc.;
// re-export them at the test crate root so those absolute paths resolve.
pub use dynamic_trigger_e2e::{auth, bug_report, config, export, trigger_engine, triggers};
pub use theway_transport::inbox;