zagens-cli 0.8.3

Zagens headless CLI + HTTP/SSE runtime sidecar (`zagens`, `zagens-runtime` binaries)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Low-level tool execution helpers for the engine turn loop (R-003 A4.6).
//!
//! MCP dispatch, execution locking, and parallel fanout stay in tui L2;
//! see `zagens-core::engine::turn_loop::tool_exec` for the core port trait.

mod exec;
mod mcp;
mod parallel;
mod port;
mod progress;
mod terminal_guard;

pub use port::{apply_tool_spillover_audit, detached_execute_with_lock, execute_plan_on_engine};

#[cfg(test)]
pub(crate) use port::McpPoolHandle;