echo_agent 0.2.0

Production-grade AI Agent framework for Rust — ReAct engine, multi-agent, memory, streaming, MCP, IM channels, workflows
Documentation
//! Built-in framework-level tools
//!
//! These are core to the agent execution loop. Domain-specific tools
//! (git, browser, data, media, etc.) live in the `echo_tools` crate.

#[cfg(feature = "subagent")]
pub(crate) mod agent_dispatch;
pub(crate) mod answer;
#[cfg(feature = "human-loop")]
pub(crate) mod human_in_loop;
pub(crate) mod memory;
pub(crate) mod memory_write;
#[cfg(feature = "tasks")]
pub(crate) mod plan;
#[cfg(feature = "tasks")]
pub(crate) mod task;
/// Think tool for reasoning and reflection.
pub mod think;
pub(crate) mod todo;